debian-mirror-gitlab/spec/frontend/fixtures/application_settings.rb

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

43 lines
1 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-11-20 20:47:30 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Admin::ApplicationSettingsController, '(JavaScript fixtures)', type: :controller do
2018-11-20 20:47:30 +05:30
include StubENV
include JavaScriptFixturesHelpers
2021-02-22 17:27:13 +05:30
include AdminModeHelper
2018-11-20 20:47:30 +05:30
let(:admin) { create(:admin) }
let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
let(:project) { create(:project_empty_repo, namespace: namespace, path: 'application-settings') }
before do
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
2022-04-04 11:22:00 +05:30
allow(Gitlab::Metrics).to receive(:metrics_folder_present?).and_return(true)
2018-11-20 20:47:30 +05:30
sign_in(admin)
2021-02-22 17:27:13 +05:30
enable_admin_mode!(admin)
2018-11-20 20:47:30 +05:30
end
render_views
after do
remove_repository(project)
end
2019-09-04 21:01:54 +05:30
it 'application_settings/accounts_and_limit.html' do
2018-11-20 20:47:30 +05:30
stub_application_setting(user_default_external: false)
2019-12-04 20:38:33 +05:30
get :general
2018-11-20 20:47:30 +05:30
2019-10-12 21:52:04 +05:30
expect(response).to be_successful
2018-11-20 20:47:30 +05:30
end
2021-09-30 23:02:18 +05:30
it 'application_settings/usage.html' do
stub_application_setting(usage_ping_enabled: false)
get :metrics_and_profiling
expect(response).to be_successful
end
2018-11-20 20:47:30 +05:30
end