summaryrefslogtreecommitdiff
path: root/spec/models/project_services/bamboo_service_spec.rb
blob: d20db94ce8cde8902cbad99e9f1d2b5763f9391e (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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# == Schema Information
#
# Table name: services
#
#  id                    :integer          not null, primary key
#  type                  :string(255)
#  title                 :string(255)
#  project_id            :integer
#  created_at            :datetime
#  updated_at            :datetime
#  active                :boolean          default(FALSE), not null
#  properties            :text
#  template              :boolean          default(FALSE)
#  push_events           :boolean          default(TRUE)
#  issues_events         :boolean          default(TRUE)
#  merge_requests_events :boolean          default(TRUE)
#  tag_push_events       :boolean          default(TRUE)
#  note_events           :boolean          default(TRUE), not null
#

require 'spec_helper'

describe BambooService, models: true do
  describe "Associations" do
    it { is_expected.to belong_to :project }
    it { is_expected.to have_one :service_hook }
  end

  describe "Execute" do
    let(:user)    { create(:user) }
    let(:project) { create(:project) }

    context "when a password was previously set" do
      before do
        @bamboo_service = BambooService.create(
          project: create(:project),
          properties: {
            bamboo_url: 'http://gitlab.com',
            username: 'mic',
            password: "password"
          }
        )
      end

      it "reset password if url changed" do
        @bamboo_service.bamboo_url = 'http://gitlab1.com'
        @bamboo_service.save
        expect(@bamboo_service.password).to be_nil
      end

      it "does not reset password if username changed" do
        @bamboo_service.username = "some_name"
        @bamboo_service.save
        expect(@bamboo_service.password).to eq("password")
      end

      it "does not reset password if new url is set together with password, even if it's the same password" do
        @bamboo_service.bamboo_url = 'http://gitlab_edited.com'
        @bamboo_service.password = 'password'
        @bamboo_service.save
        expect(@bamboo_service.password).to eq("password")
        expect(@bamboo_service.bamboo_url).to eq("http://gitlab_edited.com")
      end

      it "should reset password if url changed, even if setter called multiple times" do
        @bamboo_service.bamboo_url = 'http://gitlab1.com'
        @bamboo_service.bamboo_url = 'http://gitlab1.com'
        @bamboo_service.save
        expect(@bamboo_service.password).to be_nil
      end
    end

    context "when no password was previously set" do
      before do
        @bamboo_service = BambooService.create(
          project: create(:project),
          properties: {
            bamboo_url: 'http://gitlab.com',
            username: 'mic'
          }
        )
      end

      it "saves password if new url is set together with password" do
        @bamboo_service.bamboo_url = 'http://gitlab_edited.com'
        @bamboo_service.password = 'password'
        @bamboo_service.save
        expect(@bamboo_service.password).to eq("password")
        expect(@bamboo_service.bamboo_url).to eq("http://gitlab_edited.com")
      end
    end
  end

  describe '#build_page' do
    let(:bamboo_full_url) { 'http://mic:password@gitlab.com/rest/api/latest/result?label=123&os_authType=basic' }

    context 'when response code is not 200' do
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(status: 500)
      end
      subject do
        BambooService.create(
          project: build_stubbed(:empty_project),
          properties: {
            bamboo_url: 'http://gitlab.com',
            username: 'mic',
            password: 'password',
            build_key: 'foo'
          }
        )
      end

      it { expect(subject.build_page('123', 'unused')).to eq('http://gitlab.com/browse/foo') }
    end

    context 'when response has no result' do
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(
          status: 200,
          headers: { 'Content-Type': 'application/json' },
          body: %Q({"results":{"results":{"size":"0"}}})
        )
      end
      subject do
        BambooService.create(
          project: build_stubbed(:empty_project),
          properties: {
            bamboo_url: 'http://gitlab.com',
            username: 'mic',
            password: 'password',
            build_key: 'foo'
          }
        )
      end

      it { expect(subject.build_page('123', 'unused')).to eq('http://gitlab.com/browse/foo') }
    end

    context 'when response has result' do
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(
          status: 200,
          headers: { 'Content-Type': 'application/json' },
          body: %Q({"results":{"results":{"result":{"planResultKey":{"key":"42"}}}}})
        )
      end
      subject do
        BambooService.create(
          project: build_stubbed(:empty_project),
          properties: {
            bamboo_url: bamboo_url,
            username: 'mic',
            password: 'password',
            build_key: 'foo'
          }
        )
      end

      context 'when bamboo_url has no trailing slash' do
        let(:bamboo_url) { 'http://gitlab.com' }

        it { expect(subject.build_page('123', 'unused')).to eq('http://gitlab.com/browse/42') }
      end

      context 'when bamboo_url has a trailing slash' do
        let(:bamboo_url) { 'http://gitlab.com/' }

        it { expect(subject.build_page('123', 'unused')).to eq('http://gitlab.com/browse/42') }
      end
    end
  end

  describe '#commit_status' do
    let(:bamboo_full_url) { 'http://mic:password@gitlab.com/rest/api/latest/result?label=123&os_authType=basic' }
    subject do
      BambooService.create(
        project: build_stubbed(:empty_project),
        properties: {
          bamboo_url: 'http://gitlab.com',
          username: 'mic',
          password: 'password'
        }
      )
    end

    context 'when response code is not 200' do
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(status: 500)
      end

      it { expect(subject.commit_status('123', 'unused')).to eq(:error) }
    end

    context 'when response code is 404' do
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(status: 404)
      end

      it { expect(subject.commit_status('123', 'unused')).to eq('pending') }
    end

    context 'when response has no results' do
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(
          status: 200,
          headers: { 'Content-Type': 'application/json' },
          body: %Q({"results":{"results":{"size":"0"}}})
        )
      end

      it { expect(subject.commit_status('123', 'unused')).to eq('pending') }
    end

    context 'when response has results' do
      let(:build_state) { 'YAY Success!' }
      before do
        WebMock.stub_request(:get, bamboo_full_url).to_return(
          status: 200,
          headers: { 'Content-Type': 'application/json' },
          body: %Q({"results":{"results":{"result":{"buildState":"#{build_state}"}}}})
        )
      end

      context 'when build status contains Success' do
        it { expect(subject.commit_status('123', 'unused')).to eq('success') }
      end

      context 'when build status contains Failed' do
        let(:build_state) { 'NO Failed!' }

        it { expect(subject.commit_status('123', 'unused')).to eq('failed') }
      end

      context 'when build status contains Failed' do
        let(:build_state) { 'NO Pending!' }

        it { expect(subject.commit_status('123', 'unused')).to eq('pending') }
      end

      context 'when build status contains anything else' do
        let(:build_state) { 'FOO BAR!' }

        it { expect(subject.commit_status('123', 'unused')).to eq(:error) }
      end
    end
  end
end