deployment_spec.rb 11.3 KB
Newer Older
1 2
# frozen_string_literal: true

3 4
require 'spec_helper'

5
describe Deployment do
6 7
  subject { build(:deployment) }

8 9
  it { is_expected.to belong_to(:project).required }
  it { is_expected.to belong_to(:environment).required }
10 11 12 13 14 15
  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) }
16
  it { is_expected.to delegate_method(:manual_actions).to(:deployable).as(:try) }
17 18 19

  it { is_expected.to validate_presence_of(:ref) }
  it { is_expected.to validate_presence_of(:sha) }
Z
Z.J. van de Weg 已提交
20

S
Shinya Maeda 已提交
21
  it_behaves_like 'having unique enum values'
S
Shinya Maeda 已提交
22

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  describe '#scheduled_actions' do
    subject { deployment.scheduled_actions }

    let(:project) { create(:project, :repository) }
    let(:pipeline) { create(:ci_pipeline, project: project) }
    let(:build) { create(:ci_build, :success, pipeline: pipeline) }
    let(:deployment) { create(:deployment, deployable: build) }

    it 'delegates to other_scheduled_actions' do
      expect_any_instance_of(Ci::Build)
        .to receive(:other_scheduled_actions)

      subject
    end
  end

39 40 41 42
  describe 'modules' do
    it_behaves_like 'AtomicInternalId' do
      let(:internal_id_attribute) { :iid }
      let(:instance) { build(:deployment) }
43
      let(:scope) { :project }
44 45 46 47 48
      let(:scope_attrs) { { project: instance.project } }
      let(:usage) { :deployments }
    end
  end

S
Shinya Maeda 已提交
49 50
  describe '.success' do
    subject { described_class.success }
51

S
Shinya Maeda 已提交
52 53
    context 'when deployment status is success' do
      let(:deployment) { create(:deployment, :success) }
54

S
Shinya Maeda 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
      it { is_expected.to eq([deployment]) }
    end

    context 'when deployment status is created' do
      let(:deployment) { create(:deployment, :created) }

      it { is_expected.to be_empty }
    end

    context 'when deployment status is running' do
      let(:deployment) { create(:deployment, :running) }

      it { is_expected.to be_empty }
    end
  end

  describe 'state machine' do
    context 'when deployment runs' do
      let(:deployment) { create(:deployment) }

      before do
        deployment.run!
      end

      it 'starts running' do
        Timecop.freeze do
          expect(deployment).to be_running
          expect(deployment.finished_at).to be_nil
        end
      end
    end

    context 'when deployment succeeded' do
      let(:deployment) { create(:deployment, :running) }

      it 'has correct status' do
        Timecop.freeze do
          deployment.succeed!

          expect(deployment).to be_success
95
          expect(deployment.finished_at).to be_like_time(Time.now)
S
Shinya Maeda 已提交
96 97 98 99 100 101 102 103 104
        end
      end

      it 'executes Deployments::SuccessWorker asynchronously' do
        expect(Deployments::SuccessWorker)
          .to receive(:perform_async).with(deployment.id)

        deployment.succeed!
      end
105 106 107 108 109 110 111

      it 'executes Deployments::FinishedWorker asynchronously' do
        expect(Deployments::FinishedWorker)
          .to receive(:perform_async).with(deployment.id)

        deployment.succeed!
      end
S
Shinya Maeda 已提交
112 113 114 115 116 117 118 119 120 121
    end

    context 'when deployment failed' do
      let(:deployment) { create(:deployment, :running) }

      it 'has correct status' do
        Timecop.freeze do
          deployment.drop!

          expect(deployment).to be_failed
122
          expect(deployment.finished_at).to be_like_time(Time.now)
S
Shinya Maeda 已提交
123 124
        end
      end
125 126 127 128 129 130 131

      it 'executes Deployments::FinishedWorker asynchronously' do
        expect(Deployments::FinishedWorker)
          .to receive(:perform_async).with(deployment.id)

        deployment.drop!
      end
S
Shinya Maeda 已提交
132 133 134 135 136 137 138 139 140 141
    end

    context 'when deployment was canceled' do
      let(:deployment) { create(:deployment, :running) }

      it 'has correct status' do
        Timecop.freeze do
          deployment.cancel!

          expect(deployment).to be_canceled
142
          expect(deployment.finished_at).to be_like_time(Time.now)
S
Shinya Maeda 已提交
143 144
        end
      end
145 146 147 148 149 150 151

      it 'executes Deployments::FinishedWorker asynchronously' do
        expect(Deployments::FinishedWorker)
          .to receive(:perform_async).with(deployment.id)

        deployment.cancel!
      end
S
Shinya Maeda 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
    end
  end

  describe '#success?' do
    subject { deployment.success? }

    context 'when deployment status is success' do
      let(:deployment) { create(:deployment, :success) }

      it { is_expected.to be_truthy }
    end

    context 'when deployment status is failed' do
      let(:deployment) { create(:deployment, :failed) }

      it { is_expected.to be_falsy }
    end
  end

  describe '#status_name' do
    subject { deployment.status_name }

    context 'when deployment status is success' do
      let(:deployment) { create(:deployment, :success) }

      it { is_expected.to eq(:success) }
    end

    context 'when deployment status is failed' do
      let(:deployment) { create(:deployment, :failed) }

      it { is_expected.to eq(:failed) }
    end
  end

  describe '#finished_at' do
    subject { deployment.finished_at }

    context 'when deployment status is created' do
      let(:deployment) { create(:deployment) }

      it { is_expected.to be_nil }
    end

    context 'when deployment status is success' do
      let(:deployment) { create(:deployment, :success) }

      it { is_expected.to eq(deployment.read_attribute(:finished_at)) }
    end

    context 'when deployment status is success' do
      let(:deployment) { create(:deployment, :success, finished_at: nil) }

      before do
        deployment.update_column(:finished_at, nil)
      end

      it { is_expected.to eq(deployment.read_attribute(:created_at)) }
    end

    context 'when deployment status is running' do
      let(:deployment) { create(:deployment, :running) }

      it { is_expected.to be_nil }
    end
  end

  describe '#deployed_at' do
    subject { deployment.deployed_at }

    context 'when deployment status is created' do
      let(:deployment) { create(:deployment) }

      it { is_expected.to be_nil }
    end

    context 'when deployment status is success' do
      let(:deployment) { create(:deployment, :success) }

      it { is_expected.to eq(deployment.read_attribute(:finished_at)) }
    end

    context 'when deployment status is running' do
      let(:deployment) { create(:deployment, :running) }
236

S
Shinya Maeda 已提交
237
      it { is_expected.to be_nil }
238 239 240
    end
  end

241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
  describe 'scopes' do
    describe 'last_for_environment' do
      let(:production) { create(:environment) }
      let(:staging) { create(:environment) }
      let(:testing) { create(:environment) }

      let!(:deployments) do
        [
          create(:deployment, environment: production),
          create(:deployment, environment: staging),
          create(:deployment, environment: production)
        ]
      end

      it 'retrieves last deployments for environments' do
        last_deployments = described_class.last_for_environment([staging, production, testing])

        expect(last_deployments.size).to eq(2)
J
Jasper Maes 已提交
259
        expect(last_deployments).to match_array(deployments.last(2))
260 261 262 263
      end
    end
  end

264
  describe '#includes_commit?' do
265
    let(:project) { create(:project, :repository) }
Z
Z.J. van de Weg 已提交
266 267
    let(:environment) { create(:environment, project: project) }
    let(:deployment) do
268
      create(:deployment, environment: environment, sha: project.commit.id)
Z
Z.J. van de Weg 已提交
269 270 271 272
    end

    context 'when there is no project commit' do
      it 'returns false' do
273 274 275
        commit = project.commit('feature')

        expect(deployment.includes_commit?(commit)).to be false
Z
Z.J. van de Weg 已提交
276 277 278 279 280
      end
    end

    context 'when they share the same tree branch' do
      it 'returns true' do
281 282 283
        commit = project.commit

        expect(deployment.includes_commit?(commit)).to be true
Z
Z.J. van de Weg 已提交
284 285
      end
    end
286 287 288 289 290 291 292 293 294

    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
Z
Z.J. van de Weg 已提交
295
  end
K
Kamil Trzcinski 已提交
296

F
Fatih Acet 已提交
297
  describe '#metrics' do
S
Shinya Maeda 已提交
298
    let(:deployment) { create(:deployment, :success) }
299
    let(:prometheus_adapter) { double('prometheus_adapter', can_query?: true) }
F
Fatih Acet 已提交
300

301
    subject { deployment.metrics }
F
Fatih Acet 已提交
302 303 304 305 306 307 308 309 310 311

    context 'metrics are disabled' do
      it { is_expected.to eq({}) }
    end

    context 'metrics are enabled' do
      let(:simple_metrics) do
        {
          success: true,
          metrics: {},
312
          last_update: 42
F
Fatih Acet 已提交
313 314 315 316
        }
      end

      before do
317 318
        allow(deployment).to receive(:prometheus_adapter).and_return(prometheus_adapter)
        allow(prometheus_adapter).to receive(:query).with(:deployment, deployment).and_return(simple_metrics)
F
Fatih Acet 已提交
319 320
      end

321
      it { is_expected.to eq(simple_metrics.merge({ deployment_time: deployment.created_at.to_i })) }
F
Fatih Acet 已提交
322 323 324
    end
  end

325
  describe '#additional_metrics' do
326
    let(:project) { create(:project, :repository) }
S
Shinya Maeda 已提交
327
    let(:deployment) { create(:deployment, :succeed, project: project) }
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343

    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

344
      let(:prometheus_adapter) { double('prometheus_adapter', can_query?: true) }
345 346

      before do
347 348
        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)
349 350 351 352 353 354
      end

      it { is_expected.to eq(simple_metrics.merge({ deployment_time: deployment.created_at.to_i })) }
    end
  end

K
Kamil Trzcinski 已提交
355 356 357 358 359 360
  describe '#stop_action' do
    let(:build) { create(:ci_build) }

    subject { deployment.stop_action }

    context 'when no other actions' do
361
      let(:deployment) { FactoryBot.build(:deployment, deployable: build) }
K
Kamil Trzcinski 已提交
362 363 364 365 366

      it { is_expected.to be_nil }
    end

    context 'with other actions' do
367
      let!(:close_action) { create(:ci_build, :manual, pipeline: build.pipeline, name: 'close_app') }
K
Kamil Trzcinski 已提交
368 369

      context 'when matching action is defined' do
370
        let(:deployment) { FactoryBot.build(:deployment, deployable: build, on_stop: 'close_other_app') }
K
Kamil Trzcinski 已提交
371 372 373 374 375

        it { is_expected.to be_nil }
      end

      context 'when no matching action is defined' do
376
        let(:deployment) { FactoryBot.build(:deployment, deployable: build, on_stop: 'close_app') }
K
Kamil Trzcinski 已提交
377 378 379 380 381

        it { is_expected.to eq(close_action) }
      end
    end
  end
382

383
  describe '#deployment_platform_cluster' do
384 385 386 387
    let(:deployment) { create(:deployment) }
    let(:project) { deployment.project }
    let(:environment) { deployment.environment }

388
    subject { deployment.deployment_platform_cluster }
389 390 391 392 393 394 395 396 397 398 399 400 401 402

    before do
      expect(project).to receive(:deployment_platform)
        .with(environment: environment.name).and_call_original
    end

    context 'project has no deployment platform' do
      before do
        expect(project.clusters).to be_empty
      end

      it { is_expected.to be_nil }
    end

403 404 405 406 407 408
    context 'project uses the kubernetes service for deployments' do
      let!(:service) { create(:kubernetes_service, project: project) }

      it { is_expected.to be_nil }
    end

409 410 411 412 413 414 415
    context 'project has a deployment platform' do
      let!(:cluster) { create(:cluster, projects: [project]) }
      let!(:platform) { create(:cluster_platform_kubernetes, cluster: cluster) }

      it { is_expected.to eq cluster }
    end
  end
416
end