docbrown/spec/policies/organization_policy_spec.rb

55 lines
1.6 KiB
Ruby

require "rails_helper"
RSpec.describe OrganizationPolicy, type: :policy do
subject(:organization_policy) { described_class.new(user, organization) }
let(:organization) { build_stubbed(:organization) }
context "when user is not signed-in" do
let(:user) { nil }
it { within_block_is_expected.to raise_error(Pundit::NotAuthorizedError) }
end
context "when a non-org user" do
let(:user) { build_stubbed(:user) }
it { is_expected.to forbid_action(:update) }
it { is_expected.to permit_action(:create) }
end
context "when user is banned" do
let(:user) { build(:user, :banned) }
it { is_expected.to forbid_actions(%i[create update]) }
end
context "when user is an org admin of an org" do
subject(:organization_policy) { described_class.new(user, org) }
let(:user) { build_stubbed(:user) }
let(:org) { build_stubbed(:organization) }
before do
create(:organization_membership, user: user, organization: org, type_of_user: "admin")
end
it "allows the user to update their own org" do
expect(organization_policy).to permit_action(:update)
end
end
context "when user is an org admin of another org" do
subject(:organization_policy) { described_class.new(user, new_org) }
let(:user) { build_stubbed(:user) }
let(:org) { build_stubbed(:organization) }
let(:new_org) { build_stubbed(:organization) }
before { create(:organization_membership, user: user, organization: org, type_of_user: "admin") }
it "does not allow the user to update another org" do
expect(organization_policy).to forbid_action(:update)
end
end
end