2016-11-15 04:27:40 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe DeleteBranchService do
|
2017-03-27 17:14:01 -04:00
|
|
|
let(:project) { create(:project, :repository) }
|
2016-11-15 04:32:37 -05:00
|
|
|
let(:repository) { project.repository }
|
2016-11-15 04:27:40 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:service) { described_class.new(project, user) }
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
context 'when user has access to push to repository' do
|
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2016-11-15 04:27:40 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the branch' do
|
2016-11-15 04:32:37 -05:00
|
|
|
expect(branch_exists?('feature')).to be true
|
|
|
|
|
|
|
|
result = service.execute('feature')
|
|
|
|
|
2016-11-15 04:27:40 -05:00
|
|
|
expect(result[:status]).to eq :success
|
2016-11-15 04:32:37 -05:00
|
|
|
expect(branch_exists?('feature')).to be false
|
2016-11-15 04:27:40 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user does not have access to push to repository' do
|
|
|
|
it 'does not remove branch' do
|
2016-11-15 04:32:37 -05:00
|
|
|
expect(branch_exists?('feature')).to be true
|
|
|
|
|
|
|
|
result = service.execute('feature')
|
|
|
|
|
2016-11-15 04:27:40 -05:00
|
|
|
expect(result[:status]).to eq :error
|
|
|
|
expect(result[:message]).to eq 'You dont have push access to repo'
|
2016-11-15 04:32:37 -05:00
|
|
|
expect(branch_exists?('feature')).to be true
|
2016-11-15 04:27:40 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-11-15 04:32:37 -05:00
|
|
|
|
|
|
|
def branch_exists?(branch_name)
|
|
|
|
repository.ref_exists?("refs/heads/#{branch_name}")
|
|
|
|
end
|
2016-11-15 04:27:40 -05:00
|
|
|
end
|