Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-09 15:31:33 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-09 16:09:07 +0300
commit45bd5391d7f20715ae4de7a4a5cd9233ab598c28 (patch)
treefb6a37ed688d91d7d4e9f895cb1c9dd5b4382caa /spec/services/ci
parentae8a461d875b29d7492230df1a3ca419707e154d (diff)
Extend tests for service that stops environment
Diffstat (limited to 'spec/services/ci')
-rw-r--r--spec/services/ci/stop_environment_service_spec.rb50
1 files changed, 49 insertions, 1 deletions
diff --git a/spec/services/ci/stop_environment_service_spec.rb b/spec/services/ci/stop_environment_service_spec.rb
index 05e9e2d84cf..047f9b0b2ca 100644
--- a/spec/services/ci/stop_environment_service_spec.rb
+++ b/spec/services/ci/stop_environment_service_spec.rb
@@ -7,7 +7,7 @@ describe Ci::StopEnvironmentService, services: true do
let(:service) { described_class.new(project, user) }
describe '#execute' do
- context 'when environment exists' do
+ context 'when environment with review app exists' do
before do
create(:environment, :with_review_app, project: project)
end
@@ -17,6 +17,54 @@ describe Ci::StopEnvironmentService, services: true do
service.execute('master')
end
+
+ context 'when specified branch does not exist' do
+ it 'does not stop environment' do
+ expect_any_instance_of(Environment).not_to receive(:stop!)
+
+ service.execute('non/existent/branch')
+ end
+ end
+
+ context 'when no branch not specified' do
+ it 'does not stop environment' do
+ expect_any_instance_of(Environment).not_to receive(:stop!)
+
+ service.execute(nil)
+ end
+ end
+
+ context 'when environment is not stoppable' do
+ before do
+ allow_any_instance_of(Environment)
+ .to receive(:stoppable?).and_return(false)
+ end
+
+ it 'does not stop environment' do
+ expect_any_instance_of(Environment).not_to receive(:stop!)
+
+ service.execute('master')
+ end
+ end
+ end
+
+ context 'when there is no environment associated with review app' do
+ before do
+ create(:environment, project: project)
+ end
+
+ it 'does not stop environment' do
+ expect_any_instance_of(Environment).not_to receive(:stop!)
+
+ service.execute('master')
+ end
+ end
+
+ context 'when environment does not exist' do
+ it 'does not raise error' do
+ expect { service.execute('master') }
+ .not_to raise_error
+ end
end
end
end