Sha256: be6f46ff6e7f643888ce646d8cf789aa4f7d49cd6a8f3aada0028669d93a3b85

Contents?: true

Size: 1.4 KB

Versions: 50

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Blacklight::FacetItemComponent, type: :component do
  subject(:rendered) do
    render_inline_to_capybara_node(described_class.new(facet_item: facet_item))
  end

  let(:facet_item) do
    instance_double(
      Blacklight::FacetItemPresenter,
      facet_config: Blacklight::Configuration::FacetField.new,
      label: 'x',
      hits: 10,
      href: '/catalog?f=x',
      selected?: false
    )
  end

  it 'links to the facet and shows the number of hits' do
    expect(rendered).to have_selector 'li'
    expect(rendered).to have_link 'x', href: '/catalog?f=x' do |link|
      link['rel'] == 'nofollow'
    end
    expect(rendered).to have_selector '.facet-count', text: '10'
  end

  context 'with a selected facet' do
    let(:facet_item) do
      instance_double(
        Blacklight::FacetItemPresenter,
        facet_config: Blacklight::Configuration::FacetField.new,
        label: 'x',
        hits: 10,
        href: '/catalog',
        selected?: true
      )
    end

    it 'links to the facet and shows the number of hits' do
      expect(rendered).to have_selector 'li'
      expect(rendered).to have_selector '.selected', text: 'x'
      expect(rendered).to have_link '[remove]', href: '/catalog' do |link|
        link['rel'] == 'nofollow'
      end
      expect(rendered).to have_selector '.selected.facet-count', text: '10'
    end
  end
end

Version data entries

50 entries across 50 versions & 2 rubygems

Version Path
blacklight-7.33.1 spec/components/blacklight/facet_item_component_spec.rb
blacklight-8.0.0.beta4 spec/components/blacklight/facet_item_component_spec.rb
blacklight-8.0.0.beta3 spec/components/blacklight/facet_item_component_spec.rb
blacklight-8.0.0.beta2 spec/components/blacklight/facet_item_component_spec.rb
blacklight-8.0.0.beta1 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.33.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.32.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.31.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.30.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.29.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.28.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.27.1 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.27.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.26.1 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.26.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.25.3 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.25.2 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.25.1 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.25.0 spec/components/blacklight/facet_item_component_spec.rb
blacklight-7.24.0 spec/components/blacklight/facet_item_component_spec.rb