Files
grecia/spec/system/moderation/debates_spec.rb
Javi Martín b7e9d1118e Add ARIA labels to moderation checkboxes
This way it'll be easier for people using screen readers to know which
element the checkbox is related to.

Note that we're using the `aria-label` attribute because it makes
testing with Capybara easier than using the `aria-labelledby` attribute.
The only exception are the comments, since comments don't have a title
and there isn't a proper label for them. In this case, we're using the
title of the associated commentable as the label; we might change it in
the future since there might be many comments for the same commentable.
2024-11-08 15:03:55 +01:00

204 lines
6.6 KiB
Ruby

require "rails_helper"
describe "Moderate debates" do
scenario "Hide" do
citizen = create(:user)
moderator = create(:moderator)
debate = create(:debate)
login_as(moderator.user)
visit debate_path(debate)
within("#debate_#{debate.id}") do
accept_confirm("Are you sure? Hide") { click_button "Hide" }
end
expect(find("div#debate_#{debate.id}.faded")).to have_text debate.title
login_as(citizen)
visit debates_path
expect(page).to have_css(".debate", count: 0)
end
scenario "Can not hide own debate" do
moderator = create(:moderator)
debate = create(:debate, author: moderator.user)
login_as(moderator.user)
visit debate_path(debate)
within("#debate_#{debate.id}") do
expect(page).not_to have_button "Hide"
expect(page).not_to have_button "Block author"
end
end
describe "/moderation/ screen" do
before do
moderator = create(:moderator)
login_as(moderator.user)
end
describe "moderate in bulk" do
describe "When a debate has been selected for moderation" do
let!(:debate) { create(:debate) }
before do
visit moderation_debates_path
click_link "All"
check debate.title
end
scenario "Hide the debate" do
accept_confirm("Are you sure? Hide debates") { click_button "Hide debates" }
expect(page).not_to have_css("#debate_#{debate.id}")
click_link "Block users"
fill_in "email or name of user", with: debate.author.email
click_button "Search"
within "tr", text: debate.author.name do
expect(page).to have_button "Block"
end
end
scenario "Block the author" do
accept_confirm("Are you sure? Block authors") { click_button "Block authors" }
expect(page).not_to have_css("#debate_#{debate.id}")
click_link "Block users"
fill_in "email or name of user", with: debate.author.email
click_button "Search"
within "tr", text: debate.author.name do
expect(page).to have_content "Blocked"
end
end
scenario "Ignore the debate", :no_js do
click_button "Mark as viewed"
expect(debate.reload).to be_ignored_flag
expect(debate.reload).not_to be_hidden
expect(debate.author).not_to be_hidden
end
end
scenario "select all/none" do
create_list(:debate, 2)
visit moderation_debates_path
click_link "All"
expect(page).to have_field type: :checkbox, count: 2
within(".check-all-none") { click_button "Select all" }
expect(all(:checkbox)).to all(be_checked)
within(".check-all-none") { click_button "Select none" }
all(:checkbox).each { |checkbox| expect(checkbox).not_to be_checked }
end
scenario "remembering page, filter and order" do
stub_const("#{ModerateActions}::PER_PAGE", 2)
create_list(:debate, 4)
visit moderation_debates_path(filter: "all", page: "2", order: "created_at")
accept_confirm("Are you sure? Mark as viewed") { click_button "Mark as viewed" }
expect(page).to have_link "Newest", class: "is-active"
expect(page).to have_link "Most flagged"
expect(page).to have_current_path(/filter=all/)
expect(page).to have_current_path(/page=2/)
expect(page).to have_current_path(/order=created_at/)
end
end
scenario "Current filter is properly highlighted" do
visit moderation_debates_path
expect(page).not_to have_link("Pending")
expect(page).to have_link("All")
expect(page).to have_link("Marked as viewed")
visit moderation_debates_path(filter: "all")
expect(page).not_to have_link("All")
expect(page).to have_link("Pending")
expect(page).to have_link("Marked as viewed")
visit moderation_debates_path(filter: "pending_flag_review")
expect(page).to have_link("All")
expect(page).not_to have_link("Pending")
expect(page).to have_link("Marked as viewed")
visit moderation_debates_path(filter: "with_ignored_flag")
expect(page).to have_link("All")
expect(page).to have_link("Pending")
expect(page).not_to have_link("Marked as viewed")
end
scenario "Filtering debates" do
create(:debate, title: "Regular debate")
create(:debate, :flagged, title: "Pending debate")
create(:debate, :hidden, title: "Hidden debate")
create(:debate, :flagged, :with_ignored_flag, title: "Ignored debate")
visit moderation_debates_path(filter: "all")
expect(page).to have_content("Regular debate")
expect(page).to have_content("Pending debate")
expect(page).not_to have_content("Hidden debate")
expect(page).to have_content("Ignored debate")
visit moderation_debates_path(filter: "pending_flag_review")
expect(page).not_to have_content("Regular debate")
expect(page).to have_content("Pending debate")
expect(page).not_to have_content("Hidden debate")
expect(page).not_to have_content("Ignored debate")
visit moderation_debates_path(filter: "with_ignored_flag")
expect(page).not_to have_content("Regular debate")
expect(page).not_to have_content("Pending debate")
expect(page).not_to have_content("Hidden debate")
expect(page).to have_content("Ignored debate")
end
scenario "sorting debates" do
flagged_debate = create(:debate,
title: "Flagged debate",
created_at: 1.day.ago,
flags_count: 5)
flagged_new_debate = create(:debate,
title: "Flagged new debate",
created_at: 12.hours.ago,
flags_count: 3)
newer_debate = create(:debate, title: "Newer debate", created_at: Time.current)
visit moderation_debates_path(order: "created_at")
expect(flagged_new_debate.title).to appear_before(flagged_debate.title)
visit moderation_debates_path(order: "flags")
expect(flagged_debate.title).to appear_before(flagged_new_debate.title)
visit moderation_debates_path(filter: "all", order: "created_at")
expect(newer_debate.title).to appear_before(flagged_new_debate.title)
expect(flagged_new_debate.title).to appear_before(flagged_debate.title)
visit moderation_debates_path(filter: "all", order: "flags")
expect(flagged_debate.title).to appear_before(flagged_new_debate.title)
expect(flagged_new_debate.title).to appear_before(newer_debate.title)
end
end
end