gitlab-org--gitlab-foss/spec/services/ci/stop_environments_service_s...

120 lines
3.2 KiB
Ruby
Raw Normal View History

2016-11-08 13:20:58 +00:00
require 'spec_helper'
describe Ci::StopEnvironmentsService do
let(:project) { create(:project, :private, :repository) }
2016-11-08 13:20:58 +00:00
let(:user) { create(:user) }
let(:service) { described_class.new(project, user) }
describe '#execute' do
context 'when environment with review app exists' do
2016-11-08 13:20:58 +00:00
before do
create(:environment, :with_review_app, project: project,
ref: 'feature')
2016-11-08 13:20:58 +00:00
end
context 'when user has permission to stop environment' do
before do
project.team << [user, :developer]
end
2016-11-08 13:20:58 +00:00
context 'when environment is associated with removed branch' do
it 'stops environment' do
expect_environment_stopped_on('feature')
end
end
context 'when environment is associated with different branch' do
it 'does not stop environment' do
expect_environment_not_stopped_on('master')
end
end
context 'when specified branch does not exist' do
it 'does not stop environment' do
expect_environment_not_stopped_on('non/existent/branch')
end
end
context 'when no branch not specified' do
it 'does not stop environment' do
expect_environment_not_stopped_on(nil)
end
end
2017-02-06 15:50:03 +00:00
context 'when environment is not stopped' do
before do
allow_any_instance_of(Environment)
2017-02-06 15:50:03 +00:00
.to receive(:state).and_return(:stopped)
end
it 'does not stop environment' do
expect_environment_not_stopped_on('feature')
end
end
end
context 'when user does not have permission to stop environment' do
context 'when user has no access to manage deployments' do
before do
project.team << [user, :guest]
end
it 'does not stop environment' do
expect_environment_not_stopped_on('master')
end
end
end
context 'when branch for stop action is protected' do
before do
project.add_developer(user)
create(:protected_branch, :no_one_can_push,
name: 'master', project: project)
end
it 'does not stop environment' do
expect_environment_not_stopped_on('master')
end
end
end
context 'when there is no environment associated with review app' do
before do
create(:environment, project: project)
end
context 'when user has permission to stop environments' do
before do
project.team << [user, :master]
end
it 'does not stop environment' do
expect_environment_not_stopped_on('master')
end
end
end
context 'when environment does not exist' do
it 'does not raise error' do
expect { service.execute('master') }
.not_to raise_error
end
2016-11-08 13:20:58 +00:00
end
end
def expect_environment_stopped_on(branch)
expect_any_instance_of(Environment)
.to receive(:stop!)
service.execute(branch)
end
def expect_environment_not_stopped_on(branch)
expect_any_instance_of(Environment)
.not_to receive(:stop!)
service.execute(branch)
end
2016-11-08 13:20:58 +00:00
end