blob: daafb1b395820e9f4bf317befd8ac3c681b4d8e7 (
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
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Integrations::Flowdock do
describe 'Validations' do
context 'when integration is active' do
before do
subject.active = true
end
it { is_expected.to validate_presence_of(:token) }
end
context 'when integration is inactive' do
before do
subject.active = false
end
it { is_expected.not_to validate_presence_of(:token) }
end
end
describe "Execute" do
let(:user) { create(:user) }
let(:project) { create(:project, :repository) }
let(:sample_data) { Gitlab::DataBuilder::Push.build_sample(project, user) }
let(:api_url) { 'https://api.flowdock.com/v1/messages' }
subject(:flowdock_integration) { described_class.new }
before do
allow(flowdock_integration).to receive_messages(
project_id: project.id,
project: project,
token: 'verySecret'
)
WebMock.stub_request(:post, api_url)
end
it "calls FlowDock API" do
flowdock_integration.execute(sample_data)
sample_data[:commits].each do |commit|
# One request to Flowdock per new commit
next if commit[:id] == sample_data[:before]
expect(WebMock).to have_requested(:post, api_url).with(
body: /#{commit[:id]}.*#{project.path}/
).once
end
end
end
end
|