2014-02-18 18:09:16 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2015-02-19 00:02:57 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# type :string(255)
|
|
|
|
# title :string(255)
|
2015-03-04 17:14:00 -05:00
|
|
|
# project_id :integer
|
2015-02-19 00:02:57 -05:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# active :boolean default(FALSE), not null
|
|
|
|
# properties :text
|
2015-03-04 17:14:00 -05:00
|
|
|
# template :boolean default(FALSE)
|
|
|
|
# push_events :boolean default(TRUE)
|
|
|
|
# issues_events :boolean default(TRUE)
|
|
|
|
# merge_requests_events :boolean default(TRUE)
|
|
|
|
# tag_push_events :boolean default(TRUE)
|
2015-05-03 12:05:38 -04:00
|
|
|
# note_events :boolean default(TRUE), not null
|
2014-02-18 18:09:16 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe GemnasiumService, models: true 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
|
|
|
|
|
|
|
|
describe "Execute" do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
@gemnasium_service = GemnasiumService.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'
|
|
|
|
)
|
2015-01-12 12:08:25 -05:00
|
|
|
@sample_data = Gitlab::PushDataBuilder.build_sample(project, user)
|
2014-02-18 18:09:16 -05:00
|
|
|
end
|
|
|
|
it "should call 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
|