Sha256: c941e8fe7edb035265d8003844777f40221b32387f088004fae54dcbf8baf3f2

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

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', repository) }
  let(:empty_descendants) { described_class.new('harvard-g7064-s2-1834-k3', 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, 'layer_slug_s', 'layer_geom_type_s'])
    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

1 entries across 1 versions & 1 rubygems

Version Path
geoblacklight-2.4.0 spec/lib/geoblacklight/relation/descendants_spec.rb