80 lines
2.3 KiB
Ruby
80 lines
2.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Admin::IntegrationsController do
|
|
let(:admin) { create(:admin) }
|
|
let(:integration) { create(:jira_service, :instance) }
|
|
|
|
before do
|
|
sign_in(admin)
|
|
end
|
|
|
|
describe '#edit' do
|
|
context 'when instance_level_integrations not enabled' do
|
|
it 'returns not_found' do
|
|
stub_feature_flags(instance_level_integrations: false)
|
|
|
|
get :edit, params: { id: Service.available_services_names.sample }
|
|
|
|
expect(response).to have_gitlab_http_status(:not_found)
|
|
end
|
|
end
|
|
|
|
Service.available_services_names.each do |integration_name|
|
|
context "#{integration_name}" do
|
|
it 'successfully displays the template' do
|
|
get :edit, params: { id: integration_name }
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(response).to render_template(:edit)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#update' do
|
|
before do
|
|
allow(PropagateIntegrationWorker).to receive(:perform_async)
|
|
|
|
put :update, params: { id: integration.class.to_param, overwrite: true, service: { url: url } }
|
|
end
|
|
|
|
context 'valid params' do
|
|
let(:url) { 'https://jira.gitlab-example.com' }
|
|
|
|
it 'updates the integration' do
|
|
expect(response).to have_gitlab_http_status(:found)
|
|
expect(integration.reload.url).to eq(url)
|
|
end
|
|
|
|
it 'calls to PropagateIntegrationWorker' do
|
|
expect(PropagateIntegrationWorker).to have_received(:perform_async).with(integration.id, true)
|
|
end
|
|
end
|
|
|
|
context 'invalid params' do
|
|
let(:url) { 'invalid' }
|
|
|
|
it 'does not update the integration' do
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(response).to render_template(:edit)
|
|
expect(integration.reload.url).not_to eq(url)
|
|
end
|
|
|
|
it 'does not call to PropagateIntegrationWorker' do
|
|
expect(PropagateIntegrationWorker).not_to have_received(:perform_async)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#custom_integration_projects' do
|
|
it 'calls to get the custom integration projects' do
|
|
allow(Project).to receive_message_chain(:with_custom_integration_compared_to, :page, :per)
|
|
|
|
get :custom_integration_projects, params: { id: integration.class.to_param }
|
|
|
|
expect(Project).to have_received(:with_custom_integration_compared_to).with(integration)
|
|
end
|
|
end
|
|
end
|