debian-mirror-gitlab/spec/features/admin/admin_users_spec.rb

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

90 lines
2.3 KiB
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe "Admin::Users" do
let(:current_user) { create(:admin) }
before do
sign_in(current_user)
gitlab_enable_admin_mode_sign_in(current_user)
end
2021-06-08 01:23:25 +05:30
describe 'Tabs' do
2021-03-11 19:13:27 +05:30
let(:tabs_selector) { '.js-users-tabs' }
let(:active_tab_selector) { '.nav-link.active' }
2021-06-08 01:23:25 +05:30
it 'links to the Users tab' do
2021-09-04 01:27:46 +05:30
visit admin_cohorts_path
2021-03-11 19:13:27 +05:30
within tabs_selector do
click_link 'Users'
2021-06-08 01:23:25 +05:30
expect(page).to have_selector active_tab_selector, text: 'Users'
2021-03-11 19:13:27 +05:30
end
expect(page).to have_current_path(admin_users_path)
end
2021-06-08 01:23:25 +05:30
it 'links to the Cohorts tab' do
2021-03-11 19:13:27 +05:30
visit admin_users_path
within tabs_selector do
click_link 'Cohorts'
2021-06-08 01:23:25 +05:30
expect(page).to have_selector active_tab_selector, text: 'Cohorts'
2021-03-11 19:13:27 +05:30
end
2021-09-04 01:27:46 +05:30
expect(page).to have_current_path(admin_cohorts_path)
2021-06-08 01:23:25 +05:30
expect(page).to have_selector active_tab_selector, text: 'Cohorts'
2021-03-11 19:13:27 +05:30
end
2021-06-08 01:23:25 +05:30
it 'redirects legacy route' do
2021-03-11 19:13:27 +05:30
visit admin_users_path(tab: 'cohorts')
2021-09-04 01:27:46 +05:30
expect(page).to have_current_path(admin_cohorts_path)
2021-03-11 19:13:27 +05:30
end
end
describe 'Cohorts tab content' do
2021-06-08 01:23:25 +05:30
it 'shows users count per month' do
stub_application_setting(usage_ping_enabled: false)
2021-03-11 19:13:27 +05:30
2021-06-08 01:23:25 +05:30
create_list(:user, 2)
2021-03-11 19:13:27 +05:30
2021-06-08 01:23:25 +05:30
visit admin_users_path(tab: 'cohorts')
2021-03-11 19:13:27 +05:30
2022-05-07 20:08:51 +05:30
expect(page).to have_content("#{Time.zone.now.strftime('%b %Y')} 3 0")
2021-03-11 19:13:27 +05:30
end
end
2022-03-02 08:16:31 +05:30
describe 'prompt user about registration features' do
let(:message) { s_("RegistrationFeatures|Want to %{feature_title} for free?") % { feature_title: s_('RegistrationFeatures|send emails to users') } }
it 'does not render registration features CTA when service ping is enabled' do
stub_application_setting(usage_ping_enabled: true)
visit admin_users_path
expect(page).not_to have_content(message)
end
context 'with no license and service ping disabled' do
before do
stub_application_setting(usage_ping_enabled: false)
if Gitlab.ee?
allow(License).to receive(:current).and_return(nil)
end
end
it 'renders registration features CTA' do
visit admin_users_path
expect(page).to have_content(message)
expect(page).to have_link(s_('RegistrationFeatures|Registration Features Program'))
end
end
end
2021-03-11 19:13:27 +05:30
end