2017-07-03 01:14:00 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe GlobalPolicy do
|
2018-04-27 10:50:33 -04:00
|
|
|
include TermsHelper
|
|
|
|
|
2017-07-03 01:14:00 -04:00
|
|
|
let(:current_user) { create(:user) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
2017-07-25 13:09:00 -04:00
|
|
|
subject { described_class.new(current_user, [user]) }
|
2017-07-03 01:14:00 -04:00
|
|
|
|
|
|
|
describe "reading the list of users" do
|
|
|
|
context "for a logged in user" do
|
|
|
|
it { is_expected.to be_allowed(:read_users_list) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "for an anonymous user" do
|
|
|
|
let(:current_user) { nil }
|
|
|
|
|
|
|
|
context "when the public level is restricted" do
|
|
|
|
before do
|
|
|
|
stub_application_setting(restricted_visibility_levels: [Gitlab::VisibilityLevel::PUBLIC])
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.not_to be_allowed(:read_users_list) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when the public level is not restricted" do
|
|
|
|
before do
|
|
|
|
stub_application_setting(restricted_visibility_levels: [])
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:read_users_list) }
|
|
|
|
end
|
|
|
|
end
|
2017-07-25 04:44:02 -04:00
|
|
|
|
|
|
|
context "for an admin" do
|
|
|
|
let(:current_user) { create(:admin) }
|
|
|
|
|
|
|
|
context "when the public level is restricted" do
|
|
|
|
before do
|
|
|
|
stub_application_setting(restricted_visibility_levels: [Gitlab::VisibilityLevel::PUBLIC])
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:read_users_list) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when the public level is not restricted" do
|
|
|
|
before do
|
|
|
|
stub_application_setting(restricted_visibility_levels: [])
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:read_users_list) }
|
|
|
|
end
|
|
|
|
end
|
2017-07-03 01:14:00 -04:00
|
|
|
end
|
2017-09-28 12:49:42 -04:00
|
|
|
|
2017-09-29 07:14:39 -04:00
|
|
|
describe "create fork" do
|
|
|
|
context "when user has not exceeded project limit" do
|
|
|
|
it { is_expected.to be_allowed(:create_fork) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user has exceeded project limit" do
|
|
|
|
let(:current_user) { create(:user, projects_limit: 0) }
|
|
|
|
|
|
|
|
it { is_expected.not_to be_allowed(:create_fork) }
|
|
|
|
end
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
context "when user is a maintainer in a group" do
|
2017-09-29 07:14:39 -04:00
|
|
|
let(:group) { create(:group) }
|
|
|
|
let(:current_user) { create(:user, projects_limit: 0) }
|
|
|
|
|
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
group.add_maintainer(current_user)
|
2017-09-29 07:14:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:create_fork) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-28 12:49:42 -04:00
|
|
|
describe 'custom attributes' do
|
|
|
|
context 'regular user' do
|
|
|
|
it { is_expected.not_to be_allowed(:read_custom_attribute) }
|
|
|
|
it { is_expected.not_to be_allowed(:update_custom_attribute) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'admin' do
|
|
|
|
let(:current_user) { create(:user, :admin) }
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:read_custom_attribute) }
|
|
|
|
it { is_expected.to be_allowed(:update_custom_attribute) }
|
|
|
|
end
|
|
|
|
end
|
2018-05-08 09:07:55 -04:00
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
shared_examples 'access allowed when terms accepted' do |ability|
|
|
|
|
it { is_expected.not_to be_allowed(ability) }
|
|
|
|
|
|
|
|
it "allows #{ability} when the user accepted the terms" do
|
|
|
|
accept_terms(current_user)
|
|
|
|
|
|
|
|
is_expected.to be_allowed(ability)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-08 09:07:55 -04:00
|
|
|
describe 'API access' do
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'regular user' do
|
2018-05-08 09:07:55 -04:00
|
|
|
it { is_expected.to be_allowed(:access_api) }
|
|
|
|
end
|
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'admin' do
|
2018-05-08 09:07:55 -04:00
|
|
|
let(:current_user) { create(:admin) }
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:access_api) }
|
|
|
|
end
|
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'anonymous' do
|
2018-05-08 09:07:55 -04:00
|
|
|
let(:current_user) { nil }
|
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
it { is_expected.to be_allowed(:access_api) }
|
2018-05-08 09:07:55 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when terms are enforced' do
|
|
|
|
before do
|
|
|
|
enforce_terms
|
|
|
|
end
|
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'regular user' do
|
|
|
|
it_behaves_like 'access allowed when terms accepted', :access_api
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'admin' do
|
|
|
|
let(:current_user) { create(:admin) }
|
|
|
|
|
|
|
|
it_behaves_like 'access allowed when terms accepted', :access_api
|
|
|
|
end
|
2018-05-08 09:07:55 -04:00
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'anonymous' do
|
|
|
|
let(:current_user) { nil }
|
2018-05-08 09:07:55 -04:00
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
it { is_expected.to be_allowed(:access_api) }
|
2018-05-08 09:07:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'git access' do
|
|
|
|
describe 'regular user' do
|
|
|
|
it { is_expected.to be_allowed(:access_git) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'admin' do
|
|
|
|
let(:current_user) { create(:admin) }
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:access_git) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'anonymous' do
|
|
|
|
let(:current_user) { nil }
|
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
it { is_expected.to be_allowed(:access_git) }
|
2018-05-08 09:07:55 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when terms are enforced' do
|
|
|
|
before do
|
|
|
|
enforce_terms
|
|
|
|
end
|
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'regular user' do
|
|
|
|
it_behaves_like 'access allowed when terms accepted', :access_git
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'admin' do
|
|
|
|
let(:current_user) { create(:admin) }
|
|
|
|
|
|
|
|
it_behaves_like 'access allowed when terms accepted', :access_git
|
|
|
|
end
|
2018-05-08 09:07:55 -04:00
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
context 'anonymous' do
|
|
|
|
let(:current_user) { nil }
|
2018-05-08 09:07:55 -04:00
|
|
|
|
2018-05-09 06:55:31 -04:00
|
|
|
it { is_expected.to be_allowed(:access_git) }
|
2018-05-08 09:07:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-07-25 11:36:08 -04:00
|
|
|
|
|
|
|
describe 'read instance statistics' do
|
|
|
|
context 'regular user' do
|
2018-08-06 11:44:23 -04:00
|
|
|
it { is_expected.to be_allowed(:read_instance_statistics) }
|
2018-07-25 11:36:08 -04:00
|
|
|
|
|
|
|
context 'when instance statistics are set to private' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(instance_statistics_visibility_private: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.not_to be_allowed(:read_instance_statistics) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'admin' do
|
|
|
|
let(:current_user) { create(:admin) }
|
|
|
|
|
2018-08-06 11:44:23 -04:00
|
|
|
it { is_expected.to be_allowed(:read_instance_statistics) }
|
2018-07-25 11:36:08 -04:00
|
|
|
|
|
|
|
context 'when instance statistics are set to private' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(instance_statistics_visibility_private: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_allowed(:read_instance_statistics) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'anonymous' do
|
|
|
|
let(:current_user) { nil }
|
|
|
|
|
|
|
|
it { is_expected.not_to be_allowed(:read_instance_statistics) }
|
|
|
|
end
|
|
|
|
end
|
2017-07-03 01:14:00 -04:00
|
|
|
end
|