BigW Consortium Gitlab

step_spec.rb 2 KB
Newer Older
1 2 3 4
require 'spec_helper'

describe Gitlab::Ci::Build::Step do
  describe '#from_commands' do
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    shared_examples 'has correct script' do
      subject { described_class.from_commands(job) }

      it 'fabricates an object' do
        expect(subject.name).to eq(:script)
        expect(subject.script).to eq(script)
        expect(subject.timeout).to eq(job.timeout)
        expect(subject.when).to eq('on_success')
        expect(subject.allow_failure).to be_falsey
      end
    end

    context 'when commands are specified' do
      it_behaves_like 'has correct script' do
        let(:job) { create(:ci_build, :no_options, commands: "ls -la\ndate") }
        let(:script) { ['ls -la', 'date'] }
      end
    end

    context 'when script option is specified' do
      it_behaves_like 'has correct script' do
        let(:job) { create(:ci_build, :no_options, options: { script: ["ls -la\necho aaa", "date"] }) }
        let(:script) { ["ls -la\necho aaa", 'date'] }
      end
    end

    context 'when before and script option is specified' do
      it_behaves_like 'has correct script' do
        let(:job) do
          create(:ci_build, options: {
            before_script: ["ls -la\necho aaa"],
            script: ["date"]
          })
        end

        let(:script) { ["ls -la\necho aaa", 'date'] }
      end
42
    end
43 44 45
  end

  describe '#from_after_script' do
46 47
    let(:job) { create(:ci_build) }

48 49 50
    subject { described_class.from_after_script(job) }

    context 'when after_script is empty' do
51 52 53
      it 'doesn not fabricate an object' do
        is_expected.to be_nil
      end
54 55 56
    end

    context 'when after_script is not empty' do
57
      let(:job) { create(:ci_build, options: { after_script: ['ls -la', 'date'] }) }
58

59 60 61 62 63 64 65
      it 'fabricates an object' do
        expect(subject.name).to eq(:after_script)
        expect(subject.script).to eq(['ls -la', 'date'])
        expect(subject.timeout).to eq(job.timeout)
        expect(subject.when).to eq('always')
        expect(subject.allow_failure).to be_truthy
      end
66 67
    end
  end
Tomasz Maczukin committed
68
end