File: environments_spec.rb

package info (click to toggle)
ruby-gitlab 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,660 kB
  • sloc: ruby: 12,582; makefile: 7; sh: 4
file content (133 lines) | stat: -rw-r--r-- 3,940 bytes parent folder | download
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Client do
  describe '.environments' do
    before do
      stub_get('/projects/3/environments', 'environments')
      @environments = Gitlab.environments(3)
    end

    it 'gets the correct resource' do
      expect(a_get('/projects/3/environments')).to have_been_made
    end

    it "returns a paginated response of project's environments" do
      expect(@environments).to be_a Gitlab::PaginatedResponse
    end
  end

  describe '.environment' do
    before do
      stub_get('/projects/3/environments/12', 'environment')
      @environment = Gitlab.environment(3, 12)
    end

    it 'gets the correct resource' do
      expect(a_get('/projects/3/environments/12')).to have_been_made
    end

    it 'returns a single environment' do
      expect(@environment).to be_a Gitlab::ObjectifiedHash
    end

    it 'returns information about an environment' do
      expect(@environment.id).to eq(12)
      expect(@environment.name).to eq('staging')
    end
  end

  describe '.create_environment' do
    context 'without external_url' do
      before do
        stub_post('/projects/3/environments', 'environment')
        @environment = Gitlab.create_environment(3, 'staging')
      end

      it 'gets the correct resource' do
        expect(a_post('/projects/3/environments').with(body: { name: 'staging' })).to have_been_made
      end

      it 'returns a single environment' do
        expect(@environment).to be_a Gitlab::ObjectifiedHash
      end

      it 'returns information about an environment' do
        expect(@environment.name).to eq('staging')
      end
    end

    context 'with external_url' do
      before do
        stub_post('/projects/3/environments', 'environment')
        @environment = Gitlab.create_environment(3, 'staging', external_url: 'https://staging.example.gitlab.com')
      end

      it 'gets the correct resource' do
        expect(a_post('/projects/3/environments')
                 .with(body: { name: 'staging', external_url: 'https://staging.example.gitlab.com' })).to have_been_made
      end
    end
  end

  describe '.edit_environment' do
    before do
      stub_put('/projects/3/environments/12', 'environment')
      @environment = Gitlab.edit_environment(3, 12,
                                             name: 'staging',
                                             external_url: 'https://staging.example.gitlab.com')
    end

    it 'gets the correct resource' do
      expect(a_put('/projects/3/environments/12')
               .with(body: { name: 'staging', external_url: 'https://staging.example.gitlab.com' })).to have_been_made
    end

    it 'returns a single environment' do
      expect(@environment).to be_a Gitlab::ObjectifiedHash
    end

    it 'returns information about an environment' do
      expect(@environment.name).to eq('staging')
    end
  end

  describe '.delete_environment' do
    before do
      stub_delete('/projects/3/environments/12', 'environment')
      @environment = Gitlab.delete_environment(3, 12)
    end

    it 'gets the correct resource' do
      expect(a_delete('/projects/3/environments/12')).to have_been_made
    end

    it 'returns a single pipeline' do
      expect(@environment).to be_a Gitlab::ObjectifiedHash
    end

    it 'returns information about a pipeline' do
      expect(@environment.name).to eq('staging')
    end
  end

  describe '.stop_environment' do
    before do
      stub_post('/projects/3/environments/12/stop', 'environment')
      @environment = Gitlab.stop_environment(3, 12)
    end

    it 'gets the correct resource' do
      expect(a_post('/projects/3/environments/12/stop')).to have_been_made
    end

    it 'returns a single pipeline' do
      expect(@environment).to be_a Gitlab::ObjectifiedHash
    end

    it 'returns information about a pipeline' do
      expect(@environment.name).to eq('staging')
    end
  end
end