debian-mirror-gitlab/spec/services/system_note_service_spec.rb

665 lines
21 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe SystemNoteService do
include Gitlab::Routing
2018-03-17 18:26:18 +05:30
include RepoHelpers
2018-11-08 19:23:39 +05:30
include AssetsHelpers
2020-05-24 23:13:21 +05:30
include DesignManagementTestHelpers
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
let_it_be(:group) { create(:group) }
let_it_be(:project) { create(:project, :repository, group: group) }
let_it_be(:author) { create(:user) }
2015-09-11 14:41:01 +05:30
let(:noteable) { create(:issue, project: project) }
2017-08-17 22:00:37 +05:30
let(:issue) { noteable }
2015-09-11 14:41:01 +05:30
describe '.add_commits' do
2019-12-21 20:55:43 +05:30
let(:new_commits) { double }
let(:old_commits) { double }
let(:oldrev) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls CommitService' do
expect_next_instance_of(::SystemNotes::CommitService) do |service|
expect(service).to receive(:add_commits).with(new_commits, old_commits, oldrev)
2015-09-11 14:41:01 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.add_commits(noteable, project, author, new_commits, old_commits, oldrev)
2015-09-11 14:41:01 +05:30
end
end
2018-11-20 20:47:30 +05:30
describe '.tag_commit' do
2019-12-21 20:55:43 +05:30
let(:tag_name) { double }
2018-11-20 20:47:30 +05:30
2019-12-21 20:55:43 +05:30
it 'calls CommitService' do
expect_next_instance_of(::SystemNotes::CommitService) do |service|
expect(service).to receive(:tag_commit).with(tag_name)
end
2018-11-20 20:47:30 +05:30
2019-12-21 20:55:43 +05:30
described_class.tag_commit(noteable, project, author, tag_name)
2018-11-20 20:47:30 +05:30
end
end
2015-09-11 14:41:01 +05:30
describe '.change_assignee' do
2019-12-21 20:55:43 +05:30
let(:assignee) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_assignee).with(assignee)
2015-09-11 14:41:01 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.change_assignee(noteable, project, author, assignee)
2015-09-11 14:41:01 +05:30
end
end
2019-07-31 22:56:46 +05:30
describe '.change_issuable_assignees' do
2019-12-21 20:55:43 +05:30
let(:assignees) { [double, double] }
2017-08-17 22:00:37 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_issuable_assignees).with(assignees)
2019-12-04 20:38:33 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.change_issuable_assignees(noteable, project, author, assignees)
2019-12-04 20:38:33 +05:30
end
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
describe '.close_after_error_tracking_resolve' do
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:close_after_error_tracking_resolve)
end
described_class.close_after_error_tracking_resolve(noteable, project, author)
end
end
2015-09-11 14:41:01 +05:30
describe '.change_milestone' do
2019-12-21 20:55:43 +05:30
let(:milestone) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_milestone).with(milestone)
2017-09-10 17:25:29 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.change_milestone(noteable, project, author, milestone)
2015-09-11 14:41:01 +05:30
end
end
2018-11-20 20:47:30 +05:30
describe '.change_due_date' do
2020-03-13 15:44:24 +05:30
let(:due_date) { double }
2018-11-20 20:47:30 +05:30
2020-03-13 15:44:24 +05:30
it 'calls TimeTrackingService' do
expect_next_instance_of(::SystemNotes::TimeTrackingService) do |service|
expect(service).to receive(:change_due_date).with(due_date)
2018-11-20 20:47:30 +05:30
end
2020-03-13 15:44:24 +05:30
described_class.change_due_date(noteable, project, author, due_date)
2018-11-20 20:47:30 +05:30
end
end
2015-09-11 14:41:01 +05:30
describe '.change_status' do
2019-12-21 20:55:43 +05:30
let(:status) { double }
let(:source) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_status).with(status, source)
2017-08-17 22:00:37 +05:30
end
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
described_class.change_status(noteable, project, author, status, source)
2015-09-11 14:41:01 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe '.merge_when_pipeline_succeeds' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
sha = double
2015-12-23 02:04:40 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:merge_when_pipeline_succeeds).with(sha)
end
2015-12-23 02:04:40 +05:30
2019-12-26 22:10:19 +05:30
described_class.merge_when_pipeline_succeeds(noteable, project, author, sha)
2015-12-23 02:04:40 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe '.cancel_merge_when_pipeline_succeeds' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:cancel_merge_when_pipeline_succeeds)
end
2015-12-23 02:04:40 +05:30
2019-12-26 22:10:19 +05:30
described_class.cancel_merge_when_pipeline_succeeds(noteable, project, author)
2015-12-23 02:04:40 +05:30
end
end
2019-09-30 21:07:59 +05:30
describe '.abort_merge_when_pipeline_succeeds' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
reason = double
2019-09-30 21:07:59 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:abort_merge_when_pipeline_succeeds).with(reason)
end
2019-09-30 21:07:59 +05:30
2019-12-26 22:10:19 +05:30
described_class.abort_merge_when_pipeline_succeeds(noteable, project, author, reason)
2019-09-30 21:07:59 +05:30
end
end
2015-09-11 14:41:01 +05:30
describe '.change_title' do
2019-12-21 20:55:43 +05:30
let(:title) { double }
2017-08-17 22:00:37 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_title).with(title)
2017-08-17 22:00:37 +05:30
end
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
described_class.change_title(noteable, project, author, title)
2017-08-17 22:00:37 +05:30
end
end
describe '.change_description' do
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_description)
2017-08-17 22:00:37 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.change_description(noteable, project, author)
2015-09-11 14:41:01 +05:30
end
2016-06-02 11:05:42 +05:30
end
2015-09-11 14:41:01 +05:30
2016-06-02 11:05:42 +05:30
describe '.change_issue_confidentiality' do
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_issue_confidentiality)
2017-08-17 22:00:37 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.change_issue_confidentiality(noteable, project, author)
2015-09-11 14:41:01 +05:30
end
end
describe '.change_branch' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
old_branch = double
new_branch = double
branch_type = double
2015-09-11 14:41:01 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:change_branch).with(branch_type, old_branch, new_branch)
2015-09-11 14:41:01 +05:30
end
2019-12-26 22:10:19 +05:30
described_class.change_branch(noteable, project, author, branch_type, old_branch, new_branch)
2015-09-11 14:41:01 +05:30
end
end
2015-10-24 18:46:33 +05:30
describe '.change_branch_presence' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
presence = double
branch = double
branch_type = double
2015-10-24 18:46:33 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:change_branch_presence).with(branch_type, branch, presence)
2015-10-24 18:46:33 +05:30
end
2019-12-26 22:10:19 +05:30
described_class.change_branch_presence(noteable, project, author, branch_type, branch, presence)
2015-10-24 18:46:33 +05:30
end
end
2016-06-02 11:05:42 +05:30
describe '.new_issue_branch' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
branch = double
branch_project = double
2016-06-02 11:05:42 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:new_issue_branch).with(branch, branch_project: branch_project)
2019-09-30 21:07:59 +05:30
end
2019-12-26 22:10:19 +05:30
described_class.new_issue_branch(noteable, project, author, branch, branch_project: branch_project)
2016-06-02 11:05:42 +05:30
end
end
2019-02-15 15:39:39 +05:30
describe '.new_merge_request' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
merge_request = double
2019-02-15 15:39:39 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:new_merge_request).with(merge_request)
end
2019-02-15 15:39:39 +05:30
2019-12-26 22:10:19 +05:30
described_class.new_merge_request(noteable, project, author, merge_request)
2019-02-15 15:39:39 +05:30
end
end
2019-10-12 21:52:04 +05:30
describe '.zoom_link_added' do
2019-12-21 20:55:43 +05:30
it 'calls ZoomService' do
expect_next_instance_of(::SystemNotes::ZoomService) do |service|
expect(service).to receive(:zoom_link_added)
end
2019-10-12 21:52:04 +05:30
2019-12-21 20:55:43 +05:30
described_class.zoom_link_added(noteable, project, author)
2019-10-12 21:52:04 +05:30
end
end
describe '.zoom_link_removed' do
2019-12-21 20:55:43 +05:30
it 'calls ZoomService' do
expect_next_instance_of(::SystemNotes::ZoomService) do |service|
expect(service).to receive(:zoom_link_removed)
end
2019-10-12 21:52:04 +05:30
2019-12-21 20:55:43 +05:30
described_class.zoom_link_removed(noteable, project, author)
2019-10-12 21:52:04 +05:30
end
end
2015-09-11 14:41:01 +05:30
describe '.cross_reference' do
2019-12-21 20:55:43 +05:30
let(:mentioner) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:cross_reference).with(mentioner)
2017-08-17 22:00:37 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.cross_reference(double, mentioner, double)
2015-09-11 14:41:01 +05:30
end
end
describe '.cross_reference_disallowed?' do
2019-12-21 20:55:43 +05:30
let(:mentioner) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:cross_reference_disallowed?).with(mentioner)
2015-09-11 14:41:01 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.cross_reference_disallowed?(double, mentioner)
2015-09-11 14:41:01 +05:30
end
end
describe '.cross_reference_exists?' do
2019-12-21 20:55:43 +05:30
let(:mentioner) { double }
2015-09-11 14:41:01 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:cross_reference_exists?).with(mentioner)
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
2019-12-21 20:55:43 +05:30
described_class.cross_reference_exists?(double, mentioner)
2016-04-02 18:10:28 +05:30
end
2015-09-11 14:41:01 +05:30
end
2015-12-23 02:04:40 +05:30
2016-06-02 11:05:42 +05:30
describe '.noteable_moved' do
2019-12-21 20:55:43 +05:30
let(:noteable_ref) { double }
let(:direction) { double }
2016-06-02 11:05:42 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:noteable_moved).with(noteable_ref, direction)
2016-06-02 11:05:42 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.noteable_moved(double, double, noteable_ref, double, direction: direction)
2016-06-02 11:05:42 +05:30
end
end
2019-09-30 21:07:59 +05:30
describe 'Jira integration' do
2017-08-17 22:00:37 +05:30
include JiraServiceHelper
2017-09-10 17:25:29 +05:30
let(:project) { create(:jira_project, :repository) }
2017-08-17 22:00:37 +05:30
let(:author) { create(:user) }
let(:issue) { create(:issue, project: project) }
let(:merge_request) { create(:merge_request, :simple, target_project: project, source_project: project) }
let(:jira_issue) { ExternalIssue.new("JIRA-1", project)}
let(:jira_tracker) { project.jira_service }
let(:commit) { project.commit }
let(:comment_url) { jira_api_comment_url(jira_issue.id) }
2018-11-20 20:47:30 +05:30
let(:success_message) { "SUCCESS: Successfully posted to http://jira.example.net." }
2017-08-17 22:00:37 +05:30
before do
stub_jira_urls(jira_issue.id)
jira_service_settings
end
2017-09-10 17:25:29 +05:30
def cross_reference(type, link_exists = false)
noteable = type == 'commit' ? commit : merge_request
links = []
if link_exists
url = if type == 'commit'
2020-03-13 15:44:24 +05:30
"#{Settings.gitlab.base_url}/#{project.namespace.path}/#{project.path}/-/commit/#{commit.id}"
2017-09-10 17:25:29 +05:30
else
2020-03-13 15:44:24 +05:30
"#{Settings.gitlab.base_url}/#{project.namespace.path}/#{project.path}/-/merge_requests/#{merge_request.iid}"
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
2017-09-10 17:25:29 +05:30
link = double(object: { 'url' => url })
links << link
expect(link).to receive(:save!)
end
allow(JIRA::Resource::Remotelink).to receive(:all).and_return(links)
described_class.cross_reference(jira_issue, noteable, author)
end
2017-08-17 22:00:37 +05:30
noteable_types = %w(merge_requests commit)
noteable_types.each do |type|
context "when noteable is a #{type}" do
it "blocks cross reference when #{type.underscore}_events is false" do
jira_tracker.update("#{type}_events" => false)
2020-01-01 13:55:28 +05:30
expect(cross_reference(type)).to eq(s_('JiraService|Events for %{noteable_model_name} are disabled.') % { noteable_model_name: type.pluralize.humanize.downcase })
2017-08-17 22:00:37 +05:30
end
2018-05-09 12:01:36 +05:30
it "creates cross reference when #{type.underscore}_events is true" do
2017-08-17 22:00:37 +05:30
jira_tracker.update("#{type}_events" => true)
2017-09-10 17:25:29 +05:30
expect(cross_reference(type)).to eq(success_message)
end
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
context 'when a new cross reference is created' do
it 'creates a new comment and remote link' do
cross_reference(type)
expect(WebMock).to have_requested(:post, jira_api_comment_url(jira_issue))
expect(WebMock).to have_requested(:post, jira_api_remote_link_url(jira_issue))
end
end
context 'when a link exists' do
it 'updates a link but does not create a new comment' do
expect(WebMock).not_to have_requested(:post, jira_api_comment_url(jira_issue))
cross_reference(type, true)
2017-08-17 22:00:37 +05:30
end
2015-12-23 02:04:40 +05:30
end
2017-08-17 22:00:37 +05:30
end
2015-12-23 02:04:40 +05:30
2017-08-17 22:00:37 +05:30
describe "new reference" do
2018-11-08 19:23:39 +05:30
let(:favicon_path) { "http://localhost/assets/#{find_asset('favicon.png').digest_path}" }
2017-09-10 17:25:29 +05:30
before do
allow(JIRA::Resource::Remotelink).to receive(:all).and_return([])
end
2017-08-17 22:00:37 +05:30
context 'for commits' do
it "creates comment" do
result = described_class.cross_reference(jira_issue, commit, author)
expect(result).to eq(success_message)
2015-12-23 02:04:40 +05:30
end
2017-08-17 22:00:37 +05:30
it "creates remote link" do
described_class.cross_reference(jira_issue, commit, author)
expect(WebMock).to have_requested(:post, jira_api_remote_link_url(jira_issue)).with(
body: hash_including(
GlobalID: "GitLab",
2019-07-07 11:18:12 +05:30
relationship: 'mentioned on',
2017-08-17 22:00:37 +05:30
object: {
2017-09-10 17:25:29 +05:30
url: project_commit_url(project, commit),
2019-07-07 11:18:12 +05:30
title: "Commit - #{commit.title}",
2018-11-08 19:23:39 +05:30
icon: { title: "GitLab", url16x16: favicon_path },
2017-08-17 22:00:37 +05:30
status: { resolved: false }
}
)
).once
end
end
context 'for issues' do
2019-03-02 22:35:43 +05:30
let(:issue) { create(:issue, project: project) }
2017-08-17 22:00:37 +05:30
it "creates comment" do
result = described_class.cross_reference(jira_issue, issue, author)
2015-12-23 02:04:40 +05:30
2017-08-17 22:00:37 +05:30
expect(result).to eq(success_message)
end
it "creates remote link" do
described_class.cross_reference(jira_issue, issue, author)
expect(WebMock).to have_requested(:post, jira_api_remote_link_url(jira_issue)).with(
body: hash_including(
GlobalID: "GitLab",
2019-07-07 11:18:12 +05:30
relationship: 'mentioned on',
2017-08-17 22:00:37 +05:30
object: {
2017-09-10 17:25:29 +05:30
url: project_issue_url(project, issue),
2019-07-07 11:18:12 +05:30
title: "Issue - #{issue.title}",
2018-11-08 19:23:39 +05:30
icon: { title: "GitLab", url16x16: favicon_path },
2017-08-17 22:00:37 +05:30
status: { resolved: false }
}
)
).once
end
2015-12-23 02:04:40 +05:30
end
2017-08-17 22:00:37 +05:30
context 'for snippets' do
let(:snippet) { create(:snippet, project: project) }
it "creates comment" do
result = described_class.cross_reference(jira_issue, snippet, author)
expect(result).to eq(success_message)
2015-12-23 02:04:40 +05:30
end
2017-08-17 22:00:37 +05:30
it "creates remote link" do
described_class.cross_reference(jira_issue, snippet, author)
expect(WebMock).to have_requested(:post, jira_api_remote_link_url(jira_issue)).with(
body: hash_including(
GlobalID: "GitLab",
2019-07-07 11:18:12 +05:30
relationship: 'mentioned on',
2017-08-17 22:00:37 +05:30
object: {
2017-09-10 17:25:29 +05:30
url: project_snippet_url(project, snippet),
2019-07-07 11:18:12 +05:30
title: "Snippet - #{snippet.title}",
2018-11-08 19:23:39 +05:30
icon: { title: "GitLab", url16x16: favicon_path },
2017-08-17 22:00:37 +05:30
status: { resolved: false }
}
)
).once
end
2015-12-23 02:04:40 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe "existing reference" do
before do
2017-09-10 17:25:29 +05:30
allow(JIRA::Resource::Remotelink).to receive(:all).and_return([])
2020-05-24 23:13:21 +05:30
message = double('message')
allow(message).to receive(:include?) { true }
2020-01-01 13:55:28 +05:30
allow_next_instance_of(JIRA::Resource::Issue) do |instance|
allow(instance).to receive(:comments).and_return([OpenStruct.new(body: message)])
end
2017-08-17 22:00:37 +05:30
end
it "does not return success message" do
result = described_class.cross_reference(jira_issue, commit, author)
expect(result).not_to eq(success_message)
end
it 'does not try to create comment and remote link' do
subject
expect(WebMock).not_to have_requested(:post, jira_api_comment_url(jira_issue))
expect(WebMock).not_to have_requested(:post, jira_api_remote_link_url(jira_issue))
end
end
end
2019-07-31 22:56:46 +05:30
describe '.change_time_estimate' do
2020-03-13 15:44:24 +05:30
it 'calls TimeTrackingService' do
expect_next_instance_of(::SystemNotes::TimeTrackingService) do |service|
expect(service).to receive(:change_time_estimate)
2019-07-31 22:56:46 +05:30
end
2019-09-30 21:07:59 +05:30
2020-03-13 15:44:24 +05:30
described_class.change_time_estimate(noteable, project, author)
2019-07-31 22:56:46 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe '.discussion_continued_in_issue' do
2018-03-17 18:26:18 +05:30
let(:discussion) { create(:diff_note_on_merge_request, project: project).to_discussion }
2017-08-17 22:00:37 +05:30
let(:merge_request) { discussion.noteable }
let(:issue) { create(:issue, project: project) }
def reloaded_merge_request
MergeRequest.find(merge_request.id)
end
subject { described_class.discussion_continued_in_issue(discussion, project, author, issue) }
it_behaves_like 'a system note' do
let(:expected_noteable) { discussion.first_note.noteable }
let(:action) { 'discussion' }
end
it 'creates a new note in the discussion' do
# we need to completely rebuild the merge request object, or the `@discussions` on the merge request are not reloaded.
expect { subject }.to change { reloaded_merge_request.discussions.first.notes.size }.by(1)
end
it 'mentions the created issue in the system note' do
expect(subject.note).to include(issue.to_reference)
end
end
describe '.change_time_spent' do
2020-03-13 15:44:24 +05:30
it 'calls TimeTrackingService' do
expect_next_instance_of(::SystemNotes::TimeTrackingService) do |service|
expect(service).to receive(:change_time_spent)
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
described_class.change_time_spent(noteable, project, author)
2017-08-17 22:00:37 +05:30
end
end
2018-03-17 18:26:18 +05:30
describe '.handle_merge_request_wip' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:handle_merge_request_wip)
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
2019-12-26 22:10:19 +05:30
described_class.handle_merge_request_wip(noteable, project, author)
2017-08-17 22:00:37 +05:30
end
end
describe '.add_merge_request_wip_from_commit' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
commit = double
2017-08-17 22:00:37 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:add_merge_request_wip_from_commit).with(commit)
end
2017-08-17 22:00:37 +05:30
2019-12-26 22:10:19 +05:30
described_class.add_merge_request_wip_from_commit(noteable, project, author, commit)
2017-08-17 22:00:37 +05:30
end
end
describe '.change_task_status' do
2019-12-21 20:55:43 +05:30
let(:new_task) { double }
2017-08-17 22:00:37 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:change_task_status).with(new_task)
end
2017-08-17 22:00:37 +05:30
2019-12-21 20:55:43 +05:30
described_class.change_task_status(noteable, project, author, new_task)
2017-08-17 22:00:37 +05:30
end
end
describe '.resolve_all_discussions' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:resolve_all_discussions)
end
2017-08-17 22:00:37 +05:30
2019-12-26 22:10:19 +05:30
described_class.resolve_all_discussions(noteable, project, author)
2017-08-17 22:00:37 +05:30
end
2015-12-23 02:04:40 +05:30
end
2017-09-10 17:25:29 +05:30
describe '.diff_discussion_outdated' do
2019-12-26 22:10:19 +05:30
it 'calls MergeRequestsService' do
discussion = double
change_position = double
2017-09-10 17:25:29 +05:30
2019-12-26 22:10:19 +05:30
expect_next_instance_of(::SystemNotes::MergeRequestsService) do |service|
expect(service).to receive(:diff_discussion_outdated).with(discussion, change_position)
2019-09-30 21:07:59 +05:30
end
2019-12-26 22:10:19 +05:30
described_class.diff_discussion_outdated(discussion, project, author, change_position)
2017-09-10 17:25:29 +05:30
end
end
describe '.mark_duplicate_issue' do
2019-12-21 20:55:43 +05:30
let(:canonical_issue) { double }
2017-09-10 17:25:29 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:mark_duplicate_issue).with(canonical_issue)
2017-09-10 17:25:29 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.mark_duplicate_issue(noteable, project, author, canonical_issue)
2017-09-10 17:25:29 +05:30
end
end
describe '.mark_canonical_issue_of_duplicate' do
2019-12-21 20:55:43 +05:30
let(:duplicate_issue) { double }
2017-09-10 17:25:29 +05:30
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:mark_canonical_issue_of_duplicate).with(duplicate_issue)
2017-09-10 17:25:29 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.mark_canonical_issue_of_duplicate(noteable, project, author, duplicate_issue)
2017-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
describe '.discussion_lock' do
2019-12-21 20:55:43 +05:30
let(:issuable) { double }
2018-03-17 18:26:18 +05:30
2019-12-21 20:55:43 +05:30
before do
allow(issuable).to receive(:project).and_return(double)
2018-03-17 18:26:18 +05:30
end
2019-12-21 20:55:43 +05:30
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:discussion_lock)
2018-03-17 18:26:18 +05:30
end
2019-12-21 20:55:43 +05:30
described_class.discussion_lock(issuable, double)
2018-03-17 18:26:18 +05:30
end
end
2020-04-08 14:13:33 +05:30
describe '.auto_resolve_prometheus_alert' do
it 'calls IssuableService' do
expect_next_instance_of(::SystemNotes::IssuablesService) do |service|
expect(service).to receive(:auto_resolve_prometheus_alert)
end
described_class.auto_resolve_prometheus_alert(noteable, project, author)
end
end
2020-05-24 23:13:21 +05:30
describe '.design_version_added' do
let(:version) { create(:design_version) }
it 'calls DesignManagementService' do
expect_next_instance_of(SystemNotes::DesignManagementService) do |service|
expect(service).to receive(:design_version_added).with(version)
end
described_class.design_version_added(version)
end
end
describe '.design_discussion_added' do
let(:discussion_note) { create(:diff_note_on_design) }
it 'calls DesignManagementService' do
expect_next_instance_of(SystemNotes::DesignManagementService) do |service|
expect(service).to receive(:design_discussion_added).with(discussion_note)
end
described_class.design_discussion_added(discussion_note)
end
end
2015-09-11 14:41:01 +05:30
end