BigW Consortium Gitlab

deployment_spec.rb 2.96 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
require 'spec_helper'

describe Deployment, models: true 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) }
14
  it { is_expected.to delegate_method(:manual_actions).to(:deployable).as(:try) }
15 16 17

  it { is_expected.to validate_presence_of(:ref) }
  it { is_expected.to validate_presence_of(:sha) }
Z.J. van de Weg committed
18

19
  describe '#includes_commit?' do
20
    let(:project)     { create(:project, :repository) }
Z.J. van de Weg committed
21 22
    let(:environment) { create(:environment, project: project) }
    let(:deployment) do
23
      create(:deployment, environment: environment, sha: project.commit.id)
Z.J. van de Weg committed
24 25 26 27
    end

    context 'when there is no project commit' do
      it 'returns false' do
28 29 30
        commit = project.commit('feature')

        expect(deployment.includes_commit?(commit)).to be false
Z.J. van de Weg committed
31 32 33 34 35
      end
    end

    context 'when they share the same tree branch' do
      it 'returns true' do
36 37 38
        commit = project.commit

        expect(deployment.includes_commit?(commit)).to be true
Z.J. van de Weg committed
39 40
      end
    end
41 42 43 44 45 46 47 48 49

    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.J. van de Weg committed
50
  end
Kamil Trzcinski committed
51 52 53 54 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

  describe '#stop_action' do
    let(:build) { create(:ci_build) }

    subject { deployment.stop_action }

    context 'when no other actions' do
      let(:deployment) { FactoryGirl.build(:deployment, deployable: build) }

      it { is_expected.to be_nil }
    end

    context 'with other actions' do
      let!(:close_action) { create(:ci_build, pipeline: build.pipeline, name: 'close_app', when: :manual) }

      context 'when matching action is defined' do
        let(:deployment) { FactoryGirl.build(:deployment, deployable: build, on_stop: 'close_other_app') }

        it { is_expected.to be_nil }
      end

      context 'when no matching action is defined' do
        let(:deployment) { FactoryGirl.build(:deployment, deployable: build, on_stop: 'close_app') }

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

Kamil Trzcinski committed
80 81
  describe '#stop_action?' do
    subject { deployment.stop_action? }
Kamil Trzcinski committed
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

    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) }
      let(:deployment) { FactoryGirl.build(:deployment, deployable: build, on_stop: 'close_app') }
      let!(:close_action) { create(:ci_build, pipeline: build.pipeline, name: 'close_app', when: :manual) }

      it { is_expected.to be_truthy }
    end
  end
97
end