summaryrefslogtreecommitdiff
path: root/spec/features/groups/share_lock_spec.rb
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2017-09-01 16:49:09 -0700
committerMichael Kozono <mkozono@gmail.com>2017-09-06 12:07:20 -0700
commit1cc7f4a45d9e9fdf1943eb92d3cd2071ba497337 (patch)
treecdaebcf4f86d442a00a45d7a6bab4584a7b48dbd /spec/features/groups/share_lock_spec.rb
parent8437a24ff46220e2813ce3d82a52062dd259276b (diff)
downloadgitlab-ce-1cc7f4a45d9e9fdf1943eb92d3cd2071ba497337.tar.gz
Enable share_with_group_lock on subgroup
…when needed
Diffstat (limited to 'spec/features/groups/share_lock_spec.rb')
-rw-r--r--spec/features/groups/share_lock_spec.rb62
1 files changed, 62 insertions, 0 deletions
diff --git a/spec/features/groups/share_lock_spec.rb b/spec/features/groups/share_lock_spec.rb
new file mode 100644
index 00000000000..2e2da6b862c
--- /dev/null
+++ b/spec/features/groups/share_lock_spec.rb
@@ -0,0 +1,62 @@
+require 'spec_helper'
+
+feature 'Group share lock' do
+ given(:root_owner) { create(:user) }
+ given(:root_group) { create(:group) }
+
+ background do
+ root_group.add_owner(root_owner)
+ sign_in(root_owner)
+ end
+
+ context 'with a subgroup' do
+ given!(:subgroup) { create(:group, parent: root_group) }
+
+ context 'when enabling the parent group share lock' do
+ scenario 'the subgroup share lock becomes enabled' do
+ visit edit_group_path(root_group)
+ check 'group_share_with_group_lock'
+
+ click_on 'Save group'
+
+ expect(subgroup.reload.share_with_group_lock?).to be_truthy
+ end
+ end
+
+ context 'when disabling the parent group share lock (which was already enabled)' do
+ background do
+ visit edit_group_path(root_group)
+ check 'group_share_with_group_lock'
+ click_on 'Save group'
+ end
+
+ context 'and the subgroup share lock is enabled' do
+ scenario 'the subgroup share lock does not change' do
+ visit edit_group_path(root_group)
+ uncheck 'group_share_with_group_lock'
+
+ click_on 'Save group'
+
+ expect(subgroup.reload.share_with_group_lock?).to be_truthy
+ end
+ end
+
+ context 'but the subgroup share lock is disabled' do
+ background do
+ visit edit_group_path(subgroup)
+ uncheck 'group_share_with_group_lock'
+ click_on 'Save group'
+ end
+
+ scenario 'the subgroup share lock does not change' do
+ visit edit_group_path(root_group)
+ uncheck 'group_share_with_group_lock'
+
+ click_on 'Save group'
+
+ expect(subgroup.reload.share_with_group_lock?).to be_falsey
+ end
+ end
+ end
+ end
+end