2013-11-21 07:18:02 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2014-04-11 07:31:37 -04:00
|
|
|
describe AssemblaService, models: true do
|
2013-11-21 07:18:02 -05:00
|
|
|
describe "Associations" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to :project }
|
|
|
|
it { is_expected.to have_one :service_hook }
|
2013-11-21 07:18:02 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Execute" do
|
|
|
|
let(:user) { create(:user) }
|
2014-01-22 14:03:52 -05:00
|
|
|
let(:project) { create(:project) }
|
2013-11-21 07:18:02 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
@assembla_service = AssemblaService.new
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(@assembla_service).to receive_messages(
|
2013-11-21 07:18:02 -05:00
|
|
|
project_id: project.id,
|
|
|
|
project: project,
|
|
|
|
service_hook: true,
|
2014-01-24 02:42:24 -05:00
|
|
|
token: 'verySecret',
|
|
|
|
subdomain: 'project_name'
|
2013-11-21 07:18:02 -05:00
|
|
|
)
|
2016-08-12 04:09:29 -04:00
|
|
|
@sample_data = Gitlab::DataBuilder::Push.build_sample(project, user)
|
2014-01-24 02:42:24 -05:00
|
|
|
@api_url = 'https://atlas.assembla.com/spaces/project_name/github_tool?secret_key=verySecret'
|
2013-11-21 07:18:02 -05:00
|
|
|
WebMock.stub_request(:post, @api_url)
|
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "calls Assembla API" do
|
2013-11-21 07:18:02 -05:00
|
|
|
@assembla_service.execute(@sample_data)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(WebMock).to have_requested(:post, @api_url).with(
|
2013-11-21 07:18:02 -05:00
|
|
|
body: /#{@sample_data[:before]}.*#{@sample_data[:after]}.*#{project.path}/
|
|
|
|
).once
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|