Codebase list ruby-gitlab / 04d932e spec / gitlab / client / projects_spec.rb
04d932e

Tree @04d932e (Download .tar.gz)

projects_spec.rb @04d932eraw · history · blame

  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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
require 'spec_helper'

describe Gitlab::Client do
  it { should respond_to :search_projects }

  describe ".projects" do
    before do
      stub_get("/projects", "projects")
      @projects = Gitlab.projects
    end

    it "should get the correct resource" do
      expect(a_get("/projects")).to have_been_made
    end

    it "should return a paginated response of projects" do
      expect(@projects).to be_a Gitlab::PaginatedResponse
      expect(@projects.first.name).to eq("Brute")
      expect(@projects.first.owner.name).to eq("John Smith")
    end
  end

  describe ".project_search" do
    before do
      stub_get("/projects?search=Gitlab", "project_search")
      @project_search = Gitlab.project_search("Gitlab")
    end

    it "should get the correct resource" do
      expect(a_get("/projects?search=Gitlab")).to have_been_made
    end

    it "should return a paginated response of projects found" do
      expect(@project_search).to be_a Gitlab::PaginatedResponse
      expect(@project_search.first.name).to eq("Gitlab")
      expect(@project_search.first.owner.name).to eq("John Smith")
    end
  end

  describe ".project" do
    before do
      stub_get("/projects/3", "project")
      @project = Gitlab.project(3)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/3")).to have_been_made
    end

    it "should return information about a project" do
      expect(@project.name).to eq("Gitlab")
      expect(@project.owner.name).to eq("John Smith")
    end
  end

  describe ".project_events" do
    before do
      stub_get("/projects/2/events", "project_events")
      @events = Gitlab.project_events(2)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/2/events")).to have_been_made
    end

    it "should return a paginated response of events" do
      expect(@events).to be_a Gitlab::PaginatedResponse
      expect(@events.size).to eq(2)
    end

    it "should return the action name of the event" do
      expect(@events.first.action_name).to eq("opened")
    end
  end

  describe ".create_project" do
    before do
      stub_post("/projects", "project")
      @project = Gitlab.create_project('Gitlab')
    end

    it "should get the correct resource" do
      expect(a_post("/projects")).to have_been_made
    end

    it "should return information about a created project" do
      expect(@project.name).to eq("Gitlab")
      expect(@project.owner.name).to eq("John Smith")
    end
  end

  describe ".create_project for user" do
    before do
      stub_post("/users", "user")
      @owner = Gitlab.create_user("john@example.com", "pass", name: 'John Owner')
      stub_post("/projects/user/#{@owner.id}", "project_for_user")
      @project = Gitlab.create_project('Brute', user_id: @owner.id)
    end

    it "should return information about a created project" do
      expect(@project.name).to eq("Brute")
      expect(@project.owner.name).to eq("John Owner")
    end
  end

  describe ".delete_project" do
    before do
      stub_delete("/projects/Gitlab", "project")
      @project = Gitlab.delete_project('Gitlab')
    end

    it "should get the correct resource" do
      expect(a_delete("/projects/Gitlab")).to have_been_made
    end

    it "should return information about a deleted project" do
      expect(@project.name).to eq("Gitlab")
      expect(@project.owner.name).to eq("John Smith")
    end
  end

  describe ".create_fork" do
    context "without sudo option" do
      before do
        stub_post("/projects/3/fork", "project_fork")
        @project = Gitlab.create_fork(3)
      end

      it "should post to the correct resource" do
        expect(a_post("/projects/3/fork")).to have_been_made
      end

      it "should return information about the forked project" do
        expect(@project.forked_from_project.id).to eq(3)
        expect(@project.id).to eq(20)
      end
    end

    context "with the sudo option" do
      before do
        stub_post("/projects/3/fork", "project_forked_for_user")
        @sudoed_username = 'jack.smith'
        @project = Gitlab.create_fork(3, sudo: @sudoed_username)
      end

      it "should post to the correct resource" do
        expect(a_post("/projects/3/fork")).to have_been_made
      end

      it "should return information about the forked project" do
        expect(@project.forked_from_project.id).to eq(3)
        expect(@project.id).to eq(20)
        expect(@project.owner.username).to eq(@sudoed_username)
      end
    end
  end

  describe ".team_members" do
    before do
      stub_get("/projects/3/members", "team_members")
      @team_members = Gitlab.team_members(3)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/3/members")).to have_been_made
    end

    it "should return a paginated response of team members" do
      expect(@team_members).to be_a Gitlab::PaginatedResponse
      expect(@team_members.first.name).to eq("John Smith")
    end
  end

  describe ".team_member" do
    before do
      stub_get("/projects/3/members/1", "team_member")
      @team_member = Gitlab.team_member(3, 1)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/3/members/1")).to have_been_made
    end

    it "should return information about a team member" do
      expect(@team_member.name).to eq("John Smith")
    end
  end

  describe ".add_team_member" do
    before do
      stub_post("/projects/3/members", "team_member")
      @team_member = Gitlab.add_team_member(3, 1, 40)
    end

    it "should get the correct resource" do
      expect(a_post("/projects/3/members").
          with(body: { user_id: '1', access_level: '40' })).to have_been_made
    end

    it "should return information about an added team member" do
      expect(@team_member.name).to eq("John Smith")
    end
  end

  describe ".edit_team_member" do
    before do
      stub_put("/projects/3/members/1", "team_member")
      @team_member = Gitlab.edit_team_member(3, 1, 40)
    end

    it "should get the correct resource" do
      expect(a_put("/projects/3/members/1").
          with(body: { access_level: '40' })).to have_been_made
    end

    it "should return information about an edited team member" do
      expect(@team_member.name).to eq("John Smith")
    end
  end

  describe ".remove_team_member" do
    before do
      stub_delete("/projects/3/members/1", "team_member")
      @team_member = Gitlab.remove_team_member(3, 1)
    end

    it "should get the correct resource" do
      expect(a_delete("/projects/3/members/1")).to have_been_made
    end

    it "should return information about a removed team member" do
      expect(@team_member.name).to eq("John Smith")
    end
  end

  describe ".project_hooks" do
    before do
      stub_get("/projects/1/hooks", "project_hooks")
      @hooks = Gitlab.project_hooks(1)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/1/hooks")).to have_been_made
    end

    it "should return a paginated response of hooks" do
      expect(@hooks).to be_a Gitlab::PaginatedResponse
      expect(@hooks.first.url).to eq("https://api.example.net/v1/webhooks/ci")
    end
  end

  describe ".project_hook" do
    before do
      stub_get("/projects/1/hooks/1", "project_hook")
      @hook = Gitlab.project_hook(1, 1)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/1/hooks/1")).to have_been_made
    end

    it "should return information about a hook" do
      expect(@hook.url).to eq("https://api.example.net/v1/webhooks/ci")
    end
  end

  describe ".add_project_hook" do
    context "without specified events" do
      before do
        stub_post("/projects/1/hooks", "project_hook")
        @hook = Gitlab.add_project_hook(1, "https://api.example.net/v1/webhooks/ci")
      end

      it "should get the correct resource" do
        body = { url: "https://api.example.net/v1/webhooks/ci" }
        expect(a_post("/projects/1/hooks").with(body: body)).to have_been_made
      end

      it "should return information about an added hook" do
        expect(@hook.url).to eq("https://api.example.net/v1/webhooks/ci")
      end
    end

    context "with specified events" do
      before do
        stub_post("/projects/1/hooks", "project_hook")
        @hook = Gitlab.add_project_hook(1, "https://api.example.net/v1/webhooks/ci", push_events: true, merge_requests_events: true)
      end

      it "should get the correct resource" do
        body = { url: "https://api.example.net/v1/webhooks/ci", push_events: "true", merge_requests_events: "true" }
        expect(a_post("/projects/1/hooks").with(body: body)).to have_been_made
      end

      it "should return information about an added hook" do
        expect(@hook.url).to eq("https://api.example.net/v1/webhooks/ci")
      end
    end
  end

  describe ".edit_project_hook" do
    before do
      stub_put("/projects/1/hooks/1", "project_hook")
      @hook = Gitlab.edit_project_hook(1, 1, "https://api.example.net/v1/webhooks/ci")
    end

    it "should get the correct resource" do
      body = { url: "https://api.example.net/v1/webhooks/ci" }
      expect(a_put("/projects/1/hooks/1").with(body: body)).to have_been_made
    end

    it "should return information about an edited hook" do
      expect(@hook.url).to eq("https://api.example.net/v1/webhooks/ci")
    end
  end

  describe ".edit_project" do
    context "using project ID" do
      before do
        stub_put("/projects/3", "project_edit").with(body: { name: "Gitlab-edit" })
        @edited_project = Gitlab.edit_project(3, name: "Gitlab-edit")
      end

      it "should get the correct resource" do
        expect(a_put("/projects/3").with(body: { name: "Gitlab-edit" })).to have_been_made
      end

      it "should return information about an edited project" do
        expect(@edited_project.name).to eq("Gitlab-edit")
      end
    end

    context "using namespaced project path" do
      it "encodes the path properly" do
        stub = stub_put("/projects/namespace%2Fpath", "project_edit").with(body: { name: "Gitlab-edit" })
        Gitlab.edit_project('namespace/path', name: "Gitlab-edit")
        expect(stub).to have_been_requested
      end
    end
  end

  describe ".delete_project_hook" do
    context "when empty response" do
      before do
        stub_request(:delete, "#{Gitlab.endpoint}/projects/1/hooks/1").
          with(headers: { 'PRIVATE-TOKEN' => Gitlab.private_token }).
          to_return(body: '')
        @hook = Gitlab.delete_project_hook(1, 1)
      end

      it "should get the correct resource" do
        expect(a_delete("/projects/1/hooks/1")).to have_been_made
      end

      it "should return false" do
        expect(@hook).to be(false)
      end
    end

    context "when JSON response" do
      before do
        stub_delete("/projects/1/hooks/1", "project_hook")
        @hook = Gitlab.delete_project_hook(1, 1)
      end

      it "should get the correct resource" do
        expect(a_delete("/projects/1/hooks/1")).to have_been_made
      end

      it "should return information about a deleted hook" do
        expect(@hook.url).to eq("https://api.example.net/v1/webhooks/ci")
      end
    end
  end

  describe ".push_rule" do
    before do
      stub_get("/projects/1/push_rule", "push_rule")
      @push_rule = Gitlab.push_rule(1)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/1/push_rule")).to have_been_made
    end

    it "should return information about a push rule" do
      expect(@push_rule.commit_message_regex).to eq("\\b[A-Z]{3}-[0-9]+\\b")
    end
  end

  describe ".add_push_rule" do
    before do
      stub_post("/projects/1/push_rule", "push_rule")
      @push_rule = Gitlab.add_push_rule(1, { deny_delete_tag: false, commit_message_regex: "\\b[A-Z]{3}-[0-9]+\\b" })
    end

    it "should get the correct resource" do
      expect(a_post("/projects/1/push_rule")).to have_been_made
    end

    it "should return information about an added push rule" do
      expect(@push_rule.commit_message_regex).to eq("\\b[A-Z]{3}-[0-9]+\\b")
    end
  end

  describe ".edit_push_rule" do
    before do
      stub_put("/projects/1/push_rule", "push_rule")
      @push_rule = Gitlab.edit_push_rule(1, { deny_delete_tag: false, commit_message_regex: "\\b[A-Z]{3}-[0-9]+\\b" })
    end

    it "should get the correct resource" do
      expect(a_put("/projects/1/push_rule")).to have_been_made
    end

    it "should return information about an edited push rule" do
      expect(@push_rule.commit_message_regex).to eq("\\b[A-Z]{3}-[0-9]+\\b")
    end
  end

  describe ".delete_push_rule" do
    context "when empty response" do
      before do
        stub_request(:delete, "#{Gitlab.endpoint}/projects/1/push_rule").
          with(headers: { 'PRIVATE-TOKEN' => Gitlab.private_token }).
          to_return(body: '')
        @push_rule = Gitlab.delete_push_rule(1)
      end

      it "should get the correct resource" do
        expect(a_delete("/projects/1/push_rule")).to have_been_made
      end

      it "should return false" do
        expect(@push_rule).to be(false)
      end
    end

    context "when JSON response" do
      before do
        stub_delete("/projects/1/push_rule", "push_rule")
        @push_rule = Gitlab.delete_push_rule(1)
      end

      it "should get the correct resource" do
        expect(a_delete("/projects/1/push_rule")).to have_been_made
      end

      it "should return information about a deleted push rule" do
        expect(@push_rule.commit_message_regex).to eq("\\b[A-Z]{3}-[0-9]+\\b")
      end
    end
  end

  describe ".make_forked_from" do
    before do
      stub_post("/projects/42/fork/24", "project_fork_link")
      @forked_project_link = Gitlab.make_forked_from(42, 24)
    end

    it "should get the correct resource" do
      expect(a_post("/projects/42/fork/24")).to have_been_made
    end

    it "should return information about a forked project" do
      expect(@forked_project_link.forked_from_project_id).to eq(24)
      expect(@forked_project_link.forked_to_project_id).to eq(42)
    end
  end

  describe ".remove_forked" do
    before do
      stub_delete("/projects/42/fork", "project_fork_link")
      @forked_project_link = Gitlab.remove_forked(42)
    end

    it "should be sent to correct resource" do
      expect(a_delete("/projects/42/fork")).to have_been_made
    end

    it "should return information about an unforked project" do
      expect(@forked_project_link.forked_to_project_id).to eq(42)
    end
  end

  describe ".deploy_keys" do
    before do
      stub_get("/projects/42/deploy_keys", "project_keys")
      @deploy_keys = Gitlab.deploy_keys(42)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/42/deploy_keys")).to have_been_made
    end

    it "should return project deploy keys" do
      expect(@deploy_keys).to be_a Gitlab::PaginatedResponse
      expect(@deploy_keys.first.id).to eq 2
      expect(@deploy_keys.first.title).to eq "Key Title"
      expect(@deploy_keys.first.key).to match(/ssh-rsa/)
    end
  end

  describe ".deploy_key" do
    before do
      stub_get("/projects/42/deploy_keys/2", "project_key")
      @deploy_key = Gitlab.deploy_key(42, 2)
    end

    it "should get the correct resource" do
      expect(a_get("/projects/42/deploy_keys/2")).to have_been_made
    end

    it "should return project deploy key" do
      expect(@deploy_key.id).to eq 2
      expect(@deploy_key.title).to eq "Key Title"
      expect(@deploy_key.key).to match(/ssh-rsa/)
    end
  end

  describe ".delete_deploy_key" do
    before do
      stub_delete("/projects/42/deploy_keys/2", "project_key")
      @deploy_key = Gitlab.delete_deploy_key(42, 2)
    end

    it "should get the correct resource" do
      expect(a_delete("/projects/42/deploy_keys/2")).to have_been_made
    end

    it "should return information about a deleted key" do
      expect(@deploy_key.id).to eq(2)
    end
  end

  describe ".enable_deploy_key" do
    before do
      stub_post("/projects/42/deploy_keys/2/enable", "project_key")
      @deploy_key = Gitlab.enable_deploy_key(42, 2)
    end

    it "should get the correct resource" do
      expect(a_post("/projects/42/deploy_keys/2/enable").
          with(body: { id: '42', key_id: '2' })).to have_been_made
    end

    it "should return information about an enabled key" do
      expect(@deploy_key.id).to eq(2)
    end
  end

  describe ".disable_deploy_key" do
    before do
      stub_post("/projects/42/deploy_keys/2/disable", "project_key")
      @deploy_key = Gitlab.disable_deploy_key(42, 2)
    end

    it "should get the correct resource" do
      expect(a_post("/projects/42/deploy_keys/2/disable").
          with(body: { id: '42', key_id: '2' })).to have_been_made
    end

    it "should return information about a disabled key" do
      expect(@deploy_key.id).to eq(2)
    end
  end

  describe ".share_project_with_group" do
    before do
      stub_post("/projects/3/share", "group")
      @group = Gitlab.share_project_with_group(3, 10, 40)
    end

    it "should get the correct resource" do
      expect(a_post("/projects/3/share").
          with(body: { group_id: '10', group_access: '40' })).to have_been_made
    end

    it "should return information about an added group" do
      expect(@group.id).to eq(10)
    end
  end

  describe ".star_project" do
    before do
      stub_post("/projects/3/star", "project_star")
      @starred_project = Gitlab.star_project(3)
    end

    it "should get the correct resource" do
      expect(a_post("/projects/3/star")).to have_been_made
    end

    it "should return information about the starred project" do
      expect(@starred_project.id).to eq(3)
    end
  end

  describe ".unstar_project" do
    before do
      stub_delete("/projects/3/star", "project_unstar")
      @unstarred_project = Gitlab.unstar_project(3)
    end

    it "should get the correct resource" do
      expect(a_delete("/projects/3/star")).to have_been_made
    end

    it "should return information about the unstarred project" do
      expect(@unstarred_project.id).to eq(3)
    end
  end
end