gitlab-org--gitlab-foss/spec/models/hooks/system_hook_spec.rb

124 lines
3.9 KiB
Ruby
Raw Normal View History

2012-10-09 04:14:17 -04:00
# == Schema Information
#
# Table name: web_hooks
#
# id :integer not null, primary key
# url :string(255)
# project_id :integer
# created_at :datetime
# updated_at :datetime
# type :string(255) default("ProjectHook")
# service_id :integer
# push_events :boolean default(TRUE), not null
# issues_events :boolean default(FALSE), not null
# merge_requests_events :boolean default(FALSE), not null
# tag_push_events :boolean default(FALSE)
# note_events :boolean default(FALSE), not null
2012-10-09 04:14:17 -04:00
#
2012-07-18 17:24:37 -04:00
require "spec_helper"
2015-12-09 04:50:51 -05:00
describe SystemHook, models: true do
2012-07-18 17:24:37 -04:00
describe "execute" do
2016-03-30 14:00:57 -04:00
let(:system_hook) { create(:system_hook) }
let(:user) { create(:user) }
let(:project) { create(:project, namespace: user.namespace) }
let(:group) { create(:group) }
before do
WebMock.stub_request(:post, system_hook.url)
2012-07-18 17:24:37 -04:00
end
it "project_create hook" do
2016-03-30 14:00:57 -04:00
Projects::CreateService.new(user, name: 'empty').execute
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /project_create/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
2012-07-18 17:24:37 -04:00
end
2012-07-18 17:24:37 -04:00
it "project_destroy hook" do
Projects::DestroyService.new(project, user, {}).pending_delete!
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /project_destroy/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
2012-07-18 17:24:37 -04:00
end
it "user_create hook" do
2013-01-09 01:14:05 -05:00
create(:user)
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /user_create/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
2012-07-18 17:24:37 -04:00
end
2012-07-18 17:24:37 -04:00
it "user_destroy hook" do
2013-01-09 01:14:05 -05:00
user.destroy
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /user_destroy/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
2012-07-18 17:24:37 -04:00
end
2012-07-18 17:24:37 -04:00
it "project_create hook" do
2013-01-09 01:14:05 -05:00
project.team << [user, :master]
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /user_add_to_team/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
2012-07-18 17:24:37 -04:00
end
2012-07-18 17:24:37 -04:00
it "project_destroy hook" do
project.team << [user, :master]
project.project_members.destroy_all
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /user_remove_from_team/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
2012-07-18 17:24:37 -04:00
end
it 'group create hook' do
create(:group)
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /group_create/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
end
it 'group destroy hook' do
group.destroy
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /group_destroy/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
end
it 'group member create hook' do
group.add_master(user)
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /user_add_to_group/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
end
it 'group member destroy hook' do
group.add_master(user)
group.group_members.destroy_all
2016-03-30 14:00:57 -04:00
expect(WebMock).to have_requested(:post, system_hook.url).with(
body: /user_remove_from_group/,
headers: { 'Content-Type' => 'application/json', 'X-Gitlab-Event' => 'System Hook' }
).once
end
2012-07-18 17:24:37 -04:00
end
end