AyuntamientoMadrid/participacion

View on GitHub
spec/components/sdg/targets/tag_list_component_spec.rb

Summary

Maintainability
A
45 mins
Test Coverage
require "rails_helper"

describe SDG::Targets::TagListComponent do
  let(:debate) do
    create(:debate,
           sdg_targets: [SDG::Target[1.1], SDG::Target[3.2], create(:sdg_local_target, code: "3.2.1")])
  end
  let(:component) { SDG::Targets::TagListComponent.new(debate) }

  before do
    Setting["feature.sdg"] = true
    Setting["sdg.process.debates"] = true
  end

  it "does not render when the feature is disabled" do
    Setting["feature.sdg"] = false

    render_inline component

    expect(page).not_to be_rendered
  end

  it "does not render when the SDG process feature is disabled" do
    Setting["sdg.process.debates"] = false

    render_inline component

    expect(page).not_to be_rendered
  end

  it "renders a list of targets" do
    render_inline component

    expect(page).to have_css "li", count: 3
  end

  it "renders links for each target" do
    render_inline component

    expect(page).to have_css "li", count: 3
    expect(page).to have_link "target 1.1",
                              title: "See all Debates related to target 1.1",
                              href: "/debates?advanced_search#{CGI.escape("[target]")}=1.1"
    expect(page).to have_link "target 3.2",
                              title: "See all Debates related to target 3.2",
                              href: "/debates?advanced_search#{CGI.escape("[target]")}=3.2"
    expect(page).to have_link "target 3.2.1",
                              title: "See all Debates related to target 3.2.1",
                              href: "/debates?advanced_search#{CGI.escape("[target]")}=3.2.1"
  end

  it "orders targets by code" do
    render_inline component

    expect(page.first("a")[:title]).to end_with "target 1.1"
  end

  it "renders a link for more targets when out of limit" do
    component = SDG::Targets::TagListComponent.new(debate, limit: 1)

    render_inline component

    expect(page).to have_css "a", count: 2
    expect(page).to have_link "target 1.1"
    expect(page).to have_link "2+",
                              title: "2 more targets",
                              href: "/debates/#{debate.to_param}"
  end
end