In most sections, we had two specs testing what happens after accessing one of the privileged areas. We're grouping the expectations and so we've only got one test per area, making these tests faster.
89 lines
2.6 KiB
Ruby
89 lines
2.6 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 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 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 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 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 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
|
|
Setting["org_name"] = "OrgName"
|
|
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).to have_link "Go back to OrgName"
|
|
expect(page).to have_css "#moderation_menu"
|
|
expect(page).not_to have_css "#admin_menu"
|
|
expect(page).not_to have_css "#valuation_menu"
|
|
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
|
|
end
|