2014-02-18 18:09:16 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe GemnasiumService do
|
2014-02-18 18:09:16 -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 }
|
2014-02-18 18:09:16 -05:00
|
|
|
end
|
|
|
|
|
2016-04-21 11:13:14 -04:00
|
|
|
describe 'Validations' do
|
|
|
|
context 'when service is active' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
subject.active = true
|
|
|
|
end
|
2016-04-21 11:13:14 -04:00
|
|
|
|
|
|
|
it { is_expected.to validate_presence_of(:token) }
|
|
|
|
it { is_expected.to validate_presence_of(:api_key) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when service is inactive' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
subject.active = false
|
|
|
|
end
|
2016-04-21 11:13:14 -04:00
|
|
|
|
|
|
|
it { is_expected.not_to validate_presence_of(:token) }
|
|
|
|
it { is_expected.not_to validate_presence_of(:api_key) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-18 18:09:16 -05:00
|
|
|
describe "Execute" do
|
|
|
|
let(:user) { create(:user) }
|
2017-01-26 17:44:58 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
2014-02-18 18:09:16 -05:00
|
|
|
|
|
|
|
before do
|
2017-07-25 13:09:00 -04:00
|
|
|
@gemnasium_service = described_class.new
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(@gemnasium_service).to receive_messages(
|
2014-02-18 18:09:16 -05:00
|
|
|
project_id: project.id,
|
|
|
|
project: project,
|
|
|
|
service_hook: true,
|
|
|
|
token: 'verySecret',
|
|
|
|
api_key: 'GemnasiumUserApiKey'
|
|
|
|
)
|
2016-08-12 04:09:29 -04:00
|
|
|
@sample_data = Gitlab::DataBuilder::Push.build_sample(project, user)
|
2014-02-18 18:09:16 -05:00
|
|
|
end
|
2016-08-01 11:00:44 -04:00
|
|
|
it "calls Gemnasium service" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(Gemnasium::GitlabService).to receive(:execute).with(an_instance_of(Hash)).once
|
2014-02-18 18:09:16 -05:00
|
|
|
@gemnasium_service.execute(@sample_data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|