1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Admin::IntegrationsController, :enable_admin_mode, feature_category: :integrations do
let_it_be(:admin) { create(:admin) }
before do
sign_in(admin)
end
describe 'GET #edit' do
context 'for prometheus integration' do
# feature flag remove_monitor_metrics is enabled by default in specs
it 'renders a 404' do
get edit_admin_application_settings_integration_path(:prometheus)
expect(response).to have_gitlab_http_status(:not_found)
end
end
end
describe 'GET #overrides' do
let(:overrides_path) { overrides_admin_application_settings_integration_path(integration, format: format) }
context 'for jira integration' do
let_it_be(:integration) { create(:jira_integration, :instance) }
let_it_be(:overridden_integration) { create(:jira_integration) }
let_it_be(:overridden_other_integration) { create(:confluence_integration) }
context 'when format is html' do
let(:format) { :html }
it 'renders' do
get overrides_path
expect(response).to have_gitlab_http_status(:ok)
expect(response).to render_template('shared/integrations/overrides')
end
end
context 'when format is json' do
let(:format) { :json }
let(:project) { overridden_integration.project }
it 'returns the project overrides data' do
get overrides_path
expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers
expect(json_response).to contain_exactly(
{
'id' => project.id,
'avatar_url' => project.avatar_url,
'full_name' => project.full_name,
'name' => project.name,
'full_path' => project_path(project)
}
)
end
end
end
context 'for prometheus integration' do
# feature flag remove_monitor_metrics is enabled by default in specs
let_it_be(:integration) { create(:prometheus_integration, :instance) }
let(:format) { :html }
it 'renders a 404' do
get overrides_path
expect(response).to have_gitlab_http_status(:not_found)
end
end
end
end
|