summaryrefslogtreecommitdiff
path: root/spec/services/mattermost/deploy_service_spec.rb
blob: 1622ec4ae1a1e506a088e73d6f305a14e64da4a1 (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
require 'spec_helper'

describe Mattermost::DeployService, services: true do
  let(:project) { create(:empty_project) }
  let(:user) { create(:user) }

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

  shared_examples 'a 404 response' do
    it 'responds with a 404 message' do
      expect(subject[:response_type]).to be :ephemeral
      expect(subject[:text]).to start_with '404 not found!'
    end
  end

  describe '#execute' do
    let(:params) { { text: 'envname to action' } }
    subject { service.execute }

    context 'when the environment can not be found' do
      it_behaves_like 'a 404 response'
    end

    context 'the environment exists' do
      let!(:deployment) { create(:deployment) }
      let(:project) { deployment.environment.project }

      context 'the user has no access' do
        it_behaves_like 'a 404 response'
      end

      context 'the user has access' do
        before do
          project.team << [user, :master]
        end

        let(:user) { create(:user) }
        let(:pipeline) { create(:pipeline) }
        let!(:build) { create(:build, :manual) }
        let(:params) { { text: "#{environment.name} to #{build.name}" } }

        it 'informs the user when it does not exist' do
          it_behaves_like 'a 404 response'
        end

        it 'executes the action if it exists' do
          allow(deployment).to receive(:manual_actions).and_return([build])

          expect(build).to receive(:manual_actions)
        end
      end
    end
  end
end