Files
grecia/spec/system/moderation_spec.rb
Javi Martín 92ddcb7aef Use JavaScript in system tests by default
JavaScript is used by about 98% of web users, so by testing without it
enabled, we're only testing that the application works for a very
reduced number of users.

We proceeded this way in the past because CONSUL started using Rails 4.2
and truncating the database between JavaScript tests with database
cleaner, which made these tests terribly slow.

When we upgraded to Rails 5.1 and introduced system tests, we started
using database transactions in JavaScript tests, making these tests much
faster. So now we can use JavaScript tests everywhere without critically
slowing down our test suite.
2021-04-07 14:41:06 +02:00

142 lines
3.7 KiB
Ruby

require "rails_helper"
describe "Moderation" do
let(:user) { create(:user) }
scenario "Access as regular user is not authorized" do
login_as(user)
visit root_path
expect(page).not_to have_link("Menu")
expect(page).not_to have_link("Moderation")
visit moderation_root_path
expect(page).not_to have_current_path(moderation_root_path)
expect(page).to have_current_path(root_path)
expect(page).to have_content "You do not have permission to access this page"
end
scenario "Access as valuator is not authorized" do
create(:valuator, user: user)
login_as(user)
visit root_path
click_link "Menu"
expect(page).not_to have_link("Moderation")
visit moderation_root_path
expect(page).not_to have_current_path(moderation_root_path)
expect(page).to have_current_path(root_path)
expect(page).to have_content "You do not have permission to access this page"
end
scenario "Access as manager is not authorized" do
create(:manager, user: user)
login_as(user)
visit root_path
click_link "Menu"
expect(page).not_to have_link("Moderation")
visit moderation_root_path
expect(page).not_to have_current_path(moderation_root_path)
expect(page).to have_current_path(root_path)
expect(page).to have_content "You do not have permission to access this page"
end
scenario "Access as SDG manager is not authorized" do
create(:sdg_manager, user: user)
login_as(user)
visit root_path
click_link "Menu"
expect(page).not_to have_link("Moderation")
visit moderation_root_path
expect(page).not_to have_current_path(moderation_root_path)
expect(page).to have_current_path(root_path)
expect(page).to have_content "You do not have permission to access this page"
end
scenario "Access as poll officer is not authorized" do
create(:poll_officer, user: user)
login_as(user)
visit root_path
click_link "Menu"
expect(page).not_to have_link("Moderation")
visit moderation_root_path
expect(page).not_to have_current_path(moderation_root_path)
expect(page).to have_current_path(root_path)
expect(page).to have_content "You do not have permission to access this page"
end
scenario "Access as a moderator is authorized" do
create(:moderator, user: user)
login_as(user)
visit root_path
click_link "Menu"
click_link "Moderation"
expect(page).to have_current_path(moderation_root_path)
expect(page).not_to have_content "You do not have permission to access this page"
end
scenario "Access as an administrator is authorized" do
create(:administrator, user: user)
login_as(user)
visit root_path
click_link "Menu"
click_link "Moderation"
expect(page).to have_current_path(moderation_root_path)
expect(page).not_to have_content "You do not have permission to access this page"
end
scenario "Moderation access links" do
create(:moderator, user: user)
login_as(user)
visit root_path
click_link "Menu"
expect(page).to have_link("Moderation")
expect(page).not_to have_link("Administration")
expect(page).not_to have_link("Valuation")
end
context "Moderation dashboard" do
before do
Setting["org_name"] = "OrgName"
end
scenario "Contains correct elements" do
create(:moderator, user: user)
login_as(user)
visit root_path
click_link "Menu"
click_link "Moderation"
expect(page).to have_link("Go back to OrgName")
expect(page).to have_current_path(moderation_root_path)
expect(page).to have_css("#moderation_menu")
expect(page).not_to have_css("#admin_menu")
expect(page).not_to have_css("#valuation_menu")
end
end
end