Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hip_chat_message_spec.rb « project_services « ci « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d54b6cf84c283bfafec2d90255fa80a2b7e485c (plain)
1
2
3
4
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
require 'spec_helper'

describe Ci::HipChatMessage, models: true do
  subject { Ci::HipChatMessage.new(build) }

  let(:commit) { FactoryGirl.create(:ci_commit_with_two_jobs) }

  let(:build) do
    commit.builds.first
  end

  context 'when all matrix builds succeed' do
    it 'returns a successful message' do
      commit.create_builds('master', false, nil)
      commit.builds.update_all(status: "success")
      commit.reload

      expect(subject.status_color).to eq 'green'
      expect(subject.notify?).to be_falsey
      expect(subject.to_s).to match(/Commit #\d+/)
      expect(subject.to_s).to match(/Successful in \d+ second\(s\)\./)
    end
  end

  context 'when at least one matrix build fails' do
    it 'returns a failure message' do
      commit.create_builds('master', false, nil)
      first_build = commit.builds.first
      second_build = commit.builds.last
      first_build.update(status: "success")
      second_build.update(status: "failed")

      expect(subject.status_color).to eq 'red'
      expect(subject.notify?).to be_truthy
      expect(subject.to_s).to match(/Commit #\d+/)
      expect(subject.to_s).to match(/Failed in \d+ second\(s\)\./)
    end
  end
end