Sha256: c82578d2980d485356f61de63294ed4ee13fbfcd61357263dd4fa6f254c6ee4d

Contents?: true

Size: 1.35 KB

Versions: 8

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true
require 'spec_helper'

describe Geoblacklight::Relation::Descendants do
  let(:repository) { Blacklight::Solr::Repository.new(CatalogController.blacklight_config) }
  let(:descendants) { described_class.new('nyu_2451_34636', Settings.FIELDS.SOURCE, repository) }
  let(:empty_descendants) { described_class.new('harvard-g7064-s2-1834-k3', Settings.FIELDS.SOURCE, repository) }

  describe '#create_search_params' do
    it 'assembles the correct search params for finding descendant documents' do
      expect(descendants.create_search_params).to eq(fq: "#{Settings.FIELDS.SOURCE}:nyu_2451_34636", fl: [Settings.FIELDS.TITLE.to_s, Settings.FIELDS.ID, Settings.FIELDS.RESOURCE_TYPE])
    end
  end

  describe '#execute_query' do
    it 'executes the query for finding descendants, return response' do
      expect(descendants.execute_query).to include('responseHeader')
    end
  end

  describe '#results' do
    it 'produces a hash of results from the query' do
      expect(descendants.results).to include('numFound')
      expect(descendants.results).to include('docs')
    end
    it 'has non-zero numfound for a document with descendants' do
      expect(descendants.results['numFound']).to be > 0
    end
    it 'has zero numfound for a document without descendants' do
      expect(empty_descendants.results['numFound']).to eq(0)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
geoblacklight-4.0.0 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.rc3 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.rc2 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.rc1 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.alpha.3 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.alpha.2 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.alpha.1 spec/lib/geoblacklight/relation/descendants_spec.rb
geoblacklight-4.0.0.pre.alpha spec/lib/geoblacklight/relation/descendants_spec.rb