2019-10-17 02:07:30 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-30 08:53:06 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe Admin::ApplicationSettingsController, '(JavaScript fixtures)', type: :controller do
|
2018-08-30 08:53:06 -04:00
|
|
|
include StubENV
|
|
|
|
include JavaScriptFixturesHelpers
|
2020-12-07 07:10:00 -05:00
|
|
|
include AdminModeHelper
|
2018-08-30 08:53:06 -04:00
|
|
|
|
|
|
|
let(:admin) { create(:admin) }
|
2022-08-19 14:10:17 -04:00
|
|
|
let(:namespace) { create(:namespace, name: 'frontend-fixtures' ) }
|
2018-08-30 08:53:06 -04:00
|
|
|
let(:project) { create(:project_empty_repo, namespace: namespace, path: 'application-settings') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
|
2022-01-21 16:16:35 -05:00
|
|
|
allow(Gitlab::Metrics).to receive(:metrics_folder_present?).and_return(true)
|
2018-08-30 08:53:06 -04:00
|
|
|
sign_in(admin)
|
2020-12-07 07:10:00 -05:00
|
|
|
enable_admin_mode!(admin)
|
2018-08-30 08:53:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
render_views
|
|
|
|
|
|
|
|
after do
|
|
|
|
remove_repository(project)
|
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'application_settings/accounts_and_limit.html' do
|
2018-08-30 08:53:06 -04:00
|
|
|
stub_application_setting(user_default_external: false)
|
|
|
|
|
2019-09-16 17:06:30 -04:00
|
|
|
get :general
|
2018-08-30 08:53:06 -04:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2018-08-30 08:53:06 -04:00
|
|
|
end
|
2021-06-30 05:08:07 -04:00
|
|
|
|
|
|
|
it 'application_settings/usage.html' do
|
|
|
|
stub_application_setting(usage_ping_enabled: false)
|
|
|
|
|
|
|
|
get :metrics_and_profiling
|
|
|
|
|
|
|
|
expect(response).to be_successful
|
|
|
|
end
|
2018-08-30 08:53:06 -04:00
|
|
|
end
|