We were checking that we still were on the same page, which was true even before finishing the request to restore the content.
82 lines
2.7 KiB
Ruby
82 lines
2.7 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Admin hidden debates", :admin do
|
|
scenario "Restore" do
|
|
debate = create(:debate, :hidden)
|
|
visit admin_hidden_debates_path
|
|
|
|
accept_confirm("Are you sure? Restore") { click_button "Restore" }
|
|
|
|
expect(page).not_to have_content(debate.title)
|
|
|
|
visit debate_path(debate)
|
|
|
|
expect(page).to have_content debate.title
|
|
end
|
|
|
|
scenario "Confirm hide" do
|
|
debate = create(:debate, :hidden)
|
|
visit admin_hidden_debates_path
|
|
|
|
click_button "Confirm moderation"
|
|
|
|
expect(page).not_to have_content(debate.title)
|
|
click_link("Confirmed")
|
|
expect(page).to have_content(debate.title)
|
|
end
|
|
|
|
scenario "Current filter is properly highlighted" do
|
|
visit admin_hidden_debates_path
|
|
expect(page).not_to have_link("Pending")
|
|
expect(page).to have_link("All")
|
|
expect(page).to have_link("Confirmed")
|
|
|
|
visit admin_hidden_debates_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_debates_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_debates_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 debates" do
|
|
create(:debate, :hidden, title: "Unconfirmed debate")
|
|
create(:debate, :hidden, :with_confirmed_hide, title: "Confirmed debate")
|
|
|
|
visit admin_hidden_debates_path(filter: "pending")
|
|
expect(page).to have_content("Unconfirmed debate")
|
|
expect(page).not_to have_content("Confirmed debate")
|
|
|
|
visit admin_hidden_debates_path(filter: "all")
|
|
expect(page).to have_content("Unconfirmed debate")
|
|
expect(page).to have_content("Confirmed debate")
|
|
|
|
visit admin_hidden_debates_path(filter: "with_confirmed_hide")
|
|
expect(page).not_to have_content("Unconfirmed debate")
|
|
expect(page).to have_content("Confirmed debate")
|
|
end
|
|
|
|
scenario "Action links remember the pagination setting and the filter" do
|
|
allow(Debate).to receive(:default_per_page).and_return(2)
|
|
4.times { create(:debate, :hidden, :with_confirmed_hide) }
|
|
|
|
visit admin_hidden_debates_path(filter: "with_confirmed_hide", page: 2)
|
|
|
|
expect(page).to have_css "tbody tr", count: 2
|
|
|
|
accept_confirm("Are you sure? Restore") { click_button "Restore", match: :first, exact: true }
|
|
|
|
expect(page).to have_css "tbody tr", count: 1
|
|
expect(page).to have_current_path(/filter=with_confirmed_hide/)
|
|
expect(page).to have_current_path(/page=2/)
|
|
end
|
|
end
|