summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/services/commits/tag_service.rb10
-rw-r--r--spec/services/commits/tag_service_spec.rb33
2 files changed, 30 insertions, 13 deletions
diff --git a/app/services/commits/tag_service.rb b/app/services/commits/tag_service.rb
index fb841655fee..7961ba4d3c4 100644
--- a/app/services/commits/tag_service.rb
+++ b/app/services/commits/tag_service.rb
@@ -3,7 +3,9 @@
module Commits
class TagService < BaseService
def execute(commit)
- return unless params[:tag_name]
+ unless params[:tag_name]
+ return error('Missing parameter tag_name')
+ end
tag_name = params[:tag_name]
message = params[:tag_message]
@@ -13,10 +15,12 @@ module Commits
.new(commit.project, current_user)
.execute(tag_name, commit.sha, message, release_description)
- if result[:status] == :success && (tag = result[:tag])
+ if result[:status] == :success
+ tag = result[:tag]
SystemNoteService.tag_commit(commit, commit.project, current_user, tag.name)
- commit
end
+
+ result
end
end
end
diff --git a/spec/services/commits/tag_service_spec.rb b/spec/services/commits/tag_service_spec.rb
index 5e778681544..f14eb9ea2b9 100644
--- a/spec/services/commits/tag_service_spec.rb
+++ b/spec/services/commits/tag_service_spec.rb
@@ -13,11 +13,12 @@ describe Commits::TagService do
describe '#execute' do
let(:service) { described_class.new(project, user, opts) }
- shared_examples 'tagging fails' do
- it 'returns nil' do
- tagged_commit = service.execute(commit)
+ shared_examples 'tag failure' do
+ it 'returns a hash with the :error status' do
+ result = service.execute(commit)
- expect(tagged_commit).to be_nil
+ expect(result[:status]).to eq(:error)
+ expect(result[:message]).to eq(error_message)
end
it 'does not add a system note' do
@@ -51,10 +52,14 @@ describe Commits::TagService do
end
context 'when tagging succeeds' do
- it 'returns the commit' do
- tagged_commit = service.execute(commit)
+ it 'returns a hash with the :success status and created tag' do
+ result = service.execute(commit)
- expect(tagged_commit).to eq(commit)
+ expect(result[:status]).to eq(:success)
+
+ tag = result[:tag]
+ expect(tag.name).to eq(opts[:tag_name])
+ expect(tag.message).to eq(opts[:tag_message])
end
it 'adds a system note' do
@@ -66,13 +71,19 @@ describe Commits::TagService do
end
context 'when tagging fails' do
+ let(:tag_error) { 'GitLab: You are not allowed to push code to this project.' }
+
before do
tag_stub = instance_double(Tags::CreateService)
allow(Tags::CreateService).to receive(:new).and_return(tag_stub)
- allow(tag_stub).to receive(:execute).and_return({ status: :error })
+ allow(tag_stub).to receive(:execute).and_return({
+ status: :error, message: tag_error
+ })
end
- include_examples 'tagging fails'
+ it_behaves_like 'tag failure' do
+ let(:error_message) { tag_error }
+ end
end
end
@@ -81,7 +92,9 @@ describe Commits::TagService do
{}
end
- include_examples 'tagging fails'
+ it_behaves_like 'tag failure' do
+ let(:error_message) { 'Missing parameter tag_name' }
+ end
end
end
end