summaryrefslogtreecommitdiff
path: root/spec/models/project_services/builds_email_service_spec.rb
blob: 905379a64e368c2e7df9896df3d7ad36269ac0da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'spec_helper'

describe BuildsEmailService do
  let(:build) { create(:ci_build) }
  let(:data) { Gitlab::BuildDataBuilder.build(build) }
  let(:service) { BuildsEmailService.new }

  describe :execute do
    it "sends email" do
      service.recipients = 'test@gitlab.com'
      data[:build_status] = 'failed'
      expect(BuildEmailWorker).to receive(:perform_async)
      service.execute(data)
    end

    it "does not sends email with failed build and allowed_failure on" do
      data[:build_status] = 'failed'
      data[:build_allow_failure] = true
      expect(BuildEmailWorker).not_to receive(:perform_async)
      service.execute(data)
    end
  end
end