summaryrefslogtreecommitdiff
path: root/spec/models/project_services/hip_chat_service_spec.rb
blob: baaecfd9bfdbbdede0c1dd2329f0c8e0e65e3422 (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
40
41
42
43
44
45
46
47
48
49
50
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
# == Schema Information
#
# Table name: services
#
#  id         :integer          not null, primary key
#  type       :string(255)
#  title      :string(255)
#  project_id :integer          not null
#  created_at :datetime
#  updated_at :datetime
#  active     :boolean          default(FALSE), not null
#  properties :text
#


require 'spec_helper'

describe HipChatService do

  describe "Validations" do

    context "active" do
      before do
        subject.active = true
      end

      it { should validate_presence_of :hipchat_room }
      it { should validate_presence_of :hipchat_token }

    end
  end

  describe "Execute" do

    let(:service) { described_class.new }
    let(:project) { FactoryGirl.create :project }
    let(:commit)  { FactoryGirl.create :commit, project: project }
    let(:build)   { FactoryGirl.create :build, commit: commit, status: 'failed' }
    let(:api_url) { 'https://api.hipchat.com/v2/room/123/notification?auth_token=a1b2c3d4e5f6' }

    before do
      allow(service).to receive_messages(
        project: project,
        project_id: project.id,
        notify_only_broken_builds: false,
        hipchat_room: 123,
        hipchat_token: 'a1b2c3d4e5f6'
      )

      WebMock.stub_request(:post, api_url)
    end


    it "should call the HipChat API" do
      service.execute(build)
      HipChatNotifierWorker.drain

      expect( WebMock ).to have_requested(:post, api_url).once
    end

    it "calls the worker with expected arguments" do
      expect( HipChatNotifierWorker ).to receive(:perform_async) \
        .with(an_instance_of(String), hash_including(
          token: 'a1b2c3d4e5f6',
          room: 123,
          server: 'https://api.hipchat.com',
          color: 'red',
          notify: true
        ))

      service.execute(build)
    end
  end
end