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

88 lines
2.8 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe CampfireService do
2019-06-05 12:25:43 +05:30
include StubRequests
2016-06-02 11:05:42 +05:30
describe 'Associations' do
it { is_expected.to belong_to :project }
it { is_expected.to have_one :service_hook }
end
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
2016-09-13 17:45:13 +05:30
describe "#execute" do
let(:user) { create(:user) }
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2016-09-13 17:45:13 +05:30
before do
2017-09-10 17:25:29 +05:30
@campfire_service = described_class.new
2016-09-13 17:45:13 +05:30
allow(@campfire_service).to receive_messages(
project_id: project.id,
project: project,
service_hook: true,
token: 'verySecret',
subdomain: 'project-name',
room: 'test-room'
)
@sample_data = Gitlab::DataBuilder::Push.build_sample(project, user)
2017-09-10 17:25:29 +05:30
@rooms_url = 'https://project-name.campfirenow.com/rooms.json'
@auth = %w(verySecret X)
2016-09-13 17:45:13 +05:30
@headers = { 'Content-Type' => 'application/json; charset=utf-8' }
end
it "calls Campfire API to get a list of rooms and speak in a room" do
# make sure a valid list of rooms is returned
body = File.read(Rails.root + 'spec/fixtures/project_services/campfire/rooms.json')
2019-06-05 12:25:43 +05:30
stub_full_request(@rooms_url).with(basic_auth: @auth).to_return(
2016-09-13 17:45:13 +05:30
body: body,
status: 200,
headers: @headers
)
2019-06-05 12:25:43 +05:30
2016-09-13 17:45:13 +05:30
# stub the speak request with the room id found in the previous request's response
2017-09-10 17:25:29 +05:30
speak_url = 'https://project-name.campfirenow.com/room/123/speak.json'
2019-06-05 12:25:43 +05:30
stub_full_request(speak_url, method: :post).with(basic_auth: @auth)
2016-09-13 17:45:13 +05:30
@campfire_service.execute(@sample_data)
2019-06-05 12:25:43 +05:30
expect(WebMock).to have_requested(:get, stubbed_hostname(@rooms_url)).once
expect(WebMock).to have_requested(:post, stubbed_hostname(speak_url))
.with(body: /#{project.path}.*#{@sample_data[:before]}.*#{@sample_data[:after]}/).once
2016-09-13 17:45:13 +05:30
end
it "calls Campfire API to get a list of rooms but shouldn't speak in a room" do
# return a list of rooms that do not contain a room named 'test-room'
body = File.read(Rails.root + 'spec/fixtures/project_services/campfire/rooms2.json')
2019-06-05 12:25:43 +05:30
stub_full_request(@rooms_url).with(basic_auth: @auth).to_return(
2016-09-13 17:45:13 +05:30
body: body,
status: 200,
headers: @headers
)
@campfire_service.execute(@sample_data)
2019-06-05 12:25:43 +05:30
expect(WebMock).to have_requested(:get, 'https://8.8.8.9/rooms.json').once
expect(WebMock).not_to have_requested(:post, '*/room/.*/speak.json')
2016-09-13 17:45:13 +05:30
end
end
2016-06-02 11:05:42 +05:30
end