summaryrefslogtreecommitdiff
path: root/spec/services/ci/stop_environment_service_spec.rb
blob: 047f9b0b2ca5896c624cf046b9658932e427d8eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
require 'spec_helper'

describe Ci::StopEnvironmentService, services: true do
  let(:project) { create(:project) }
  let(:user) { create(:user) }

  let(:service) { described_class.new(project, user) }

  describe '#execute' do
    context 'when environment with review app exists' do
      before do
        create(:environment, :with_review_app, project: project)
      end

      it 'stops environment' do
        expect_any_instance_of(Environment).to receive(:stop!)

        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