summaryrefslogtreecommitdiff
path: root/spec/models/ci/web_hook_spec.rb
blob: 2865482a2120b35bc15654b48f3194e812654f57 (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
# == Schema Information
#
# Table name: ci_web_hooks
#
#  id         :integer          not null, primary key
#  url        :string(255)      not null
#  project_id :integer          not null
#  created_at :datetime
#  updated_at :datetime
#

require 'spec_helper'

describe Ci::WebHook do
  describe "Associations" do
    it { is_expected.to belong_to :project }
  end

  describe "Validations" do
    it { is_expected.to validate_presence_of(:url) }

    context "url format" do
      it { is_expected.to allow_value("http://example.com").for(:url) }
      it { is_expected.to allow_value("https://excample.com").for(:url) }
      it { is_expected.to allow_value("http://test.com/api").for(:url) }
      it { is_expected.to allow_value("http://test.com/api?key=abc").for(:url) }
      it { is_expected.to allow_value("http://test.com/api?key=abc&type=def").for(:url) }

      it { is_expected.not_to allow_value("example.com").for(:url) }
      it { is_expected.not_to allow_value("ftp://example.com").for(:url) }
      it { is_expected.not_to allow_value("herp-and-derp").for(:url) }
    end
  end

  describe "execute" do
    before(:each) do
      @web_hook = FactoryGirl.create(:ci_web_hook)
      @project = @web_hook.project
      @data = { before: 'oldrev', after: 'newrev', ref: 'ref' }

      WebMock.stub_request(:post, @web_hook.url)
    end

    it "POSTs to the web hook URL" do
      @web_hook.execute(@data)
      expect(WebMock).to have_requested(:post, @web_hook.url).once
    end

    it "POSTs the data as JSON" do
      json = @data.to_json

      @web_hook.execute(@data)
      expect(WebMock).to have_requested(:post, @web_hook.url).with(body: json).once
    end

    it "catches exceptions" do
      expect(Ci::WebHook).to receive(:post).and_raise("Some HTTP Post error")

      expect{ @web_hook.execute(@data) }.
        to raise_error(RuntimeError, 'Some HTTP Post error')
    end
  end
end