Files
nairobi/spec/system/admin/hidden_proposals_spec.rb
Javi Martín 02981324ab Move exception tests to controller specs
System tests are used to test the application from the user's point of
view. To test for specific exceptions, particularly regarding
authorization permissions, controller tests fit better.

Another option would be to test the page displayed shows a certain text,
like "Internal server error". I'm choosing controller tests because
they're faster and we're basically testing the same scenario many times
and we've already got a test checking what happens when users access a
page raising an exception.
2021-03-31 14:42:20 +02:00

90 lines
2.9 KiB
Ruby

require "rails_helper"
describe "Admin hidden proposals", :admin do
scenario "List shows all relevant info" do
proposal = create(:proposal, :hidden)
visit admin_hidden_proposals_path
expect(page).to have_content(proposal.title)
expect(page).to have_content(proposal.summary)
expect(page).to have_content(proposal.description)
expect(page).to have_content(proposal.video_url)
end
scenario "Restore" do
proposal = create(:proposal, :hidden)
visit admin_hidden_proposals_path
click_link "Restore"
expect(page).not_to have_content(proposal.title)
expect(proposal.reload).not_to be_hidden
expect(proposal).to be_ignored_flag
end
scenario "Confirm hide" do
proposal = create(:proposal, :hidden)
visit admin_hidden_proposals_path
click_link "Confirm moderation"
expect(page).not_to have_content(proposal.title)
click_link("Confirmed")
expect(page).to have_content(proposal.title)
expect(proposal.reload).to be_confirmed_hide
end
scenario "Current filter is properly highlighted" do
visit admin_hidden_proposals_path
expect(page).not_to have_link("Pending")
expect(page).to have_link("All")
expect(page).to have_link("Confirmed")
visit admin_hidden_proposals_path(filter: "Pending")
expect(page).not_to have_link("Pending")
expect(page).to have_link("All")
expect(page).to have_link("Confirmed")
visit admin_hidden_proposals_path(filter: "all")
expect(page).to have_link("Pending")
expect(page).not_to have_link("All")
expect(page).to have_link("Confirmed")
visit admin_hidden_proposals_path(filter: "with_confirmed_hide")
expect(page).to have_link("All")
expect(page).to have_link("Pending")
expect(page).not_to have_link("Confirmed")
end
scenario "Filtering proposals" do
create(:proposal, :hidden, title: "Unconfirmed proposal")
create(:proposal, :hidden, :with_confirmed_hide, title: "Confirmed proposal")
visit admin_hidden_proposals_path(filter: "pending")
expect(page).to have_content("Unconfirmed proposal")
expect(page).not_to have_content("Confirmed proposal")
visit admin_hidden_proposals_path(filter: "all")
expect(page).to have_content("Unconfirmed proposal")
expect(page).to have_content("Confirmed proposal")
visit admin_hidden_proposals_path(filter: "with_confirmed_hide")
expect(page).not_to have_content("Unconfirmed proposal")
expect(page).to have_content("Confirmed proposal")
end
scenario "Action links remember the pagination setting and the filter" do
allow(Proposal).to receive(:default_per_page).and_return(2)
4.times { create(:proposal, :hidden, :with_confirmed_hide) }
visit admin_hidden_proposals_path(filter: "with_confirmed_hide", page: 2)
click_on("Restore", match: :first, exact: true)
expect(current_url).to include("filter=with_confirmed_hide")
expect(current_url).to include("page=2")
end
end