build_spec.rb 34.2 KB
Newer Older
1 2
require 'spec_helper'

Douwe Maan's avatar
Douwe Maan committed
3
describe Ci::Build, models: true do
4
  let(:project) { create(:project) }
5 6 7

  let(:pipeline) do
    create(:ci_pipeline, project: project,
8
                         sha: project.commit.id,
9
                         ref: project.default_branch,
10
                         status: 'success')
11 12
  end

13
  let(:build) { create(:ci_build, pipeline: pipeline) }
14

Kamil Trzcinski's avatar
Kamil Trzcinski committed
15
  it { is_expected.to validate_presence_of :ref }
16

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
17
  it { is_expected.to respond_to :trace_html }
18

Kamil Trzcinski's avatar
Kamil Trzcinski committed
19
  describe '#first_pending' do
20 21
    let!(:first) { create(:ci_build, pipeline: pipeline, status: 'pending', created_at: Date.yesterday) }
    let!(:second) { create(:ci_build, pipeline: pipeline, status: 'pending') }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
22
    subject { Ci::Build.first_pending }
23

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
24 25
    it { is_expected.to be_a(Ci::Build) }
    it('returns with the first pending build') { is_expected.to eq(first) }
26 27
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
28
  describe '#create_from' do
29 30 31 32
    before do
      build.status = 'success'
      build.save
    end
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
33
    let(:create_from_build) { Ci::Build.create_from build }
34

35
    it 'exists a pending task' do
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
36
      expect(Ci::Build.pending.count(:all)).to eq 0
37
      create_from_build
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
38
      expect(Ci::Build.pending.count(:all)).to be > 0
39 40 41
    end
  end

42 43
  describe '#failed_but_allowed?' do
    subject { build.failed_but_allowed? }
44

45
    context 'when build is not allowed to fail' do
46 47 48
      before do
        build.allow_failure = false
      end
49 50

      context 'and build.status is success' do
51 52 53
        before do
          build.status = 'success'
        end
54

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
55
        it { is_expected.to be_falsey }
56 57 58
      end

      context 'and build.status is failed' do
59 60 61
        before do
          build.status = 'failed'
        end
62

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
63
        it { is_expected.to be_falsey }
64 65 66
      end
    end

67
    context 'when build is allowed to fail' do
68 69 70
      before do
        build.allow_failure = true
      end
71 72

      context 'and build.status is success' do
73 74 75
        before do
          build.status = 'success'
        end
76

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
77
        it { is_expected.to be_falsey }
78 79 80
      end

      context 'and build.status is failed' do
81 82 83
        before do
          build.status = 'failed'
        end
84

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
85
        it { is_expected.to be_truthy }
86 87 88 89
      end
    end
  end

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  describe '#persisted_environment' do
    before do
      @environment = create(:environment, project: project, name: "foo-#{project.default_branch}")
    end

    subject { build.persisted_environment }

    context 'referenced literally' do
      let(:build) { create(:ci_build, pipeline: pipeline, environment: "foo-#{project.default_branch}") }

      it { is_expected.to eq(@environment) }
    end

    context 'referenced with a variable' do
      let(:build) { create(:ci_build, pipeline: pipeline, environment: "foo-$CI_BUILD_REF_NAME") }

      it { is_expected.to eq(@environment) }
    end
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
110
  describe '#trace' do
111
    it { expect(build.trace).to be_nil }
112

113
    context 'when build.trace contains text' do
114
      let(:text) { 'example output' }
115 116 117
      before do
        build.trace = text
      end
118

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 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
      it { expect(build.trace).to eq(text) }
    end

    context 'when build.trace hides runners token' do
      let(:token) { 'my_secret_token' }

      before do
        build.update(trace: token)
        build.project.update(runners_token: token)
      end

      it { expect(build.trace).not_to include(token) }
      it { expect(build.raw_trace).to include(token) }
    end

    context 'when build.trace hides build token' do
      let(:token) { 'my_secret_token' }

      before do
        build.update(trace: token)
        build.update(token: token)
      end

      it { expect(build.trace).not_to include(token) }
      it { expect(build.raw_trace).to include(token) }
    end
  end

  describe '#raw_trace' do
    subject { build.raw_trace }

    context 'when build.trace hides runners token' do
      let(:token) { 'my_secret_token' }

      before do
        build.project.update(runners_token: token)
        build.update(trace: token)
      end

      it { is_expected.not_to include(token) }
    end

    context 'when build.trace hides build token' do
      let(:token) { 'my_secret_token' }

      before do
        build.update(token: token)
        build.update(trace: token)
      end

      it { is_expected.not_to include(token) }
    end
  end

  context '#append_trace' do
    subject { build.trace_html }

    context 'when build.trace hides runners token' do
      let(:token) { 'my_secret_token' }

      before do
        build.project.update(runners_token: token)
        build.append_trace(token, 0)
      end

      it { is_expected.not_to include(token) }
185
    end
186

187
    context 'when build.trace hides build token' do
188 189 190
      let(:token) { 'my_secret_token' }

      before do
191 192
        build.update(token: token)
        build.append_trace(token, 0)
193 194
      end

195
      it { is_expected.not_to include(token) }
196
    end
197 198
  end

199 200 201 202
  # TODO: build timeout
  # describe :timeout do
  #   subject { build.timeout }
  #
203
  #   it { is_expected.to eq(pipeline.project.timeout) }
204
  # end
205

Kamil Trzcinski's avatar
Kamil Trzcinski committed
206
  describe '#options' do
Valery Sizov's avatar
Valery Sizov committed
207
    let(:options) do
208
      {
Valery Sizov's avatar
Valery Sizov committed
209 210
        image: "ruby:2.1",
        services: [
211 212 213
          "postgres"
        ]
      }
Valery Sizov's avatar
Valery Sizov committed
214
    end
215 216

    subject { build.options }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
217
    it { is_expected.to eq(options) }
218 219
  end

220 221 222 223 224 225
  # TODO: allow_git_fetch
  # describe :allow_git_fetch do
  #   subject { build.allow_git_fetch }
  #
  #   it { is_expected.to eq(project.allow_git_fetch) }
  # end
226

Kamil Trzcinski's avatar
Kamil Trzcinski committed
227
  describe '#project' do
228 229
    subject { build.project }

230
    it { is_expected.to eq(pipeline.project) }
231 232
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
233
  describe '#project_id' do
234 235
    subject { build.project_id }

236
    it { is_expected.to eq(pipeline.project_id) }
237 238
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
239
  describe '#project_name' do
240 241
    subject { build.project_name }

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
242
    it { is_expected.to eq(project.name) }
243 244
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
245
  describe '#extract_coverage' do
246 247 248
    context 'valid content & regex' do
      subject { build.extract_coverage('Coverage 1033 / 1051 LOC (98.29%) covered', '\(\d+.\d+\%\) covered') }

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
249
      it { is_expected.to eq(98.29) }
250 251 252 253 254
    end

    context 'valid content & bad regex' do
      subject { build.extract_coverage('Coverage 1033 / 1051 LOC (98.29%) covered', 'very covered') }

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
255
      it { is_expected.to be_nil }
256 257 258 259 260
    end

    context 'no coverage content & regex' do
      subject { build.extract_coverage('No coverage for today :sad:', '\(\d+.\d+\%\) covered') }

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
261
      it { is_expected.to be_nil }
262 263 264 265 266
    end

    context 'multiple results in content & regex' do
      subject { build.extract_coverage(' (98.39%) covered. (98.29%) covered', '\(\d+.\d+\%\) covered') }

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
267
      it { is_expected.to eq(98.29) }
268
    end
Jared Szechy's avatar
Jared Szechy committed
269 270 271 272 273 274

    context 'using a regex capture' do
      subject { build.extract_coverage('TOTAL      9926   3489    65%', 'TOTAL\s+\d+\s+\d+\s+(\d{1,3}\%)') }

      it { is_expected.to eq(65) }
    end
275 276
  end

Nick Thomas's avatar
Nick Thomas committed
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
  describe '#ref_slug' do
    {
      'master'    => 'master',
      '1-foo'     => '1-foo',
      'fix/1-foo' => 'fix-1-foo',
      'fix-1-foo' => 'fix-1-foo',
      'a' * 63    => 'a' * 63,
      'a' * 64    => 'a' * 63,
      'FOO'       => 'foo',
    }.each do |ref, slug|
      it "transforms #{ref} to #{slug}" do
        build.ref = ref

        expect(build.ref_slug).to eq(slug)
      end
    end
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
295
  describe '#variables' do
296
    let(:container_registry_enabled) { false }
297 298
    let(:predefined_variables) do
      [
299 300 301 302 303 304 305
        { key: 'CI', value: 'true', public: true },
        { key: 'GITLAB_CI', value: 'true', public: true },
        { key: 'CI_BUILD_ID', value: build.id.to_s, public: true },
        { key: 'CI_BUILD_TOKEN', value: build.token, public: false },
        { key: 'CI_BUILD_REF', value: build.sha, public: true },
        { key: 'CI_BUILD_BEFORE_SHA', value: build.before_sha, public: true },
        { key: 'CI_BUILD_REF_NAME', value: 'master', public: true },
Nick Thomas's avatar
Nick Thomas committed
306
        { key: 'CI_BUILD_REF_SLUG', value: 'master', public: true },
307 308
        { key: 'CI_BUILD_NAME', value: 'test', public: true },
        { key: 'CI_BUILD_STAGE', value: 'test', public: true },
309 310 311
        { key: 'CI_SERVER_NAME', value: 'GitLab', public: true },
        { key: 'CI_SERVER_VERSION', value: Gitlab::VERSION, public: true },
        { key: 'CI_SERVER_REVISION', value: Gitlab::REVISION, public: true },
312 313 314 315 316
        { key: 'CI_PROJECT_ID', value: project.id.to_s, public: true },
        { key: 'CI_PROJECT_NAME', value: project.path, public: true },
        { key: 'CI_PROJECT_PATH', value: project.path_with_namespace, public: true },
        { key: 'CI_PROJECT_NAMESPACE', value: project.namespace.path, public: true },
        { key: 'CI_PROJECT_URL', value: project.web_url, public: true },
317
        { key: 'CI_PIPELINE_ID', value: pipeline.id.to_s, public: true }
318 319
      ]
    end
320

321 322 323 324
    before do
      stub_container_registry_config(enabled: container_registry_enabled, host_port: 'registry.example.com')
    end

325
    subject { build.variables }
326

327
    context 'returns variables' do
328
      before do
329
        build.yaml_variables = []
330
      end
331

332 333
      it { is_expected.to eq(predefined_variables) }
    end
334

335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
    context 'when build has user' do
      let(:user) { create(:user, username: 'starter') }
      let(:user_variables) do
        [
          { key: 'GITLAB_USER_ID',    value: user.id.to_s, public: true },
          { key: 'GITLAB_USER_EMAIL', value: user.email,   public: true }
        ]
      end

      before do
        build.update_attributes(user: user)
      end

      it { user_variables.each { |v| is_expected.to include(v) } }
    end

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
    context 'when build has an environment' do
      before do
        build.update(environment: 'production')
        create(:environment, project: build.project, name: 'production', slug: 'prod-slug')
      end

      let(:environment_variables) do
        [
          { key: 'CI_ENVIRONMENT_NAME', value: 'production', public: true },
          { key: 'CI_ENVIRONMENT_SLUG', value: 'prod-slug',  public: true }
        ]
      end

      it { environment_variables.each { |v| is_expected.to include(v) } }
    end

367 368 369 370 371 372 373 374 375 376 377 378
    context 'when build started manually' do
      before do
        build.update_attributes(when: :manual)
      end

      let(:manual_variable) do
        { key: 'CI_BUILD_MANUAL', value: 'true', public: true }
      end

      it { is_expected.to include(manual_variable) }
    end

379 380 381
    context 'when build is for tag' do
      let(:tag_variable) do
        { key: 'CI_BUILD_TAG', value: 'master', public: true }
382 383
      end

384 385
      before do
        build.update_attributes(tag: true)
386
      end
387

388 389
      it { is_expected.to include(tag_variable) }
    end
390

391 392 393
    context 'when secure variable is defined' do
      let(:secure_variable) do
        { key: 'SECRET_KEY', value: 'secret_value', public: false }
Valery Sizov's avatar
Valery Sizov committed
394
      end
395

396
      before do
397
        build.project.variables << Ci::Variable.new(key: 'SECRET_KEY', value: 'secret_value')
398
      end
399

400 401
      it { is_expected.to include(secure_variable) }
    end
402

403 404 405 406
    context 'when build is for triggers' do
      let(:trigger) { create(:ci_trigger, project: project) }
      let(:trigger_request) { create(:ci_trigger_request_with_variables, pipeline: pipeline, trigger: trigger) }
      let(:user_trigger_variable) do
Katarzyna Kobierska's avatar
Katarzyna Kobierska committed
407
        { key: :TRIGGER_KEY_1, value: 'TRIGGER_VALUE_1', public: false }
408 409 410 411
      end
      let(:predefined_trigger_variable) do
        { key: 'CI_BUILD_TRIGGERED', value: 'true', public: true }
      end
412

413 414
      before do
        build.trigger_request = trigger_request
415
      end
416

417 418
      it { is_expected.to include(user_trigger_variable) }
      it { is_expected.to include(predefined_trigger_variable) }
419
    end
420

421
    context 'when yaml_variables are undefined' do
422 423
      before do
        build.yaml_variables = nil
424
      end
425

426 427 428
      context 'use from gitlab-ci.yml' do
        before do
          stub_ci_pipeline_yaml_file(config)
Valery Sizov's avatar
Valery Sizov committed
429
        end
430

431
        context 'when config is not found' do
432 433 434
          let(:config) { nil }

          it { is_expected.to eq(predefined_variables) }
435 436
        end

437
        context 'when config does not have a questioned job' do
438 439
          let(:config) do
            YAML.dump({
440 441 442 443
              test_other: {
                script: 'Hello World'
              }
            })
444
          end
445

446 447
          it { is_expected.to eq(predefined_variables) }
        end
448

449
        context 'when config has variables' do
450 451
          let(:config) do
            YAML.dump({
452 453 454 455 456 457 458
              test: {
                script: 'Hello World',
                variables: {
                  KEY: 'value'
                }
              }
            })
Valery Sizov's avatar
Valery Sizov committed
459
          end
460 461
          let(:variables) do
            [{ key: :KEY, value: 'value', public: true }]
462
          end
463

464 465 466 467
          it { is_expected.to eq(predefined_variables + variables) }
        end
      end
    end
468

469 470 471
    context 'when container registry is enabled' do
      let(:container_registry_enabled) { true }
      let(:ci_registry) do
Kamil Trzcinski's avatar
Kamil Trzcinski committed
472
        { key: 'CI_REGISTRY',  value: 'registry.example.com',  public: true }
473 474
      end
      let(:ci_registry_image) do
Kamil Trzcinski's avatar
Kamil Trzcinski committed
475
        { key: 'CI_REGISTRY_IMAGE',  value: project.container_registry_repository_url, public: true }
476 477 478 479 480 481 482 483 484 485
      end

      context 'and is disabled for project' do
        before do
          project.update(container_registry_enabled: false)
        end

        it { is_expected.to include(ci_registry) }
        it { is_expected.not_to include(ci_registry_image) }
      end
486

487 488 489
      context 'and is enabled for project' do
        before do
          project.update(container_registry_enabled: true)
490
        end
491 492 493

        it { is_expected.to include(ci_registry) }
        it { is_expected.to include(ci_registry_image) }
494 495
      end
    end
496 497 498 499 500 501 502 503 504 505 506 507 508

    context 'when runner is assigned to build' do
      let(:runner) { create(:ci_runner, description: 'description', tag_list: ['docker', 'linux']) }

      before do
        build.update(runner: runner)
      end

      it { is_expected.to include({ key: 'CI_RUNNER_ID', value: runner.id.to_s, public: true }) }
      it { is_expected.to include({ key: 'CI_RUNNER_DESCRIPTION', value: 'description', public: true }) }
      it { is_expected.to include({ key: 'CI_RUNNER_TAGS', value: 'docker, linux', public: true }) }
    end

509 510 511 512 513 514 515 516 517 518 519
    context 'when build is for a deployment' do
      let(:deployment_variable) { { key: 'KUBERNETES_TOKEN', value: 'TOKEN', public: false } }

      before do
        build.environment = 'production'
        allow(project).to receive(:deployment_variables).and_return([deployment_variable])
      end

      it { is_expected.to include(deployment_variable) }
    end

520 521 522
    context 'returns variables in valid order' do
      before do
        allow(build).to receive(:predefined_variables) { ['predefined'] }
523 524 525 526
        allow(project).to receive(:predefined_variables) { ['project'] }
        allow(pipeline).to receive(:predefined_variables) { ['pipeline'] }
        allow(build).to receive(:yaml_variables) { ['yaml'] }
        allow(project).to receive(:secret_variables) { ['secret'] }
527
      end
528

529
      it { is_expected.to eq(%w[predefined project pipeline yaml secret]) }
530 531
    end
  end
Kamil Trzcinski's avatar
Kamil Trzcinski committed
532

533 534 535 536 537 538 539 540
  describe '#has_tags?' do
    context 'when build has tags' do
      subject { create(:ci_build, tag_list: ['tag']) }
      it { is_expected.to have_tags }
    end

    context 'when build does not have tags' do
      subject { create(:ci_build, tag_list: []) }
541
      it { is_expected.not_to have_tags }
542 543 544
    end
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
545
  describe '#any_runners_online?' do
546 547 548 549 550 551
    subject { build.any_runners_online? }

    context 'when no runners' do
      it { is_expected.to be_falsey }
    end

552
    context 'when there are runners' do
553
      let(:runner) { create(:ci_runner) }
554 555

      before do
556
        build.project.runners << runner
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
        runner.update_attributes(contacted_at: 1.second.ago)
      end

      it { is_expected.to be_truthy }

      it 'that is inactive' do
        runner.update_attributes(active: false)
        is_expected.to be_falsey
      end

      it 'that is not online' do
        runner.update_attributes(contacted_at: nil)
        is_expected.to be_falsey
      end

      it 'that cannot handle build' do
573
        expect_any_instance_of(Ci::Runner).to receive(:can_pick?).and_return(false)
574 575 576 577 578
        is_expected.to be_falsey
      end
    end
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
579
  describe '#stuck?' do
580
    subject { build.stuck? }
581

582 583 584 585
    context "when commit_status.status is pending" do
      before do
        build.status = 'pending'
      end
586

587
      it { is_expected.to be_truthy }
588

589 590
      context "and there are specific runner" do
        let(:runner) { create(:ci_runner, contacted_at: 1.second.ago) }
591

592 593 594
        before do
          build.project.runners << runner
          runner.save
595
        end
596 597

        it { is_expected.to be_falsey }
598 599 600
      end
    end

601 602
    %w[success failed canceled running].each do |state|
      context "when commit_status.status is #{state}" do
603 604 605
        before do
          build.status = state
        end
606 607 608 609 610

        it { is_expected.to be_falsey }
      end
    end
  end
611

Kamil Trzcinski's avatar
Kamil Trzcinski committed
612
  describe '#artifacts?' do
613 614 615
    subject { build.artifacts? }

    context 'artifacts archive does not exist' do
616 617 618 619
      before do
        build.update_attributes(artifacts_file: nil)
      end

620 621 622 623
      it { is_expected.to be_falsy }
    end

    context 'artifacts archive exists' do
624
      let(:build) { create(:ci_build, :artifacts) }
625
      it { is_expected.to be_truthy }
626 627 628 629 630 631 632 633 634 635

      context 'is expired' do
        before { build.update(artifacts_expire_at: Time.now - 7.days)  }
        it { is_expected.to be_falsy }
      end

      context 'is not expired' do
        before { build.update(artifacts_expire_at: Time.now + 7.days)  }
        it { is_expected.to be_truthy }
      end
636 637 638
    end
  end

639 640 641 642 643
  describe '#artifacts_expired?' do
    subject { build.artifacts_expired? }

    context 'is expired' do
      before { build.update(artifacts_expire_at: Time.now - 7.days)  }
Kamil Trzcinski's avatar
Kamil Trzcinski committed
644 645

      it { is_expected.to be_truthy }
646 647 648 649
    end

    context 'is not expired' do
      before { build.update(artifacts_expire_at: Time.now + 7.days)  }
Kamil Trzcinski's avatar
Kamil Trzcinski committed
650 651

      it { is_expected.to be_falsey }
652 653
    end
  end
654

Kamil Trzcinski's avatar
Kamil Trzcinski committed
655
  describe '#artifacts_metadata?' do
656
    subject { build.artifacts_metadata? }
657
    context 'artifacts metadata does not exist' do
658 659 660
      it { is_expected.to be_falsy }
    end

661
    context 'artifacts archive is a zip file and metadata exists' do
662
      let(:build) { create(:ci_build, :artifacts) }
663 664 665
      it { is_expected.to be_truthy }
    end
  end
Kamil Trzcinski's avatar
Kamil Trzcinski committed
666
  describe '#repo_url' do
667
    let(:build) { create(:ci_build) }
668 669 670 671 672 673 674
    let(:project) { build.project }

    subject { build.repo_url }

    it { is_expected.to be_a(String) }
    it { is_expected.to end_with(".git") }
    it { is_expected.to start_with(project.web_url[0..6]) }
Kamil Trzcinski's avatar
Kamil Trzcinski committed
675
    it { is_expected.to include(build.token) }
676 677 678
    it { is_expected.to include('gitlab-ci-token') }
    it { is_expected.to include(project.web_url[7..-1]) }
  end
679

680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
  describe '#artifacts_expire_in' do
    subject { build.artifacts_expire_in }
    it { is_expected.to be_nil }

    context 'when artifacts_expire_at is specified' do
      let(:expire_at) { Time.now + 7.days }

      before { build.artifacts_expire_at = expire_at }

      it { is_expected.to be_within(5).of(expire_at - Time.now) }
    end
  end

  describe '#artifacts_expire_in=' do
    subject { build.artifacts_expire_in }

    it 'when assigning valid duration' do
      build.artifacts_expire_in = '7 days'
698

699 700 701 702
      is_expected.to be_within(10).of(7.days.to_i)
    end

    it 'when assigning invalid duration' do
703
      expect { build.artifacts_expire_in = '7 elephants' }.to raise_error(ChronicDuration::DurationParseError)
704 705 706 707 708
      is_expected.to be_nil
    end

    it 'when resseting value' do
      build.artifacts_expire_in = nil
709

710 711 712 713 714 715 716 717 718
      is_expected.to be_nil
    end
  end

  describe '#keep_artifacts!' do
    let(:build) { create(:ci_build, artifacts_expire_at: Time.now + 7.days) }

    it 'to reset expire_at' do
      build.keep_artifacts!
719

720 721 722 723
      expect(build.artifacts_expire_at).to be_nil
    end
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
724
  describe '#depends_on_builds' do
725 726 727 728
    let!(:build) { create(:ci_build, pipeline: pipeline, name: 'build', stage_idx: 0, stage: 'build') }
    let!(:rspec_test) { create(:ci_build, pipeline: pipeline, name: 'rspec', stage_idx: 1, stage: 'test') }
    let!(:rubocop_test) { create(:ci_build, pipeline: pipeline, name: 'rubocop', stage_idx: 1, stage: 'test') }
    let!(:staging) { create(:ci_build, pipeline: pipeline, name: 'staging', stage_idx: 2, stage: 'deploy') }
729

730
    it 'expects to have no dependents if this is first build' do
731 732 733
      expect(build.depends_on_builds).to be_empty
    end

734
    it 'expects to have one dependent if this is test' do
735 736 737
      expect(rspec_test.depends_on_builds.map(&:id)).to contain_exactly(build.id)
    end

738
    it 'expects to have all builds from build and test stage if this is last' do
739 740 741
      expect(staging.depends_on_builds.map(&:id)).to contain_exactly(build.id, rspec_test.id, rubocop_test.id)
    end

742
    it 'expects to have retried builds instead the original ones' do
743 744 745 746 747
      retried_rspec = Ci::Build.retry(rspec_test)
      expect(staging.depends_on_builds.map(&:id)).to contain_exactly(build.id, retried_rspec.id, rubocop_test.id)
    end
  end

748 749 750
  def create_mr(build, pipeline, factory: :merge_request, created_at: Time.now)
    create(factory, source_project_id: pipeline.gl_project_id,
                    target_project_id: pipeline.gl_project_id,
751 752
                    source_branch: build.ref,
                    created_at: created_at)
753 754
  end

Kamil Trzcinski's avatar
Kamil Trzcinski committed
755
  describe '#merge_request' do
756
    context 'when a MR has a reference to the pipeline' do
757
      before do
758
        @merge_request = create_mr(build, pipeline, factory: :merge_request)
759

760
        commits = [double(id: pipeline.sha)]
761 762 763 764 765 766 767 768 769
        allow(@merge_request).to receive(:commits).and_return(commits)
        allow(MergeRequest).to receive_message_chain(:includes, :where, :reorder).and_return([@merge_request])
      end

      it 'returns the single associated MR' do
        expect(build.merge_request.id).to eq(@merge_request.id)
      end
    end

770
    context 'when there is not a MR referencing the pipeline' do
771 772 773 774 775
      it 'returns nil' do
        expect(build.merge_request).to be_nil
      end
    end

776
    context 'when more than one MR have a reference to the pipeline' do
777
      before do
778
        @merge_request = create_mr(build, pipeline, factory: :merge_request)
779
        @merge_request.close!
780
        @merge_request2 = create_mr(build, pipeline, factory: :merge_request)
781

782
        commits = [double(id: pipeline.sha)]
783 784 785 786 787 788 789 790 791 792 793 794
        allow(@merge_request).to receive(:commits).and_return(commits)
        allow(@merge_request2).to receive(:commits).and_return(commits)
        allow(MergeRequest).to receive_message_chain(:includes, :where, :reorder).and_return([@merge_request, @merge_request2])
      end

      it 'returns the first MR' do
        expect(build.merge_request.id).to eq(@merge_request.id)
      end
    end

    context 'when a Build is created after the MR' do
      before do
795 796 797
        @merge_request = create_mr(build, pipeline, factory: :merge_request_with_diffs)
        pipeline2 = create(:ci_pipeline, project: project)
        @build2 = create(:ci_build, pipeline: pipeline2)
798

799 800
        allow(@merge_request).to receive(:commits_sha).
          and_return([pipeline.sha, pipeline2.sha])
801 802 803 804 805 806 807 808
        allow(MergeRequest).to receive_message_chain(:includes, :where, :reorder).and_return([@merge_request])
      end

      it 'returns the current MR' do
        expect(@build2.merge_request.id).to eq(@merge_request.id)
      end
    end
  end
809 810 811

  describe 'build erasable' do
    shared_examples 'erasable' do
812
      it 'removes artifact file' do
813 814 815
        expect(build.artifacts_file.exists?).to be_falsy
      end

816
      it 'removes artifact metadata file' do
817 818 819
        expect(build.artifacts_metadata.exists?).to be_falsy
      end

820
      it 'erases build trace in trace file' do
821 822 823
        expect(build.trace).to be_empty
      end

824
      it 'sets erased to true' do
825 826 827
        expect(build.erased?).to be true
      end

828
      it 'sets erase date' do
829
        expect(build.erased_at).not_to be_falsy
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
      end
    end

    context 'build is not erasable' do
      let!(:build) { create(:ci_build) }

      describe '#erase' do
        subject { build.erase }

        it { is_expected.to be false }
      end

      describe '#erasable?' do
        subject { build.erasable? }
        it { is_expected.to eq false }
      end
    end

    context 'build is erasable' do
Kamil Trzcinski's avatar
Kamil Trzcinski committed
849
      let!(:build) { create(:ci_build, :trace, :success, :artifacts) }
850 851

      describe '#erase' do
852 853 854
        before do
          build.erase(erased_by: user)
        end
855 856 857 858 859 860

        context 'erased by user' do
          let!(:user) { create(:user, username: 'eraser') }

          include_examples 'erasable'

861
          it 'records user who erased a build' do
862 863 864 865 866 867 868 869 870
            expect(build.erased_by).to eq user
          end
        end

        context 'erased by system' do
          let(:user) { nil }

          include_examples 'erasable'

871
          it 'does not set user who erased a build' do
872 873 874 875 876 877 878
            expect(build.erased_by).to be_nil
          end
        end
      end

      describe '#erasable?' do
        subject { build.erasable? }
879
        it { is_expected.to be_truthy }
880 881 882
      end

      describe '#erased?' do
Kamil Trzcinski's avatar
Kamil Trzcinski committed
883
        let!(:build) { create(:ci_build, :trace, :success, :artifacts) }
884 885 886
        subject { build.erased? }

        context 'build has not been erased' do
887
          it { is_expected.to be_falsey }
888 889 890
        end

        context 'build has been erased' do
891 892 893
          before do
            build.erase
          end
894

895
          it { is_expected.to be_truthy }
896 897 898 899 900
        end
      end

      context 'metadata and build trace are not available' do
        let!(:build) { create(:ci_build, :success, :artifacts) }
901

902 903 904
        before do
          build.remove_artifacts_metadata!
        end
905 906

        describe '#erase' do
907
          it 'does not raise error' do
908
            expect { build.erase }.not_to raise_error
909 910 911 912 913
          end
        end
      end
    end
  end
914 915 916 917 918 919

  describe '#commit' do
    it 'returns commit pipeline has been created for' do
      expect(build.commit).to eq project.commit
    end
  end
920

921 922 923
  describe '#when' do
    subject { build.when }

924
    context 'when `when` is undefined' do
925 926 927 928 929 930 931 932 933
      before do
        build.when = nil
      end

      context 'use from gitlab-ci.yml' do
        before do
          stub_ci_pipeline_yaml_file(config)
        end

934
        context 'when config is not found' do
935 936 937 938 939
          let(:config) { nil }

          it { is_expected.to eq('on_success') }
        end

940
        context 'when config does not have a questioned job' do
941 942 943 944 945 946 947 948 949 950 951
          let(:config) do
            YAML.dump({
                        test_other: {
                          script: 'Hello World'
                        }
                      })
          end

          it { is_expected.to eq('on_success') }
        end

952
        context 'when config has `when`' do
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
          let(:config) do
            YAML.dump({
                        test: {
                          script: 'Hello World',
                          when: 'always'
                        }
                      })
          end

          it { is_expected.to eq('always') }
        end
      end
    end
  end

968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
  describe '#cancelable?' do
    subject { build }

    context 'when build is cancelable' do
      context 'when build is pending' do
        it { is_expected.to be_cancelable }
      end

      context 'when build is running' do
        before do
          build.run!
        end

        it { is_expected.to be_cancelable }
      end
    end

    context 'when build is not cancelable' do
      context 'when build is successful' do
        before do
          build.success!
        end

        it { is_expected.not_to be_cancelable }
      end

      context 'when build is failed' do
        before do
          build.drop!
        end

        it { is_expected.not_to be_cancelable }
      end
    end
  end

1004
  describe '#retryable?' do
1005 1006 1007 1008 1009 1010 1011 1012 1013
    subject { build }

    context 'when build is retryable' do
      context 'when build is successful' do
        before do
          build.success!
        end

        it { is_expected.to be_retryable }
Lin Jen-Shin's avatar
Lin Jen-Shin committed
1014
      end
1015

1016 1017 1018 1019 1020 1021 1022
      context 'when build is failed' do
        before do
          build.drop!
        end

        it { is_expected.to be_retryable }
      end
1023 1024 1025 1026 1027 1028 1029 1030

      context 'when build is canceled' do
        before do
          build.cancel!
        end

        it { is_expected.to be_retryable }
      end
1031 1032
    end

1033 1034 1035 1036 1037 1038 1039
    context 'when build is not retryable' do
      context 'when build is running' do
        before do
          build.run!
        end

        it { is_expected.not_to be_retryable }
1040 1041
      end

1042 1043 1044 1045 1046 1047 1048
      context 'when build is skipped' do
        before do
          build.skip!
        end

        it { is_expected.not_to be_retryable }
      end
1049 1050 1051
    end
  end

1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
  describe '#manual?' do
    before do
      build.update(when: value)
    end

    subject { build.manual? }

    context 'when is set to manual' do
      let(:value) { 'manual' }

      it { is_expected.to be_truthy }
    end

    context 'when set to something else' do
      let(:value) { 'something else' }

      it { is_expected.to be_falsey }
    end
  end

  describe '#other_actions' do
    let(:build) { create(:ci_build, :manual, pipeline: pipeline) }
    let!(:other_build) { create(:ci_build, :manual, pipeline: pipeline, name: 'other action') }

    subject { build.other_actions }

    it 'returns other actions' do
      is_expected.to contain_exactly(other_build)
    end
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096

    context 'when build is retried' do
      let!(:new_build) { Ci::Build.retry(build) }

      it 'does not return any of them' do
        is_expected.not_to include(build, new_build)
      end
    end

    context 'when other build is retried' do
      let!(:retried_build) { Ci::Build.retry(other_build) }

      it 'returns a retried build' do
        is_expected.to contain_exactly(retried_build)
      end
    end
1097 1098 1099 1100 1101 1102 1103
  end

  describe '#play' do
    let(:build) { create(:ci_build, :manual, pipeline: pipeline) }

    subject { build.play }

1104
    it 'enqueues a build' do
1105 1106 1107 1108
      is_expected.to be_pending
      is_expected.to eq(build)
    end

1109 1110
    context 'for successful build' do
      before do
Kamil Trzcinski's avatar
Kamil Trzcinski committed
1111
        build.update(status: 'success')
1112
      end
1113 1114 1115 1116 1117 1118 1119

      it 'creates a new build' do
        is_expected.to be_pending
        is_expected.not_to eq(build)
      end
    end
  end
1120 1121 1122 1123

  describe '#when' do
    subject { build.when }

1124
    context 'when `when` is undefined' do
1125 1126 1127 1128 1129 1130 1131 1132 1133
      before do
        build.when = nil
      end

      context 'use from gitlab-ci.yml' do
        before do
          stub_ci_pipeline_yaml_file(config)
        end

1134
        context 'when config is not found' do
1135 1136 1137 1138 1139
          let(:config) { nil }

          it { is_expected.to eq('on_success') }
        end

1140
        context 'when config does not have a questioned job' do
1141 1142
          let(:config) do
            YAML.dump({
1143 1144 1145 1146
                        test_other: {
                          script: 'Hello World'
                        }
                      })
1147 1148 1149 1150 1151
          end

          it { is_expected.to eq('on_success') }
        end

1152
        context 'when config has when' do
1153 1154
          let(:config) do
            YAML.dump({
1155 1156 1157 1158 1159
                        test: {
                          script: 'Hello World',
                          when: 'always'
                        }
                      })
1160 1161 1162 1163 1164 1165 1166
          end

          it { is_expected.to eq('always') }
        end
      end
    end
  end
1167 1168 1169 1170 1171

  describe '#retryable?' do
    context 'when build is running' do
      before { build.run! }

1172
      it 'returns false' do
1173
        expect(build).not_to be_retryable
1174 1175 1176 1177
      end
    end

    context 'when build is finished' do
Lin Jen-Shin's avatar
Lin Jen-Shin committed
1178 1179 1180
      before do
        build.success!
      end
1181

1182
      it 'returns true' do
1183
        expect(build).to be_retryable
1184 1185 1186
      end
    end
  end
1187

1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
  describe '#has_environment?' do
    subject { build.has_environment? }

    context 'when environment is defined' do
      before do
        build.update(environment: 'review')
      end

      it { is_expected.to be_truthy }
    end

    context 'when environment is not defined' do
      before do
        build.update(environment: nil)
      end

      it { is_expected.to be_falsey }
    end
  end

1208 1209 1210 1211 1212 1213 1214 1215
  describe '#starts_environment?' do
    subject { build.starts_environment? }

    context 'when environment is defined' do
      before do
        build.update(environment: 'review')
      end

1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
      context 'no action is defined' do
        it { is_expected.to be_truthy }
      end

      context 'and start action is defined' do
        before do
          build.update(options: { environment: { action: 'start' } } )
        end

        it { is_expected.to be_truthy }
      end
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
    end

    context 'when environment is not defined' do
      before do
        build.update(environment: nil)
      end

      it { is_expected.to be_falsey }
    end
  end

  describe '#stops_environment?' do
    subject { build.stops_environment? }

    context 'when environment is defined' do
      before do
        build.update(environment: 'review')
      end

      context 'no action is defined' do
        it { is_expected.to be_falsey }
      end

      context 'and stop action is defined' do
        before do
          build.update(options: { environment: { action: 'stop' } } )
        end

        it { is_expected.to be_truthy }
      end
    end

    context 'when environment is not defined' do
      before do
        build.update(environment: nil)
      end

      it { is_expected.to be_falsey }
    end
  end

  describe '#last_deployment' do
    subject { build.last_deployment }

1271
    context 'when multiple deployments are created' do
1272 1273 1274
      let!(:deployment1) { create(:deployment, deployable: build) }
      let!(:deployment2) { create(:deployment, deployable: build) }

1275 1276 1277
      it 'returns the latest one' do
        is_expected.to eq(deployment2)
      end
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
    end
  end

  describe '#outdated_deployment?' do
    subject { build.outdated_deployment? }

    context 'when build succeeded' do
      let(:build) { create(:ci_build, :success) }
      let!(:deployment) { create(:deployment, deployable: build) }

      context 'current deployment is latest' do
        it { is_expected.to be_falsey }
      end

      context 'current deployment is not latest on environment' do
        let!(:deployment2) { create(:deployment, environment: deployment.environment) }

        it { is_expected.to be_truthy }
      end
    end

    context 'when build failed' do
      let(:build) { create(:ci_build, :failed) }

      it { is_expected.to be_falsey }
    end
  end

  describe '#expanded_environment_name' do
    subject { build.expanded_environment_name }

    context 'when environment uses variables' do
      let(:build) { create(:ci_build, ref: 'master', environment: 'review/$CI_BUILD_REF_NAME') }

      it { is_expected.to eq('review/master') }
    end
  end
1315 1316 1317 1318 1319 1320 1321 1322 1323

  describe '#detailed_status' do
    let(:user) { create(:user) }

    it 'returns a detailed status' do
      expect(build.detailed_status(user))
        .to be_a Gitlab::Ci::Status::Build::Cancelable
    end
  end
1324
end