62 lines
2 KiB
Ruby
62 lines
2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Issuable::CommonSystemNotesService do
|
|
let(:user) { create(:user) }
|
|
let(:project) { create(:project) }
|
|
let(:issuable) { create(:issue) }
|
|
|
|
describe '#execute' do
|
|
it_behaves_like 'system note creation', { title: 'New title' }, 'changed title'
|
|
it_behaves_like 'system note creation', { description: 'New description' }, 'changed the description'
|
|
it_behaves_like 'system note creation', { discussion_locked: true }, 'locked this issue'
|
|
it_behaves_like 'system note creation', { time_estimate: 5 }, 'changed time estimate'
|
|
|
|
context 'when new label is added' do
|
|
before do
|
|
label = create(:label, project: project)
|
|
issuable.labels << label
|
|
end
|
|
|
|
it_behaves_like 'system note creation', {}, /added ~\w+ label/
|
|
end
|
|
|
|
context 'when new milestone is assigned' do
|
|
before do
|
|
milestone = create(:milestone, project: project)
|
|
issuable.milestone_id = milestone.id
|
|
end
|
|
|
|
it_behaves_like 'system note creation', {}, 'changed milestone'
|
|
end
|
|
|
|
context 'with merge requests WIP note' do
|
|
context 'adding WIP note' do
|
|
let(:issuable) { create(:merge_request, title: "merge request") }
|
|
|
|
it_behaves_like 'system note creation', { title: "WIP merge request" }, 'marked as a **Work In Progress**'
|
|
|
|
context 'and changing title' do
|
|
before do
|
|
issuable.update_attribute(:title, "WIP changed title")
|
|
end
|
|
|
|
it_behaves_like 'WIP notes creation', 'marked'
|
|
end
|
|
end
|
|
|
|
context 'removing WIP note' do
|
|
let(:issuable) { create(:merge_request, title: "WIP merge request") }
|
|
|
|
it_behaves_like 'system note creation', { title: "merge request" }, 'unmarked as a **Work In Progress**'
|
|
|
|
context 'and changing title' do
|
|
before do
|
|
issuable.update_attribute(:title, "changed title")
|
|
end
|
|
|
|
it_behaves_like 'WIP notes creation', 'unmarked'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|