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

68 lines
1.6 KiB
Ruby
Raw Normal View History

2014-06-17 15:09:01 -04:00
require 'spec_helper'
2015-12-09 05:55:49 -05:00
describe Notes::CreateService, services: true do
2014-06-17 15:09:01 -04:00
let(:project) { create(:empty_project) }
let(:issue) { create(:issue, project: project) }
let(:user) { create(:user) }
describe :execute do
context "valid params" do
before do
project.team << [user, :master]
opts = {
note: 'Awesome comment',
noteable_type: 'Issue',
noteable_id: issue.id
}
2014-06-17 15:09:01 -04:00
@note = Notes::CreateService.new(project, user, opts).execute
end
it { expect(@note).to be_valid }
it { expect(@note.note).to eq('Awesome comment') }
2014-06-17 15:09:01 -04:00
end
end
2015-11-19 07:41:05 -05:00
describe "award emoji" do
2015-11-19 16:00:30 -05:00
before do
project.team << [user, :master]
end
2015-11-19 07:41:05 -05:00
it "creates an award emoji" do
2015-11-19 16:00:30 -05:00
opts = {
note: ':smile: ',
noteable_type: 'Issue',
noteable_id: issue.id
}
note = Notes::CreateService.new(project, user, opts).execute
2015-11-19 07:41:05 -05:00
expect(note).to be_valid
expect(note.name).to eq('smile')
2015-11-19 16:00:30 -05:00
end
2015-11-19 07:41:05 -05:00
2015-11-19 16:00:30 -05:00
it "creates regular note if emoji name is invalid" do
opts = {
note: ':smile: moretext: ',
noteable_type: 'Issue',
noteable_id: issue.id
}
note = Notes::CreateService.new(project, user, opts).execute
2015-11-19 07:41:05 -05:00
expect(note).to be_valid
expect(note.note).to eq(opts[:note])
2015-11-19 16:00:30 -05:00
end
it "normalizes the emoji name" do
opts = {
note: ':+1:',
noteable_type: 'Issue',
noteable_id: issue.id
}
2016-05-17 13:28:17 -04:00
expect_any_instance_of(TodoService).to receive(:new_award_emoji).with(issue, user)
Notes::CreateService.new(project, user, opts).execute
end
2015-11-19 07:41:05 -05:00
end
2014-06-17 15:09:01 -04:00
end