BigW Consortium Gitlab

commit_status_spec.rb 8.05 KB
Newer Older
1 2
require 'spec_helper'

Douwe Maan committed
3
describe CommitStatus, models: true do
4 5 6 7 8 9
  let(:project) { create(:project) }

  let(:pipeline) do
    create(:ci_pipeline, project: project, sha: project.commit.id)
  end

10 11 12 13 14
  let(:commit_status) { create_status }

  def create_status(args = {})
    create(:commit_status, args.merge(pipeline: pipeline))
  end
15

16
  it { is_expected.to belong_to(:pipeline) }
17
  it { is_expected.to belong_to(:user) }
Kamil Trzcinski committed
18 19
  it { is_expected.to belong_to(:project) }

20 21 22
  it { is_expected.to validate_presence_of(:name) }
  it { is_expected.to validate_inclusion_of(:status).in_array(%w(pending running failed success canceled)) }

23 24
  it { is_expected.to delegate_method(:sha).to(:pipeline) }
  it { is_expected.to delegate_method(:short_sha).to(:pipeline) }
25

26 27 28 29 30
  it { is_expected.to respond_to :success? }
  it { is_expected.to respond_to :failed? }
  it { is_expected.to respond_to :running? }
  it { is_expected.to respond_to :pending? }

31
  describe '#author' do
32 33 34 35 36 37
    subject { commit_status.author }
    before { commit_status.author = User.new }

    it { is_expected.to eq(commit_status.user) }
  end

38
  describe '#started?' do
39 40 41 42 43 44 45 46
    subject { commit_status.started? }

    context 'without started_at' do
      before { commit_status.started_at = nil }

      it { is_expected.to be_falsey }
    end

Lin Jen-Shin committed
47
    %w[running success failed].each do |status|
48 49 50 51 52 53 54
      context "if commit status is #{status}" do
        before { commit_status.status = status }

        it { is_expected.to be_truthy }
      end
    end

Lin Jen-Shin committed
55
    %w[pending canceled].each do |status|
56 57 58 59 60 61 62 63
      context "if commit status is #{status}" do
        before { commit_status.status = status }

        it { is_expected.to be_falsey }
      end
    end
  end

64
  describe '#active?' do
65 66
    subject { commit_status.active? }

Lin Jen-Shin committed
67
    %w[pending running].each do |state|
68 69 70 71 72 73 74
      context "if commit_status.status is #{state}" do
        before { commit_status.status = state }

        it { is_expected.to be_truthy }
      end
    end

Lin Jen-Shin committed
75
    %w[success failed canceled].each do |state|
76 77 78 79 80 81 82 83
      context "if commit_status.status is #{state}" do
        before { commit_status.status = state }

        it { is_expected.to be_falsey }
      end
    end
  end

84
  describe '#complete?' do
85 86
    subject { commit_status.complete? }

Lin Jen-Shin committed
87
    %w[success failed canceled].each do |state|
88 89 90 91 92 93 94
      context "if commit_status.status is #{state}" do
        before { commit_status.status = state }

        it { is_expected.to be_truthy }
      end
    end

Lin Jen-Shin committed
95
    %w[pending running].each do |state|
96 97 98 99 100 101 102 103
      context "if commit_status.status is #{state}" do
        before { commit_status.status = state }

        it { is_expected.to be_falsey }
      end
    end
  end

104
  describe '#duration' do
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
    subject { commit_status.duration }

    it { is_expected.to eq(120.0) }

    context 'if the building process has not started yet' do
      before do
        commit_status.started_at = nil
        commit_status.finished_at = nil
      end

      it { is_expected.to be_nil }
    end

    context 'if the building process has started' do
      before do
        commit_status.started_at = Time.now - 1.minute
        commit_status.finished_at = nil
      end

      it { is_expected.to be_a(Float) }
      it { is_expected.to be > 0.0 }
    end
  end
128

129
  describe '.latest' do
130 131
    subject { CommitStatus.latest.order(:id) }

132 133 134 135 136 137
    let(:statuses) do
      [create_status(name: 'aa', ref: 'bb', status: 'running'),
       create_status(name: 'cc', ref: 'cc', status: 'pending'),
       create_status(name: 'aa', ref: 'cc', status: 'success'),
       create_status(name: 'cc', ref: 'bb', status: 'success'),
       create_status(name: 'aa', ref: 'bb', status: 'success')]
138 139
    end

140
    it 'returns unique statuses' do
141
      is_expected.to eq(statuses.values_at(3, 4))
142 143 144
    end
  end

145
  describe '.running_or_pending' do
146 147
    subject { CommitStatus.running_or_pending.order(:id) }

148 149 150 151 152 153
    let(:statuses) do
      [create_status(name: 'aa', ref: 'bb', status: 'running'),
       create_status(name: 'cc', ref: 'cc', status: 'pending'),
       create_status(name: 'aa', ref: nil, status: 'success'),
       create_status(name: 'dd', ref: nil, status: 'failed'),
       create_status(name: 'ee', ref: nil, status: 'canceled')]
154 155
    end

156
    it 'returns statuses that are running or pending' do
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
      is_expected.to eq(statuses.values_at(0, 1))
    end
  end

  describe '.exclude_ignored' do
    subject { CommitStatus.exclude_ignored.order(:id) }

    let(:statuses) do
      [create_status(when: 'manual', status: 'skipped'),
       create_status(when: 'manual', status: 'success'),
       create_status(when: 'manual', status: 'failed'),
       create_status(when: 'on_failure', status: 'skipped'),
       create_status(when: 'on_failure', status: 'success'),
       create_status(when: 'on_failure', status: 'failed'),
       create_status(allow_failure: true, status: 'success'),
       create_status(allow_failure: true, status: 'failed'),
       create_status(allow_failure: false, status: 'success'),
       create_status(allow_failure: false, status: 'failed')]
    end

    it 'returns statuses without what we want to ignore' do
      is_expected.to eq(statuses.values_at(1, 2, 4, 5, 6, 8, 9))
179 180
    end
  end
181 182 183 184

  describe '#before_sha' do
    subject { commit_status.before_sha }

185 186
    context 'when no before_sha is set for pipeline' do
      before { pipeline.before_sha = nil }
187

188
      it 'returns blank sha' do
189 190 191 192
        is_expected.to eq(Gitlab::Git::BLANK_SHA)
      end
    end

193
    context 'for before_sha set for pipeline' do
194
      let(:value) { '1234' }
195
      before { pipeline.before_sha = value }
196

197
      it 'returns the set value' do
198 199 200 201 202 203 204
        is_expected.to eq(value)
      end
    end
  end

  describe '#stages' do
    before do
205 206 207 208
      create :commit_status, pipeline: pipeline, stage: 'build', name: 'linux', stage_idx: 0, status: 'success'
      create :commit_status, pipeline: pipeline, stage: 'build', name: 'mac', stage_idx: 0, status: 'failed'
      create :commit_status, pipeline: pipeline, stage: 'deploy', name: 'staging', stage_idx: 2, status: 'running'
      create :commit_status, pipeline: pipeline, stage: 'test', name: 'rspec', stage_idx: 1, status: 'success'
209 210 211
    end

    context 'stages list' do
212
      subject { CommitStatus.where(pipeline: pipeline).stages }
213

214
      it 'returns ordered list of stages' do
Lin Jen-Shin committed
215
        is_expected.to eq(%w[build test deploy])
216 217 218 219
      end
    end

    context 'stages with statuses' do
220
      subject { CommitStatus.where(pipeline: pipeline).latest.stages_status }
221

222
      it 'returns list of stages with statuses' do
223 224 225 226 227 228
        is_expected.to eq({
          'build' => 'failed',
          'test' => 'success',
          'deploy' => 'running'
        })
      end
229 230 231 232 233 234 235 236 237 238 239 240 241 242

      context 'when build is retried' do
        before do
          create :commit_status, pipeline: pipeline, stage: 'build', name: 'mac', stage_idx: 0, status: 'success'
        end

        it 'ignores a previous state' do
          is_expected.to eq({
            'build' => 'success',
            'test' => 'success',
            'deploy' => 'running'
          })
        end
      end
243 244
    end
  end
245 246 247 248 249 250

  describe '#commit' do
    it 'returns commit pipeline has been created for' do
      expect(commit_status.commit).to eq project.commit
    end
  end
Kamil Trzcinski committed
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267

  describe '#group_name' do
    subject { commit_status.group_name }

    tests = {
      'rspec:windows' => 'rspec:windows',
      'rspec:windows 0' => 'rspec:windows 0',
      'rspec:windows 0 test' => 'rspec:windows 0 test',
      'rspec:windows 0 1' => 'rspec:windows',
      'rspec:windows 0 1 name' => 'rspec:windows name',
      'rspec:windows 0/1' => 'rspec:windows',
      'rspec:windows 0/1 name' => 'rspec:windows name',
      'rspec:windows 0:1' => 'rspec:windows',
      'rspec:windows 0:1 name' => 'rspec:windows name',
      'rspec:windows 10000 20000' => 'rspec:windows',
      'rspec:windows 0 : / 1' => 'rspec:windows',
      'rspec:windows 0 : / 1 name' => 'rspec:windows name',
268 269
      '0 1 name ruby' => 'name ruby',
      '0 :/ 1 name ruby' => 'name ruby'
Kamil Trzcinski committed
270 271 272 273 274 275 276 277 278 279
    }

    tests.each do |name, group_name|
      it "'#{name}' puts in '#{group_name}'" do
        commit_status.name = name

        is_expected.to eq(group_name)
      end
    end
  end
280
end