debian-mirror-gitlab/spec/models/project_services/flowdock_service_spec.rb

59 lines
1.5 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe FlowdockService do
2015-04-26 12:48:37 +05:30
describe "Associations" do
it { is_expected.to belong_to :project }
it { is_expected.to have_one :service_hook }
end
2016-06-02 11:05:42 +05:30
describe 'Validations' do
context 'when service is active' do
2017-09-10 17:25:29 +05:30
before do
subject.active = true
end
2016-06-02 11:05:42 +05:30
it { is_expected.to validate_presence_of(:token) }
end
context 'when service is inactive' do
2017-09-10 17:25:29 +05:30
before do
subject.active = false
end
2016-06-02 11:05:42 +05:30
it { is_expected.not_to validate_presence_of(:token) }
end
end
2015-04-26 12:48:37 +05:30
describe "Execute" do
let(:user) { create(:user) }
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2015-04-26 12:48:37 +05:30
before do
2017-09-10 17:25:29 +05:30
@flowdock_service = described_class.new
2015-09-11 14:41:01 +05:30
allow(@flowdock_service).to receive_messages(
2015-04-26 12:48:37 +05:30
project_id: project.id,
project: project,
service_hook: true,
token: 'verySecret'
)
2016-09-13 17:45:13 +05:30
@sample_data = Gitlab::DataBuilder::Push.build_sample(project, user)
2015-09-11 14:41:01 +05:30
@api_url = 'https://api.flowdock.com/v1/messages'
2015-04-26 12:48:37 +05:30
WebMock.stub_request(:post, @api_url)
end
2016-09-13 17:45:13 +05:30
it "calls FlowDock API" do
2015-04-26 12:48:37 +05:30
@flowdock_service.execute(@sample_data)
2015-09-11 14:41:01 +05:30
@sample_data[:commits].each do |commit|
# One request to Flowdock per new commit
next if commit[:id] == @sample_data[:before]
2018-03-17 18:26:18 +05:30
2015-09-11 14:41:01 +05:30
expect(WebMock).to have_requested(:post, @api_url).with(
body: /#{commit[:id]}.*#{project.path}/
).once
end
2015-04-26 12:48:37 +05:30
end
end
end