1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
# frozen_string_literal: true
require 'spec_helper'
# Main user namespace functionality it still in `Namespace`, so most
# of the specs are in `namespace_spec.rb`.
# UserNamespace specific specs will end up being migrated here.
RSpec.describe Namespaces::UserNamespace, type: :model do
describe 'validations' do
it { is_expected.to validate_presence_of(:owner) }
end
describe '#owners' do
let(:owner) { build(:user) }
let(:namespace) { build(:namespace, owner: owner) }
specify do
expect(namespace.owners).to match_array([owner])
end
end
describe '#member?' do
let_it_be(:namespace) { create(:user_namespace) }
let_it_be(:other_user) { create(:user) }
it 'returns true for owner' do
expect(namespace.member?(namespace.owner)).to be_truthy
end
it 'returns true for admin' do
allow(other_user).to receive(:can_admin_all_resources?).and_return(true)
expect(namespace.member?(other_user)).to be_truthy
end
it 'returns false for other users' do
expect(namespace.member?(other_user)).to be_falsey
end
end
describe '#max_member_access_for_user' do
let_it_be(:namespace) { create(:user_namespace) }
context 'with user in the namespace' do
it 'returns correct access level' do
expect(namespace.max_member_access_for_user(namespace.owner)).to eq(Gitlab::Access::OWNER)
end
end
context 'when user is nil' do
it 'returns NO_ACCESS' do
expect(namespace.max_member_access_for_user(nil)).to eq(Gitlab::Access::NO_ACCESS)
end
end
context 'when evaluating admin access level' do
let_it_be(:admin) { create(:admin) }
context 'when admin mode is enabled', :enable_admin_mode do
it 'returns OWNER by default' do
expect(namespace.max_member_access_for_user(admin)).to eq(Gitlab::Access::OWNER)
end
end
context 'when admin mode is disabled' do
it 'returns NO_ACCESS' do
expect(namespace.max_member_access_for_user(admin)).to eq(Gitlab::Access::NO_ACCESS)
end
end
it 'returns NO_ACCESS when only concrete membership should be considered' do
expect(namespace.max_member_access_for_user(admin, only_concrete_membership: true))
.to eq(Gitlab::Access::NO_ACCESS)
end
end
context 'when organization owner' do
let_it_be(:organization) { create(:organization) }
let_it_be(:group) { create(:group, organization: organization) }
let_it_be(:org_owner) do
create(:organization_owner, organization: organization).user
end
it 'returns OWNER by default' do
expect(group.max_member_access_for_user(org_owner)).to eq(Gitlab::Access::OWNER)
end
context 'when organization owner is also an admin' do
before do
org_owner.update!(admin: true)
end
context 'when admin mode is enabled', :enable_admin_mode do
it 'returns OWNER by default' do
expect(group.max_member_access_for_user(org_owner)).to eq(Gitlab::Access::OWNER)
end
end
context 'when admin mode is disabled' do
it 'returns NO_ACCESS by default' do
expect(group.max_member_access_for_user(org_owner)).to eq(Gitlab::Access::NO_ACCESS)
end
end
end
context 'when only concrete members' do
it 'returns NO_ACCESS' do
expect(group.max_member_access_for_user(org_owner, only_concrete_membership: true))
.to eq(Gitlab::Access::NO_ACCESS)
end
end
end
end
end
|