Sha256: c77797ed80fc24b40fc53206715f7ae76a58eaeed42bdc52c4208f780643f331

Contents?: true

Size: 1.57 KB

Versions: 9

Compression:

Stored size: 1.57 KB

Contents

require 'spec_helper'

describe Spotlight::Resources::IiifHarvester do
  let(:exhibit) { FactoryBot.create(:exhibit) }
  let(:harvester) { described_class.create(exhibit_id: exhibit.id, url: url) }

  describe 'Validation' do
    subject { harvester }
    context 'when given an invalid URL' do
      before do
        stub_request(:head, 'http://example.com').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
      end

      let(:url) { 'http://example.com' }

      it 'errors when the URL is not a IIIF URL' do
        expect(subject).to_not be_valid
        expect(subject.errors).to be_present
        expect(subject.errors[:url]).to eq ['Invalid IIIF URL']
      end
    end

    context 'when not responding to a HEAD request' do
      before do
        stub_request(:head, 'http://example.com').to_return(status: 405, headers: { 'Content-Type' => 'text/html' })
        stub_request(:get, 'http://example.com').to_return(status: 200, headers: { 'Content-Type' => ' application/ld+json' })
      end

      let(:url) { 'http://example.com' }

      it 'no errors when the URL responds to the GET request' do
        expect(subject).to be_valid
        expect(subject.errors).not_to be_present
      end
    end
  end

  describe '#documents_to_index' do
    let(:url) { 'uri://for-top-level-collection' }
    before { stub_default_collection }

    subject { harvester.document_builder }

    it 'returns an Enumerator of all the solr documents' do
      expect(subject.documents_to_index).to be_a(Enumerator)
      expect(subject.documents_to_index.count).to eq 8
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
blacklight-spotlight-2.4.1 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.4.0 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.3.3 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.3.2 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.3.1 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.3.0 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.2.1 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.2.0 spec/models/spotlight/resources/iiif_harvester_spec.rb
blacklight-spotlight-2.1.0 spec/models/spotlight/resources/iiif_harvester_spec.rb