Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorFabio Papa <fabtheman@gmail.com>2019-06-16 21:07:17 +0300
committerFabio Papa <fabtheman@gmail.com>2019-07-19 23:14:21 +0300
commit5497b3ebefe5371678d81fcdab090b080515911a (patch)
tree01b2b7c32c293eedd1a6aeb3cac2a3e0d6cf4643 /spec
parent7b7c14940097612140c71164481a371688d961b2 (diff)
Add failing unit test specifying a maintainer creating a subgroup
Diffstat (limited to 'spec')
-rw-r--r--spec/services/groups/create_service_spec.rb9
-rw-r--r--spec/support/shared_contexts/policies/group_policy_shared_context.rb12
2 files changed, 19 insertions, 2 deletions
diff --git a/spec/services/groups/create_service_spec.rb b/spec/services/groups/create_service_spec.rb
index c5ff6cdbacd..b4e6ddddfac 100644
--- a/spec/services/groups/create_service_spec.rb
+++ b/spec/services/groups/create_service_spec.rb
@@ -1,3 +1,4 @@
+# coding: utf-8
# frozen_string_literal: true
require 'spec_helper'
@@ -87,6 +88,14 @@ describe Groups::CreateService, '#execute' do
it { is_expected.to be_persisted }
end
+
+ context 'as maintainer' do
+ before do
+ group.add_maintainer(user)
+ end
+
+ it { is_expected.to be_persisted }
+ end
end
end
diff --git a/spec/support/shared_contexts/policies/group_policy_shared_context.rb b/spec/support/shared_contexts/policies/group_policy_shared_context.rb
index 74389c4d82b..d596317462a 100644
--- a/spec/support/shared_contexts/policies/group_policy_shared_context.rb
+++ b/spec/support/shared_contexts/policies/group_policy_shared_context.rb
@@ -23,6 +23,15 @@ RSpec.shared_context 'GroupPolicy context' do
create_projects
read_cluster create_cluster update_cluster admin_cluster add_cluster
]
+ [
+ :create_projects,
+ :read_cluster,
+ :create_cluster,
+ :update_cluster,
+ :admin_cluster,
+ :add_cluster,
+ (Gitlab::Database.postgresql? ? :create_subgroup : nil)
+ ].compact
end
let(:owner_permissions) do
[
@@ -30,8 +39,7 @@ RSpec.shared_context 'GroupPolicy context' do
:admin_namespace,
:admin_group_member,
:change_visibility_level,
- :set_note_created_at,
- (Gitlab::Database.postgresql? ? :create_subgroup : nil)
+ :set_note_created_at
].compact
end