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

user_group_notification_settings_finder_spec.rb « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea44688bc8de9b46b4adb60054ffd9a41365a12c (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe UserGroupNotificationSettingsFinder do
  let_it_be(:user) { create(:user) }

  subject { described_class.new(user, Group.where(id: groups.map(&:id))).execute }

  def attributes(&proc)
    subject.map(&proc).uniq
  end

  shared_examples 'user group notifications settings tests' do
    context 'when the groups have no existing notification settings' do
      context 'when the groups have no ancestors' do
        let_it_be(:groups) { create_list(:group, 3) }

        it 'will be a default Global notification setting', :aggregate_failures do
          expect(subject.count).to eq(3)
          expect(attributes(&:notification_email)).to match_array([nil])
          expect(attributes(&:level)).to match_array(['global'])
        end
      end

      context 'when the groups have ancestors' do
        context 'when an ancestor has a level other than Global' do
          let_it_be(:ancestor_a) { create(:group) }
          let_it_be(:group_a) { create(:group, parent: ancestor_a) }
          let_it_be(:ancestor_b) { create(:group) }
          let_it_be(:group_b) { create(:group, parent: ancestor_b) }
          let_it_be(:email) { create(:email, :confirmed, email: 'ancestor@example.com', user: user) }

          let_it_be(:groups) { [group_a, group_b] }

          before do
            create(:notification_setting, user: user, source: ancestor_a, level: 'participating', notification_email: email.email)
            create(:notification_setting, user: user, source: ancestor_b, level: 'participating', notification_email: email.email)
          end

          it 'has the same level set' do
            expect(attributes(&:level)).to match_array(['participating'])
          end

          it 'has the same email set' do
            expect(attributes(&:notification_email)).to match_array(['ancestor@example.com'])
          end

          it 'only returns the two queried groups' do
            expect(subject.count).to eq(2)
          end
        end

        context 'when an ancestor has a Global level but has an email set' do
          let_it_be(:grand_ancestor) { create(:group) }
          let_it_be(:ancestor) { create(:group, parent: grand_ancestor) }
          let_it_be(:group) { create(:group, parent: ancestor) }
          let_it_be(:ancestor_email) { create(:email, :confirmed, email: 'ancestor@example.com', user: user) }
          let_it_be(:grand_email) { create(:email, :confirmed, email: 'grand@example.com', user: user) }

          let_it_be(:groups) { [group] }

          before do
            create(:notification_setting, user: user, source: grand_ancestor, level: 'participating', notification_email: grand_email.email)
            create(:notification_setting, user: user, source: ancestor, level: 'global', notification_email: ancestor_email.email)
          end

          it 'has the same email and level set', :aggregate_failures do
            expect(subject.count).to eq(1)
            expect(attributes(&:level)).to match_array(['global'])
            expect(attributes(&:notification_email)).to match_array(['ancestor@example.com'])
          end
        end

        context 'when the group has parent_id set but that does not belong to any group' do
          let_it_be(:group) { create(:group) }
          let_it_be(:groups) { [group] }

          before do
            # Let's set a parent_id for a group that definitely doesn't exist
            group.update_columns(parent_id: 19283746)
          end

          it 'returns a default Global notification setting' do
            expect(subject.count).to eq(1)
            expect(attributes(&:level)).to match_array(['global'])
            expect(attributes(&:notification_email)).to match_array([nil])
          end
        end

        context 'when the group has a private parent' do
          let_it_be(:ancestor) { create(:group, :private) }
          let_it_be(:group) { create(:group, :private, parent: ancestor) }
          let_it_be(:ancestor_email) { create(:email, :confirmed, email: 'ancestor@example.com', user: user) }
          let_it_be(:groups) { [group] }

          before do
            group.add_reporter(user)
            # Adding the user creates a NotificationSetting, so we remove it here
            user.notification_settings.where(source: group).delete_all

            create(:notification_setting, user: user, source: ancestor, level: 'participating', notification_email: ancestor_email.email)
          end

          it 'still inherits the notification settings' do
            expect(subject.count).to eq(1)
            expect(attributes(&:level)).to match_array(['participating'])
            expect(attributes(&:notification_email)).to match_array([ancestor_email.email])
          end
        end

        it 'does not cause an N+1', :aggregate_failures do
          parent = create(:group)
          child = create(:group, parent: parent)

          control = ActiveRecord::QueryRecorder.new do
            described_class.new(user, Group.where(id: child.id)).execute
          end

          other_parent = create(:group)
          other_children = create_list(:group, 2, parent: other_parent)

          result = nil

          expect do
            result = described_class.new(user, Group.where(id: other_children.append(child).map(&:id))).execute
          end.not_to exceed_query_limit(control)

          expect(result.count).to eq(3)
        end
      end
    end

    context 'preloading `emails_disabled`' do
      let_it_be(:root_group) { create(:group) }
      let_it_be(:sub_group) { create(:group, parent: root_group) }
      let_it_be(:sub_sub_group) { create(:group, parent: sub_group) }

      let_it_be(:another_root_group) { create(:group) }
      let_it_be(:sub_group_with_emails_disabled) { create(:group, emails_disabled: true, parent: another_root_group) }
      let_it_be(:another_sub_sub_group) { create(:group, parent: sub_group_with_emails_disabled) }

      let_it_be(:root_group_with_emails_disabled) { create(:group, emails_disabled: true) }
      let_it_be(:group) { create(:group, parent: root_group_with_emails_disabled) }

      let(:groups) { Group.where(id: [sub_sub_group, another_sub_sub_group, group]) }

      before do
        described_class.new(user, groups).execute
      end

      it 'preloads the `group.emails_disabled` method' do
        recorder = ActiveRecord::QueryRecorder.new do
          groups.each(&:emails_disabled?)
        end

        expect(recorder.count).to eq(0)
      end

      it 'preloads the `group.emails_disabled` method correctly' do
        groups.each do |group|
          expect(group.emails_disabled?).to eq(Group.find(group.id).emails_disabled?) # compare the memoized and the freshly loaded value
        end
      end
    end
  end

  it_behaves_like 'user group notifications settings tests'

  context 'when feature flag :linear_user_group_notification_settings_finder_ancestors_scopes is disabled' do
    before do
      stub_feature_flags(linear_user_group_notification_settings_finder_ancestors_scopes: false)
    end

    it_behaves_like 'user group notifications settings tests'
  end
end