gitlab-org--gitlab-foss/spec/services/notes/post_process_service_spec.rb

46 lines
1.3 KiB
Ruby
Raw Normal View History

2016-01-28 18:04:24 +00:00
require 'spec_helper'
describe Notes::PostProcessService do
let(:project) { create(:project) }
2016-01-28 18:04:24 +00:00
let(:issue) { create(:issue, project: project) }
let(:user) { create(:user) }
2016-07-11 22:12:31 +00:00
describe '#execute' do
2016-01-28 18:04:24 +00:00
before do
project.add_maintainer(user)
2016-01-28 18:04:24 +00:00
note_opts = {
note: 'Awesome comment',
noteable_type: 'Issue',
noteable_id: issue.id
}
@note = Notes::CreateService.new(project, user, note_opts).execute
end
2016-01-28 18:23:37 +00:00
it do
2016-01-28 18:04:24 +00:00
expect(project).to receive(:execute_hooks)
expect(project).to receive(:execute_services)
described_class.new(@note).execute
2016-01-28 18:23:37 +00:00
end
context 'with a confidential issue' do
let(:issue) { create(:issue, :confidential, project: project) }
it "doesn't call note hooks/services" do
expect(project).not_to receive(:execute_hooks).with(anything, :note_hooks)
expect(project).not_to receive(:execute_services).with(anything, :note_hooks)
described_class.new(@note).execute
end
it "calls confidential-note hooks/services" do
expect(project).to receive(:execute_hooks).with(anything, :confidential_note_hooks)
expect(project).to receive(:execute_services).with(anything, :confidential_note_hooks)
described_class.new(@note).execute
end
end
2016-01-28 18:04:24 +00:00
end
end