debian-mirror-gitlab/spec/models/deployment_spec.rb

178 lines
5.2 KiB
Ruby
Raw Normal View History

require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe Deployment do
subject { build(:deployment) }
it { is_expected.to belong_to(:project) }
it { is_expected.to belong_to(:environment) }
it { is_expected.to belong_to(:user) }
it { is_expected.to belong_to(:deployable) }
it { is_expected.to delegate_method(:name).to(:environment).with_prefix }
it { is_expected.to delegate_method(:commit).to(:project) }
it { is_expected.to delegate_method(:commit_title).to(:commit).as(:try) }
2016-08-24 12:49:21 +05:30
it { is_expected.to delegate_method(:manual_actions).to(:deployable).as(:try) }
it { is_expected.to validate_presence_of(:ref) }
it { is_expected.to validate_presence_of(:sha) }
2016-09-13 17:45:13 +05:30
2018-10-15 14:42:47 +05:30
describe 'modules' do
it_behaves_like 'AtomicInternalId' do
let(:internal_id_attribute) { :iid }
let(:instance) { build(:deployment) }
let(:scope_attrs) { { project: instance.project } }
let(:usage) { :deployments }
end
end
2017-09-10 17:25:29 +05:30
describe 'after_create callbacks' do
let(:environment) { create(:environment) }
let(:store) { Gitlab::EtagCaching::Store.new }
it 'invalidates the environment etag cache' do
old_value = store.get(environment.etag_cache_key)
create(:deployment, environment: environment)
expect(store.get(environment.etag_cache_key)).not_to eq(old_value)
end
end
2016-09-13 17:45:13 +05:30
describe '#includes_commit?' do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :repository) }
2016-09-13 17:45:13 +05:30
let(:environment) { create(:environment, project: project) }
let(:deployment) do
create(:deployment, environment: environment, sha: project.commit.id)
end
context 'when there is no project commit' do
it 'returns false' do
commit = project.commit('feature')
expect(deployment.includes_commit?(commit)).to be false
end
end
context 'when they share the same tree branch' do
it 'returns true' do
commit = project.commit
expect(deployment.includes_commit?(commit)).to be true
end
end
2016-11-03 12:29:30 +05:30
context 'when the SHA for the deployment does not exist in the repo' do
it 'returns false' do
deployment.update(sha: Gitlab::Git::BLANK_SHA)
commit = project.commit
expect(deployment.includes_commit?(commit)).to be false
end
end
end
2017-08-17 22:00:37 +05:30
describe '#metrics' do
let(:deployment) { create(:deployment) }
2018-03-27 19:54:05 +05:30
let(:prometheus_adapter) { double('prometheus_adapter', can_query?: true) }
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
subject { deployment.metrics }
2017-08-17 22:00:37 +05:30
context 'metrics are disabled' do
it { is_expected.to eq({}) }
end
context 'metrics are enabled' do
let(:simple_metrics) do
{
success: true,
metrics: {},
2018-03-27 19:54:05 +05:30
last_update: 42
2017-08-17 22:00:37 +05:30
}
end
before do
2018-03-27 19:54:05 +05:30
allow(deployment).to receive(:prometheus_adapter).and_return(prometheus_adapter)
allow(prometheus_adapter).to receive(:query).with(:deployment, deployment).and_return(simple_metrics)
2017-08-17 22:00:37 +05:30
end
2018-03-27 19:54:05 +05:30
it { is_expected.to eq(simple_metrics.merge({ deployment_time: deployment.created_at.to_i })) }
2017-09-10 17:25:29 +05:30
end
end
describe '#additional_metrics' do
let(:project) { create(:project, :repository) }
let(:deployment) { create(:deployment, project: project) }
subject { deployment.additional_metrics }
context 'metrics are disabled' do
it { is_expected.to eq({}) }
end
context 'metrics are enabled' do
let(:simple_metrics) do
{
success: true,
metrics: {},
last_update: 42
}
end
2018-03-27 19:54:05 +05:30
let(:prometheus_adapter) { double('prometheus_adapter', can_query?: true) }
2017-09-10 17:25:29 +05:30
before do
2018-03-27 19:54:05 +05:30
allow(deployment).to receive(:prometheus_adapter).and_return(prometheus_adapter)
allow(prometheus_adapter).to receive(:query).with(:additional_metrics_deployment, deployment).and_return(simple_metrics)
2017-09-10 17:25:29 +05:30
end
it { is_expected.to eq(simple_metrics.merge({ deployment_time: deployment.created_at.to_i })) }
2017-08-17 22:00:37 +05:30
end
end
2016-11-03 12:29:30 +05:30
describe '#stop_action' do
let(:build) { create(:ci_build) }
subject { deployment.stop_action }
context 'when no other actions' do
2018-03-17 18:26:18 +05:30
let(:deployment) { FactoryBot.build(:deployment, deployable: build) }
2016-11-03 12:29:30 +05:30
it { is_expected.to be_nil }
end
context 'with other actions' do
2017-09-10 17:25:29 +05:30
let!(:close_action) { create(:ci_build, :manual, pipeline: build.pipeline, name: 'close_app') }
2016-11-03 12:29:30 +05:30
context 'when matching action is defined' do
2018-03-17 18:26:18 +05:30
let(:deployment) { FactoryBot.build(:deployment, deployable: build, on_stop: 'close_other_app') }
2016-11-03 12:29:30 +05:30
it { is_expected.to be_nil }
end
context 'when no matching action is defined' do
2018-03-17 18:26:18 +05:30
let(:deployment) { FactoryBot.build(:deployment, deployable: build, on_stop: 'close_app') }
2016-11-03 12:29:30 +05:30
it { is_expected.to eq(close_action) }
end
end
end
2017-08-17 22:00:37 +05:30
describe '#stop_action?' do
subject { deployment.stop_action? }
2016-11-03 12:29:30 +05:30
context 'when no other actions' do
let(:deployment) { build(:deployment) }
it { is_expected.to be_falsey }
end
context 'when matching action is defined' do
let(:build) { create(:ci_build) }
2018-03-17 18:26:18 +05:30
let(:deployment) { FactoryBot.build(:deployment, deployable: build, on_stop: 'close_app') }
2017-09-10 17:25:29 +05:30
let!(:close_action) { create(:ci_build, :manual, pipeline: build.pipeline, name: 'close_app') }
2016-11-03 12:29:30 +05:30
it { is_expected.to be_truthy }
end
2016-09-13 17:45:13 +05:30
end
end