c8a115c0e3
Any mention of Issues, MergeRequests, or Commits via GitLab-flavored markdown references in descriptions, titles, or attached Notes creates a back-reference Note that links to the original referencer. Furthermore, pushing commits with commit messages that match a (configurable) regexp to a project's default branch will close any issues mentioned by GFM in the matched closing phrase. If accepting a merge request would close any Issues in this way, a banner is appended to the merge request's main panel to indicate this.
61 lines
1.7 KiB
Ruby
61 lines
1.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe ActivityObserver do
|
|
let(:project) { create(:project) }
|
|
|
|
before { Thread.current[:current_user] = create(:user) }
|
|
|
|
def self.it_should_be_valid_event
|
|
it { @event.should_not be_nil }
|
|
it { @event.project.should == project }
|
|
end
|
|
|
|
describe "Issue created" do
|
|
before do
|
|
Issue.observers.enable :activity_observer do
|
|
@issue = create(:issue, project: project)
|
|
@event = Event.last
|
|
end
|
|
end
|
|
|
|
it_should_be_valid_event
|
|
it { @event.action.should == Event::CREATED }
|
|
it { @event.target.should == @issue }
|
|
end
|
|
|
|
describe "Issue commented" do
|
|
before do
|
|
Note.observers.enable :activity_observer do
|
|
@issue = create(:issue, project: project)
|
|
@note = create(:note, noteable: @issue, project: project, author: @issue.author)
|
|
@event = Event.last
|
|
end
|
|
end
|
|
|
|
it_should_be_valid_event
|
|
it { @event.action.should == Event::COMMENTED }
|
|
it { @event.target.should == @note }
|
|
end
|
|
|
|
describe "Ignore system notes" do
|
|
let(:author) { create(:user) }
|
|
let!(:issue) { create(:issue, project: project) }
|
|
let!(:other) { create(:issue) }
|
|
|
|
it "should not create events for status change notes" do
|
|
expect do
|
|
Note.observers.enable :activity_observer do
|
|
Note.create_status_change_note(issue, project, author, 'reopened', nil)
|
|
end
|
|
end.to_not change { Event.count }
|
|
end
|
|
|
|
it "should not create events for cross-reference notes" do
|
|
expect do
|
|
Note.observers.enable :activity_observer do
|
|
Note.create_cross_reference_note(issue, other, author, issue.project)
|
|
end
|
|
end.to_not change { Event.count }
|
|
end
|
|
end
|
|
end
|