debian-mirror-gitlab/spec/features/callouts/registration_enabled_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.9 KiB
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-05-27 22:25:52 +05:30
RSpec.describe 'Registration enabled callout', feature_category: :system_access do
2021-01-29 00:20:46 +05:30
let_it_be(:admin) { create(:admin) }
let_it_be(:non_admin) { create(:user) }
2022-05-07 20:08:51 +05:30
let_it_be(:project) { create(:project) }
2023-03-04 22:38:38 +05:30
let_it_be(:callout_title) { _('Check your sign-up restrictions') }
2021-01-29 00:20:46 +05:30
context 'when "Sign-up enabled" setting is `true`' do
before do
stub_application_setting(signup_enabled: true)
end
2023-03-17 16:20:25 +05:30
context 'when an admin is logged in', :do_not_mock_admin_mode_setting do
2021-01-29 00:20:46 +05:30
before do
sign_in(admin)
2022-05-07 20:08:51 +05:30
end
it 'displays callout on admin and dashboard pages and root page' do
visit root_path
expect(page).to have_content callout_title
2023-03-04 22:38:38 +05:30
expect(page).to have_link _('Deactivate'), href: general_admin_application_settings_path(anchor: 'js-signup-settings')
2022-05-07 20:08:51 +05:30
2021-01-29 00:20:46 +05:30
visit root_dashboard_path
2022-05-07 20:08:51 +05:30
expect(page).to have_content callout_title
visit admin_root_path
expect(page).to have_content callout_title
2021-01-29 00:20:46 +05:30
end
2022-05-07 20:08:51 +05:30
it 'does not display callout on pages other than root, admin, or dashboard' do
visit project_issues_path(project)
expect(page).not_to have_content callout_title
2021-01-29 00:20:46 +05:30
end
context 'when callout is dismissed', :js do
before do
2022-05-07 20:08:51 +05:30
visit admin_root_path
2021-01-29 00:20:46 +05:30
find('[data-testid="close-registration-enabled-callout"]').click
2022-05-07 20:08:51 +05:30
wait_for_requests
2021-01-29 00:20:46 +05:30
visit root_dashboard_path
end
2023-04-23 21:23:45 +05:30
it 'does not display callout', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/391192' do
2022-05-07 20:08:51 +05:30
expect(page).not_to have_content callout_title
2021-01-29 00:20:46 +05:30
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
2022-05-07 20:08:51 +05:30
expect(page).not_to have_content callout_title
2021-01-29 00:20:46 +05:30
end
end
end
end