* Try renaming moderator -> super_moderator * Still finding 'moderator' words * Fixes for failing specs * Update test with new role name * Update app/services/moderator/manage_activity_and_roles.rb Co-authored-by: Suzanne Aitchison <suzanne@forem.com> Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
59 lines
1.5 KiB
Ruby
59 lines
1.5 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe UserPolicy, type: :policy do
|
|
subject { described_class.new(user, other_user) }
|
|
|
|
let(:other_user) { create(:user) }
|
|
|
|
context "when user is not signed-in" do
|
|
let(:user) { nil }
|
|
|
|
it { within_block_is_expected.to raise_error(Pundit::NotAuthorizedError) }
|
|
end
|
|
|
|
context "when user is signed-in" do
|
|
let(:user) { other_user }
|
|
|
|
permitted_actions = %i[
|
|
edit analytics update onboarding_update join_org dashboard_show remove_identity destroy
|
|
]
|
|
|
|
it { is_expected.to permit_actions(permitted_actions) }
|
|
|
|
context "with suspended status" do
|
|
before { user.add_role(:suspended) }
|
|
|
|
it { is_expected.to forbid_actions(%i[join_org moderation_routes update]) }
|
|
end
|
|
end
|
|
|
|
context "when user is trusted" do
|
|
let(:user) { build(:user, :trusted) }
|
|
|
|
it { is_expected.to permit_actions(%i[moderation_routes]) }
|
|
end
|
|
|
|
context "when user is not trusted" do
|
|
let(:user) { build_stubbed(:user) }
|
|
|
|
it { is_expected.to forbid_actions(%i[moderation_routes]) }
|
|
end
|
|
|
|
context "when the user is an admin" do
|
|
let(:user) { build(:user, :admin) }
|
|
|
|
it { is_expected.to permit_actions(%i[moderation_routes]) }
|
|
end
|
|
|
|
context "when the user is a super admin" do
|
|
let(:user) { build(:user, :super_admin) }
|
|
|
|
it { is_expected.to permit_actions(%i[moderation_routes]) }
|
|
end
|
|
|
|
context "when the user is a moderator" do
|
|
let(:user) { build(:user, :super_moderator) }
|
|
|
|
it { is_expected.to permit_actions(%i[moderation_routes]) }
|
|
end
|
|
end
|