File: usage_stats_consent_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (59 lines) | stat: -rw-r--r-- 1,619 bytes parent folder | download
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Usage stats consent', feature_category: :service_ping do
  context 'when signed in' do
    let(:user) { create(:admin, created_at: 8.days.ago) }
    let(:message) { 'To help improve GitLab, we would like to periodically collect usage information.' }

    before do
      if Gitlab.ee?
        allow_any_instance_of(EE::User)
          .to receive(:has_current_license?)
          .and_return(false)
      else
        allow(user)
          .to receive(:has_current_license?)
          .and_return(false)
      end

      gitlab_sign_in(user)
      enable_admin_mode!(user)
    end

    shared_examples 'dismissible banner' do |button_text|
      it 'hides the banner permanently when sets usage stats', :js do
        visit root_dashboard_path

        expect(page).to have_content(message)

        click_link button_text

        expect(page).not_to have_content(message)
        expect(page).to have_content('Application settings saved successfully')

        gitlab_sign_out
        gitlab_sign_in(user)
        visit root_dashboard_path

        expect(page).not_to have_content(message)
      end
    end

    it_behaves_like 'dismissible banner', _('Send service data')
    it_behaves_like 'dismissible banner', _("Don't send service data")

    it 'shows banner on next session if user did not set usage stats', :js do
      visit root_dashboard_path

      expect(page).to have_content(message)

      gitlab_sign_out
      gitlab_sign_in(user)
      visit root_dashboard_path

      expect(page).to have_content(message)
    end
  end
end