summaryrefslogtreecommitdiff
path: root/spec/features/groups/share_lock_spec.rb
blob: 8842d1391aa68586fe22815cc0f6b2ea98ea9fc2 (plain)
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
require 'spec_helper'

feature 'Group share with group 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', :nested_groups do
    given!(:subgroup) { create(:group, parent: root_group) }

    context 'when enabling the parent group share with group lock' do
      scenario 'the subgroup share with group 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 with group 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 with group lock is enabled' do
        scenario 'the subgroup share with group 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 with group 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 with group 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