2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe 'admin/application_settings/general.html.haml' do
|
2020-04-22 19:07:51 +05:30
|
|
|
let(:app_settings) { build(:application_setting) }
|
|
|
|
let(:user) { create(:admin) }
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
before do
|
|
|
|
assign(:application_setting, app_settings)
|
|
|
|
allow(view).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
describe 'sourcegraph integration' do
|
|
|
|
let(:sourcegraph_flag) { true }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Gitlab::Sourcegraph).to receive(:feature_available?).and_return(sourcegraph_flag)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when sourcegraph feature is enabled' do
|
|
|
|
it 'show the form' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).to have_field('application_setting_sourcegraph_enabled')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when sourcegraph feature is disabled' do
|
|
|
|
let(:sourcegraph_flag) { false }
|
|
|
|
|
|
|
|
it 'show the form' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).not_to have_field('application_setting_sourcegraph_enabled')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
describe 'prompt user about registration features' do
|
|
|
|
context 'when service ping is enabled' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(usage_ping_enabled: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'does not render registration features prompt', :application_setting_disabled_repository_size_limit
|
|
|
|
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_behaves_like 'renders registration features prompt', :application_setting_disabled_repository_size_limit
|
|
|
|
end
|
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
describe 'add license' do
|
|
|
|
before do
|
|
|
|
render
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show the Add License section' do
|
|
|
|
expect(rendered).not_to have_css('#js-add-license-toggle')
|
|
|
|
end
|
|
|
|
end
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
describe 'jira connect application key' do
|
|
|
|
it 'shows the jira connect application key section' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).to have_css('#js-jira_connect-settings')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the jira_connect_oauth feature flag is disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(jira_connect_oauth: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show the jira connect application key section' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).not_to have_css('#js-jira_connect-settings')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'sign-up restrictions' do
|
|
|
|
it 'renders js-signup-form tag' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).to match 'id="js-signup-form"'
|
|
|
|
expect(rendered).to match ' data-minimum-password-length='
|
|
|
|
end
|
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|