summaryrefslogtreecommitdiff
path: root/spec/features/users/overview_spec.rb
blob: 902079b7b9345033044eaa7e3c27701162193c11 (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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Overview tab on a user profile', :js do
  let(:user) { create(:user) }
  let(:contributed_project) { create(:project, :public, :repository) }

  def push_code_contribution
    event = create(:push_event, project: contributed_project, author: user)

    create(:push_event_payload,
           event: event,
           commit_from: '11f9ac0a48b62cef25eedede4c1819964f08d5ce',
           commit_to: '1cf19a015df3523caf0a1f9d40c98a267d6a2fc2',
           commit_count: 3,
           ref: 'master')
  end

  before do
    sign_in user
  end

  shared_context 'visit overview tab' do
    before do
      visit user.username
      page.find('.js-overview-tab a').click
      wait_for_requests
    end
  end

  describe 'activities section' do
    describe 'user has no activities' do
      include_context 'visit overview tab'

      it 'does not show any entries in the list of activities' do
        page.within('.activities-block') do
          expect(page).to have_selector('.loading', visible: false)
          expect(page).to have_content('Join or create a group to start contributing by commenting on issues or submitting merge requests!')
          expect(page).not_to have_selector('.event-item')
        end
      end

      it 'does not show a link to the activity list' do
        expect(find('#js-overview .activities-block')).to have_selector('.js-view-all', visible: false)
      end
    end

    describe 'user has 3 activities' do
      before do
        3.times { push_code_contribution }
      end

      include_context 'visit overview tab'

      it 'display 3 entries in the list of activities' do
        expect(find('#js-overview')).to have_selector('.event-item', count: 3)
      end
    end

    describe 'user has 11 activities' do
      before do
        11.times { push_code_contribution }
      end

      include_context 'visit overview tab'

      it 'displays 10 entries in the list of activities' do
        expect(find('#js-overview')).to have_selector('.event-item', count: 10)
      end

      it 'shows a link to the activity list' do
        expect(find('#js-overview .activities-block')).to have_selector('.js-view-all', visible: true)
      end

      it 'links to the activity tab' do
        page.within('.activities-block') do
          find('.js-view-all').click
          wait_for_requests
          expect(URI.parse(current_url).path).to eq("/users/#{user.username}/activity")
        end
      end
    end
  end

  describe 'projects section' do
    describe 'user has no personal projects' do
      include_context 'visit overview tab'

      it 'shows an empty project list with an info message' do
        page.within('.projects-block') do
          expect(page).to have_selector('.loading', visible: false)
          expect(page).to have_content('You haven\'t created any personal projects.')
          expect(page).not_to have_selector('.project-row')
        end
      end

      it 'does not show a link to the project list' do
        expect(find('#js-overview .projects-block')).to have_selector('.js-view-all', visible: false)
      end
    end

    describe 'user has a personal project' do
      before do
        create(:project, :private, namespace: user.namespace, creator: user) { |p| p.add_maintainer(user) }
      end

      include_context 'visit overview tab'

      it 'shows one entry in the list of projects' do
        page.within('.projects-block') do
          expect(page).to have_selector('.project-row', count: 1)
        end
      end

      it 'shows a link to the project list' do
        expect(find('#js-overview .projects-block')).to have_selector('.js-view-all', visible: true)
      end

      it 'shows projects in "compact mode"' do
        page.within('#js-overview .projects-block') do
          expect(find('.js-projects-list-holder')).to have_selector('.compact')
        end
      end
    end

    describe 'user has more than ten personal projects' do
      before do
        create_list(:project, 11, :private, namespace: user.namespace, creator: user) do |project|
          project.add_maintainer(user)
        end
      end

      include_context 'visit overview tab'

      it 'shows max. ten entries in the list of projects' do
        page.within('.projects-block') do
          expect(page).to have_selector('.project-row', count: 10)
        end
      end

      it 'shows a link to the project list' do
        expect(find('#js-overview .projects-block')).to have_selector('.js-view-all', visible: true)
      end

      it 'does not show pagination' do
        page.within('.projects-block') do
          expect(page).not_to have_selector('.gl-pagination')
        end
      end
    end
  end

  describe 'followers section' do
    describe 'user has no followers' do
      before do
        visit user.username
        page.find('.js-followers-tab a').click
        wait_for_requests
      end

      it 'shows an empty followers list with an info message' do
        page.within('#followers') do
          expect(page).to have_content('You do not have any followers')
          expect(page).not_to have_selector('.gl-card.gl-mb-5')
          expect(page).not_to have_selector('.gl-pagination')
        end
      end
    end

    describe 'user has less then 20 followers' do
      let(:follower) { create(:user) }

      before do
        follower.follow(user)
        visit user.username
        page.find('.js-followers-tab a').click
        wait_for_requests
      end

      it 'shows followers' do
        page.within('#followers') do
          expect(page).to have_content(follower.name)
          expect(page).to have_selector('.gl-card.gl-mb-5')
          expect(page).not_to have_selector('.gl-pagination')
        end
      end
    end

    describe 'user has more then 20 followers' do
      let(:other_users) { create_list(:user, 21) }

      before do
        other_users.each do |follower|
          follower.follow(user)
        end

        visit user.username
        page.find('.js-followers-tab a').click
        wait_for_requests
      end
      it 'shows paginated followers' do
        page.within('#followers') do
          other_users.each_with_index do |follower, i|
            break if i == 20

            expect(page).to have_content(follower.name)
          end
          expect(page).to have_selector('.gl-card.gl-mb-5')
          expect(page).to have_selector('.gl-pagination')
          expect(page).to have_selector('.gl-pagination .js-pagination-page', count: 2)
        end
      end
    end
  end

  describe 'following section' do
    describe 'user is not following others' do
      before do
        visit user.username
        page.find('.js-following-tab a').click
        wait_for_requests
      end

      it 'shows an empty following list with an info message' do
        page.within('#following') do
          expect(page).to have_content('You are not following other users')
          expect(page).not_to have_selector('.gl-card.gl-mb-5')
          expect(page).not_to have_selector('.gl-pagination')
        end
      end
    end

    describe 'user is following less then 20 people' do
      let(:followee) { create(:user) }

      before do
        user.follow(followee)
        visit user.username
        page.find('.js-following-tab a').click
        wait_for_requests
      end

      it 'shows following user' do
        page.within('#following') do
          expect(page).to have_content(followee.name)
          expect(page).to have_selector('.gl-card.gl-mb-5')
          expect(page).not_to have_selector('.gl-pagination')
        end
      end
    end

    describe 'user is following more then 20 people' do
      let(:other_users) { create_list(:user, 21) }

      before do
        other_users.each do |followee|
          user.follow(followee)
        end

        visit user.username
        page.find('.js-following-tab a').click
        wait_for_requests
      end
      it 'shows paginated following' do
        page.within('#following') do
          other_users.each_with_index do |followee, i|
            break if i == 20

            expect(page).to have_content(followee.name)
          end
          expect(page).to have_selector('.gl-card.gl-mb-5')
          expect(page).to have_selector('.gl-pagination')
          expect(page).to have_selector('.gl-pagination .js-pagination-page', count: 2)
        end
      end
    end
  end

  describe 'bot user' do
    let(:bot_user) { create(:user, user_type: :security_bot) }

    shared_context "visit bot's overview tab" do
      before do
        visit bot_user.username
        page.find('.js-overview-tab a').click
        wait_for_requests
      end
    end

    describe 'feature flag enabled' do
      before do
        stub_feature_flags(security_auto_fix: true)
      end

      include_context "visit bot's overview tab"

      it "activity panel's title is 'Bot activity'" do
        page.within('.activities-block') do
          expect(page).to have_text('Bot activity')
        end
      end

      it 'does not show projects panel' do
        expect(page).not_to have_selector('.projects-block')
      end
    end

    describe 'feature flag disabled' do
      before do
        stub_feature_flags(security_auto_fix: false)
      end

      include_context "visit bot's overview tab"

      it "activity panel's title is not 'Bot activity'" do
        page.within('.activities-block') do
          expect(page).not_to have_text('Bot activity')
        end
      end

      it 'shows projects panel' do
        expect(page).to have_selector('.projects-block')
      end
    end
  end
end