Sha256: 444944222335ecd6449e0fc2b1dea681cf0b7f85705e3ddfbb77535b40400366
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
require 'spec_helper' module Hydra::Derivatives describe ExtractMetadata do let(:class_with_metadata_extraction) { Class.new do attr_reader :content, :mimeType, :pid, :dsVersionID def initialize(options = {}) @content = options.fetch(:content, '') @mimeType = options.fetch(:mime_type, nil) @pid = options.fetch(:pid, 'pid-123') @dsVersionID = options.fetch(:dsVersionID, 'version-id-1') end include Hydra::Derivatives::ExtractMetadata def has_content?; content.present?; end end } let(:initialization_options) { {content: 'abc', mime_type: 'text/plain'} } subject { class_with_metadata_extraction.new(initialization_options) } context '#extract_metadata' do context 'without content' do let(:initialization_options) { {content: '', mime_type: 'text/plain'} } it 'should be nil' do expect(subject.extract_metadata).to be_nil end end context 'with content', unless: ENV['TRAVIS'] == 'true' do let(:mime_type) { 'image/jpeg' } it 'should get some XML' do expect(subject.extract_metadata).to match "<identity format=\"Plain text\" mimetype=\"text/plain\"" end end end context '#to_tempfile' do it 'has a method called to_tempfile' do expect { |b| subject.to_tempfile(&b) }.to yield_with_args(Tempfile) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hydra-derivatives-0.1.1 | spec/lib/hydra/derivatives/extract_metadata_spec.rb |