debian-mirror-gitlab/spec/services/issues/update_service_spec.rb

72 lines
2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
describe Issues::UpdateService do
let(:user) { create(:user) }
let(:user2) { create(:user) }
2015-09-11 14:41:01 +05:30
let(:issue) { create(:issue, title: 'Old title') }
2015-04-26 12:48:37 +05:30
let(:label) { create(:label) }
2015-09-11 14:41:01 +05:30
let(:project) { issue.project }
2014-09-02 18:07:02 +05:30
before do
project.team << [user, :master]
project.team << [user2, :developer]
end
2015-09-11 14:41:01 +05:30
describe 'execute' do
2014-09-02 18:07:02 +05:30
context "valid params" do
before do
opts = {
title: 'New title',
description: 'Also please fix',
assignee_id: user2.id,
2015-04-26 12:48:37 +05:30
state_event: 'close',
label_ids: [label.id]
2014-09-02 18:07:02 +05:30
}
@issue = Issues::UpdateService.new(project, user, opts).execute(issue)
2015-04-26 12:48:37 +05:30
@issue.reload
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
it { expect(@issue).to be_valid }
it { expect(@issue.title).to eq('New title') }
it { expect(@issue.assignee).to eq(user2) }
it { expect(@issue).to be_closed }
it { expect(@issue.labels.count).to eq(1) }
it { expect(@issue.labels.first.title).to eq('Bug') }
2014-09-02 18:07:02 +05:30
it 'should send email to user2 about assign of new issue' do
email = ActionMailer::Base.deliveries.last
2015-04-26 12:48:37 +05:30
expect(email.to.first).to eq(user2.email)
expect(email.subject).to include(issue.title)
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
def find_note(starting_with)
@issue.notes.find do |note|
note && note.note.start_with?(starting_with)
end
end
2014-09-02 18:07:02 +05:30
it 'should create system note about issue reassign' do
2015-09-11 14:41:01 +05:30
note = find_note('Reassigned to')
expect(note).not_to be_nil
2015-04-26 12:48:37 +05:30
expect(note.note).to include "Reassigned to \@#{user2.username}"
end
it 'should create system note about issue label edit' do
2015-09-11 14:41:01 +05:30
note = find_note('Added ~')
expect(note).not_to be_nil
2015-04-26 12:48:37 +05:30
expect(note.note).to include "Added ~#{label.id} label"
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
it 'creates system note about title change' do
note = find_note('Title changed')
expect(note).not_to be_nil
expect(note.note).to eq 'Title changed from **Old title** to **New title**'
end
2014-09-02 18:07:02 +05:30
end
end
end