Sha256: 6f4737ec9caeb289636b705d7e8a3f6a0faa374be2537b03de030c025c2f688d

Contents?: true

Size: 1.52 KB

Versions: 52

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

RSpec.describe "catalog/facet_layout" do
  let :blacklight_config do
    Blacklight::Configuration.new do |config|
      config.facet_fields[facet_field.field] = facet_field
    end
  end

  let :facet_field do
    Blacklight::Configuration::FacetField.new(field: 'some_field').normalize!
  end

  before do
    allow(view).to receive_messages(blacklight_config: blacklight_config)
  end

  it "has a facet-specific class" do
    render partial: 'catalog/facet_layout', locals: { facet_field: facet_field }
    expect(rendered).to have_selector '.blacklight-some_field'
  end

  it "has a title with a link for a11y" do
    render partial: 'catalog/facet_layout', locals: { facet_field: facet_field }
    expect(rendered).to have_selector 'h3', text: 'Some Field'
  end

  it "is collapsable" do
    render partial: 'catalog/facet_layout', locals: { facet_field: facet_field }
    expect(rendered).to have_selector 'button.collapsed[data-toggle="collapse"][data-bs-toggle="collapse"][aria-expanded="false"]'
    expect(rendered).to have_selector '.collapse .card-body'
  end

  it "is configured to be open by default" do
    allow(facet_field).to receive_messages(collapse: false)
    render partial: 'catalog/facet_layout', locals: { facet_field: facet_field }
    expect(rendered).to have_selector 'button[data-toggle="collapse"][data-bs-toggle="collapse"][aria-expanded="true"]'
    expect(rendered).not_to have_selector '.card-header.collapsed'
    expect(rendered).to have_selector '.collapse.show .card-body'
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

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