b44a2c801a
Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Admin::ServicesController do
|
|
let(:admin) { create(:admin) }
|
|
|
|
before do
|
|
sign_in(admin)
|
|
end
|
|
|
|
describe 'GET #edit' do
|
|
let!(:project) { create(:project) }
|
|
|
|
Service.available_services_names.each do |service_name|
|
|
context "#{service_name}" do
|
|
let!(:service) do
|
|
service_template = "#{service_name}_service".camelize.constantize
|
|
service_template.where(template: true).first_or_create
|
|
end
|
|
|
|
it 'successfully displays the template' do
|
|
get :edit, params: { id: service.id }
|
|
|
|
expect(response).to have_gitlab_http_status(200)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#update" do
|
|
let(:project) { create(:project) }
|
|
let!(:service) do
|
|
RedmineService.create(
|
|
project: project,
|
|
active: false,
|
|
template: true,
|
|
properties: {
|
|
project_url: 'http://abc',
|
|
issues_url: 'http://abc',
|
|
new_issue_url: 'http://abc'
|
|
}
|
|
)
|
|
end
|
|
|
|
it 'calls the propagation worker when service is active' do
|
|
expect(PropagateServiceTemplateWorker).to receive(:perform_async).with(service.id)
|
|
|
|
put :update, params: { id: service.id, service: { active: true } }
|
|
|
|
expect(response).to have_gitlab_http_status(302)
|
|
end
|
|
|
|
it 'does not call the propagation worker when service is not active' do
|
|
expect(PropagateServiceTemplateWorker).not_to receive(:perform_async)
|
|
|
|
put :update, params: { id: service.id, service: { properties: {} } }
|
|
|
|
expect(response).to have_gitlab_http_status(302)
|
|
end
|
|
end
|
|
end
|