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

registration_enabled_spec.rb « callouts « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4055965273fcab2807a3444b750f1f9d803d7152 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Registration enabled callout' do
  let_it_be(:admin) { create(:admin) }
  let_it_be(:non_admin) { create(:user) }

  context 'when "Sign-up enabled" setting is `true`' do
    before do
      stub_application_setting(signup_enabled: true)
    end

    context 'when an admin is logged in' do
      before do
        sign_in(admin)
        visit root_dashboard_path
      end

      it 'displays callout' do
        expect(page).to have_content 'Open registration is enabled on your instance.'
        expect(page).to have_link 'View setting', href: general_admin_application_settings_path(anchor: 'js-signup-settings')
      end

      context 'when callout is dismissed', :js do
        before do
          find('[data-testid="close-registration-enabled-callout"]').click

          visit root_dashboard_path
        end

        it 'does not display callout' do
          expect(page).not_to have_content 'Open registration is enabled on your instance.'
        end
      end
    end

    context 'when a non-admin is logged in' do
      before do
        sign_in(non_admin)
        visit root_dashboard_path
      end

      it 'does not display callout' do
        expect(page).not_to have_content 'Open registration is enabled on your instance.'
      end
    end
  end
end