Sha256: c6e0ae1f4ead9e98c4598e49a5a10d3b05022f67a0f755c677a77ddc9007b32b

Contents?: true

Size: 1.48 KB

Versions: 14

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

RSpec.describe 'catalog/_facet_index_navigation.html.erb', type: :view do
  let(:pagination) { Blacklight::Solr::FacetPaginator.new([]) }
  let(:facet) { Blacklight::Configuration::FacetField.new(index_range: '0'..'9', presenter: Blacklight::FacetFieldPresenter) }
  let(:display_facet) { double(items: [], offset: 0, prefix: '', sort: 'index') }
  let(:blacklight_config) { Blacklight::Configuration.new }

  before do
    assign(:display_facet, display_facet)
    assign(:facet, facet)
    allow(view).to receive(:blacklight_config).and_return(blacklight_config)
    allow(view).to receive(:facet_limit_for).and_return(10)
    controller.request.path_parameters[:action] = 'index'
  end

  it 'renders the facet index navigation range' do
    render
    expect(rendered).to have_selector '.pagination'
    expect(rendered).to have_link '0', href: '/?facet.prefix=0&facet.sort=index'
    expect(rendered).to have_link '1'
    expect(rendered).to have_link '8'
    expect(rendered).to have_link '9'
  end

  it 'renders an "all" button' do
    render
    expect(rendered).to have_selector '.page-link', text: 'All'
  end

  context 'with a selected index' do
    let(:display_facet) { double(items: [], offset: 0, prefix: '5', sort: 'index') }

    it 'highlights the selected index' do
      render
      expect(rendered).to have_selector '.active', text: '5'
    end

    it 'enables the clear facets button' do
      render
      expect(rendered).to have_link 'All'
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
blacklight-8.2.2 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.2.1 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.2.0 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.1.0 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.1 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta8 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta7 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta6 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta5 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta4 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta3 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta2 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb
blacklight-8.0.0.beta1 spec/views/catalog/_facet_index_navigation.html.erb_spec.rb