debian-mirror-gitlab/spec/models/project_services/teamcity_service_spec.rb

223 lines
6.6 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2015-10-24 18:46:33 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe TeamcityService, :use_clean_rails_memory_store_caching do
2017-08-17 22:00:37 +05:30
include ReactiveCachingHelpers
2019-06-05 12:25:43 +05:30
include StubRequests
2017-08-17 22:00:37 +05:30
let(:teamcity_url) { 'http://gitlab.com/teamcity' }
subject(:service) do
described_class.create(
2017-09-10 17:25:29 +05:30
project: create(:project),
2017-08-17 22:00:37 +05:30
properties: {
teamcity_url: teamcity_url,
username: 'mic',
password: 'password',
build_type: 'foo'
}
)
end
2016-06-02 11:05:42 +05:30
describe 'Associations' do
2015-10-24 18:46:33 +05:30
it { is_expected.to belong_to :project }
it { is_expected.to have_one :service_hook }
end
2016-06-02 11:05:42 +05:30
describe 'Validations' do
context 'when service is active' do
2017-09-10 17:25:29 +05:30
before do
subject.active = true
end
2016-06-02 11:05:42 +05:30
it { is_expected.to validate_presence_of(:build_type) }
it { is_expected.to validate_presence_of(:teamcity_url) }
it_behaves_like 'issue tracker service URL attribute', :teamcity_url
describe '#username' do
it 'does not validate the presence of username if password is nil' do
subject.password = nil
expect(subject).not_to validate_presence_of(:username)
end
it 'validates the presence of username if password is present' do
subject.password = 'secret'
2015-10-24 18:46:33 +05:30
2016-06-02 11:05:42 +05:30
expect(subject).to validate_presence_of(:username)
end
2015-10-24 18:46:33 +05:30
end
2016-06-02 11:05:42 +05:30
describe '#password' do
it 'does not validate the presence of password if username is nil' do
subject.username = nil
expect(subject).not_to validate_presence_of(:password)
end
it 'validates the presence of password if username is present' do
subject.username = 'john'
expect(subject).to validate_presence_of(:password)
end
2015-10-24 18:46:33 +05:30
end
end
2016-06-02 11:05:42 +05:30
context 'when service is inactive' do
2017-09-10 17:25:29 +05:30
before do
subject.active = false
end
2016-06-02 11:05:42 +05:30
it { is_expected.not_to validate_presence_of(:build_type) }
it { is_expected.not_to validate_presence_of(:teamcity_url) }
it { is_expected.not_to validate_presence_of(:username) }
it { is_expected.not_to validate_presence_of(:password) }
end
end
describe 'Callbacks' do
describe 'before_update :reset_password' do
context 'when a password was previously set' do
it 'resets password if url changed' do
teamcity_service = service
teamcity_service.teamcity_url = 'http://gitlab1.com'
teamcity_service.save
expect(teamcity_service.password).to be_nil
end
it 'does not reset password if username changed' do
teamcity_service = service
teamcity_service.username = 'some_name'
teamcity_service.save
expect(teamcity_service.password).to eq('password')
end
it "does not reset password if new url is set together with password, even if it's the same password" do
teamcity_service = service
teamcity_service.teamcity_url = 'http://gitlab_edited.com'
teamcity_service.password = 'password'
teamcity_service.save
expect(teamcity_service.password).to eq('password')
expect(teamcity_service.teamcity_url).to eq('http://gitlab_edited.com')
end
2015-10-24 18:46:33 +05:30
end
2016-06-02 11:05:42 +05:30
it 'saves password if new url is set together with password when no password was previously set' do
teamcity_service = service
teamcity_service.password = nil
teamcity_service.teamcity_url = 'http://gitlab_edited.com'
teamcity_service.password = 'password'
teamcity_service.save
expect(teamcity_service.password).to eq('password')
expect(teamcity_service.teamcity_url).to eq('http://gitlab_edited.com')
2015-10-24 18:46:33 +05:30
end
end
end
2016-06-02 11:05:42 +05:30
describe '#build_page' do
2017-08-17 22:00:37 +05:30
it 'returns the contents of the reactive cache' do
stub_reactive_cache(service, { build_page: 'foo' }, 'sha', 'ref')
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(service.build_page('sha', 'ref')).to eq('foo')
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
describe '#commit_status' do
it 'returns the contents of the reactive cache' do
stub_reactive_cache(service, { commit_status: 'foo' }, 'sha', 'ref')
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(service.commit_status('sha', 'ref')).to eq('foo')
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
describe '#calculate_reactive_cache' do
context 'build_page' do
subject { service.calculate_reactive_cache('123', 'unused')[:build_page] }
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'returns a specific URL when status is 500' do
stub_request(status: 500)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('http://gitlab.com/teamcity/viewLog.html?buildTypeId=foo')
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'returns a build URL when teamcity_url has no trailing slash' do
stub_request(body: %q({"build":{"id":"666"}}))
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('http://gitlab.com/teamcity/viewLog.html?buildId=666&buildTypeId=foo')
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
context 'teamcity_url has trailing slash' do
let(:teamcity_url) { 'http://gitlab.com/teamcity/' }
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'returns a build URL' do
stub_request(body: %q({"build":{"id":"666"}}))
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('http://gitlab.com/teamcity/viewLog.html?buildId=666&buildTypeId=foo')
end
end
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
context 'commit_status' do
subject { service.calculate_reactive_cache('123', 'unused')[:commit_status] }
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'sets commit status to :error when status is 500' do
stub_request(status: 500)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq(:error)
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'sets commit status to "pending" when status is 404' do
stub_request(status: 404)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('pending')
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'sets commit status to "success" when build status contains SUCCESS' do
stub_request(build_status: 'YAY SUCCESS!')
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('success')
end
it 'sets commit status to "failed" when build status contains FAILURE' do
stub_request(build_status: 'NO FAILURE!')
is_expected.to eq('failed')
end
it 'sets commit status to "pending" when build status contains Pending' do
stub_request(build_status: 'NO Pending!')
is_expected.to eq('pending')
end
it 'sets commit status to :error when build status is unknown' do
stub_request(build_status: 'FOO BAR!')
is_expected.to eq(:error)
end
end
2016-06-02 11:05:42 +05:30
end
def stub_request(status: 200, body: nil, build_status: 'success')
2019-03-02 22:35:43 +05:30
teamcity_full_url = 'http://gitlab.com/teamcity/httpAuth/app/rest/builds/branch:unspecified:any,revision:123'
2017-09-10 17:25:29 +05:30
auth = %w(mic password)
2016-06-02 11:05:42 +05:30
body ||= %Q({"build":{"status":"#{build_status}","id":"666"}})
2019-06-05 12:25:43 +05:30
stub_full_request(teamcity_full_url).with(basic_auth: auth).to_return(
2016-06-02 11:05:42 +05:30
status: status,
headers: { 'Content-Type' => 'application/json' },
body: body
)
end
2015-10-24 18:46:33 +05:30
end