2016-03-16 18:44:33 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2016-12-26 04:56:19 -05:00
|
|
|
describe Groups::CreateService, '#execute', services: true do
|
|
|
|
let!(:user) { create(:user) }
|
2016-03-18 08:28:16 -04:00
|
|
|
let!(:group_params) { { path: "group_path", visibility_level: Gitlab::VisibilityLevel::PUBLIC } }
|
2016-03-16 18:44:33 -04:00
|
|
|
|
2016-12-26 04:56:19 -05:00
|
|
|
describe 'visibility level restrictions' do
|
|
|
|
let!(:service) { described_class.new(user, group_params) }
|
|
|
|
|
2016-03-16 18:44:33 -04:00
|
|
|
subject { service.execute }
|
|
|
|
|
|
|
|
context "create groups without restricted visibility level" do
|
2016-03-17 18:42:46 -04:00
|
|
|
it { is_expected.to be_persisted }
|
2016-03-16 18:44:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "cannot create group with restricted visibility level" do
|
2016-05-27 22:05:52 -04:00
|
|
|
before { allow_any_instance_of(ApplicationSetting).to receive(:restricted_visibility_levels).and_return([Gitlab::VisibilityLevel::PUBLIC]) }
|
2016-12-26 04:56:19 -05:00
|
|
|
|
2016-05-23 19:37:59 -04:00
|
|
|
it { is_expected.not_to be_persisted }
|
2016-03-16 18:44:33 -04:00
|
|
|
end
|
|
|
|
end
|
2016-12-26 04:56:19 -05:00
|
|
|
|
|
|
|
describe 'creating subgroup' do
|
|
|
|
let!(:group) { create(:group) }
|
|
|
|
let!(:service) { described_class.new(user, group_params.merge(parent_id: group.id)) }
|
|
|
|
|
|
|
|
subject { service.execute }
|
|
|
|
|
|
|
|
context 'as group owner' do
|
|
|
|
before { group.add_owner(user) }
|
|
|
|
|
|
|
|
it { is_expected.to be_persisted }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'as guest' do
|
|
|
|
it 'does not save group and returns an error' do
|
|
|
|
is_expected.not_to be_persisted
|
|
|
|
expect(subject.errors[:parent_id].first).to eq('manage access required to create subgroup')
|
|
|
|
expect(subject.parent_id).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-03-16 18:44:33 -04:00
|
|
|
end
|