projects_spec.rb 23.2 KB
Newer Older
N
Nihad Abbasov 已提交
1 2 3
require 'spec_helper'

describe Gitlab::API do
4
  include ApiHelpers
5
  before(:each) { enable_observers }
6

7 8 9
  let(:user) { create(:user) }
  let(:user2) { create(:user) }
  let(:user3) { create(:user) }
A
Angus MacArthur 已提交
10
  let(:admin) { create(:admin) }
11
  let!(:project) { create(:project_with_code, creator_id: user.id) }
12
  let!(:hook) { create(:project_hook, project: project, url: "http://example.com") }
13 14 15
  let!(:snippet) { create(:snippet, author: user, project: project, title: 'example') }
  let!(:users_project) { create(:users_project, user: user, project: project, project_access: UsersProject::MASTER) }
  let!(:users_project2) { create(:users_project, user: user3, project: project, project_access: UsersProject::DEVELOPER) }
M
Matt Humphrey 已提交
16 17
  let(:key) { create(:key, project: project) }

D
Dmitriy Zaporozhets 已提交
18
  before { project.team << [user, :reporter] }
N
Nihad Abbasov 已提交
19 20

  describe "GET /projects" do
21 22 23 24 25
    context "when unauthenticated" do
      it "should return authentication error" do
        get api("/projects")
        response.status.should == 401
      end
N
Nihad Abbasov 已提交
26 27
    end

28
    context "when authenticated" do
N
Nihad Abbasov 已提交
29
      it "should return an array of projects" do
R
Robert Speicher 已提交
30
        get api("/projects", user)
N
Nihad Abbasov 已提交
31
        response.status.should == 200
N
Nihad Abbasov 已提交
32 33 34
        json_response.should be_an Array
        json_response.first['name'].should == project.name
        json_response.first['owner']['email'].should == user.email
N
Nihad Abbasov 已提交
35 36 37 38
      end
    end
  end

39
  describe "POST /projects" do
40 41 42 43 44 45 46 47 48 49 50 51 52 53
    context "maximum number of projects reached" do
      before do
        (1..user2.projects_limit).each do |project|
          post api("/projects", user2), name: "foo#{project}"
        end
      end

      it "should not create new project" do
        expect {
          post api("/projects", user2), name: 'foo'
        }.to change {Project.count}.by(0)
      end
    end

54
    it "should create new project without path" do
A
Alex Denisov 已提交
55
      expect { post api("/projects", user), name: 'foo' }.to change {Project.count}.by(1)
56
    end
A
Alex Denisov 已提交
57 58 59 60 61

    it "should not create new project without name" do
      expect { post api("/projects", user) }.to_not change {Project.count}
    end

62 63 64 65 66
    it "should return a 400 error if name not given" do
      post api("/projects", user)
      response.status.should == 400
    end

67 68 69 70 71 72
    it "should create last project before reaching project limit" do
      (1..user2.projects_limit-1).each { |p| post api("/projects", user2), name: "foo#{p}" }
      post api("/projects", user2), name: "foo"
      response.status.should == 201
    end

A
Alex Denisov 已提交
73 74
    it "should respond with 201 on success" do
      post api("/projects", user), name: 'foo'
75
      response.status.should == 201
76
    end
A
Alex Denisov 已提交
77

78
    it "should respond with 400 if name is not given" do
A
Alex Denisov 已提交
79
      post api("/projects", user)
80
      response.status.should == 400
81
    end
A
Alex Denisov 已提交
82

83 84 85 86 87 88 89 90
    it "should return a 403 error if project limit reached" do
      (1..user.projects_limit).each do |p|
        post api("/projects", user), name: "foo#{p}"
      end
      post api("/projects", user), name: 'bar'
      response.status.should == 403
    end

A
Alex Denisov 已提交
91
    it "should assign attributes to project" do
92
      project = attributes_for(:project, {
A
Alex Denisov 已提交
93 94 95 96 97 98 99 100 101 102 103
        description: Faker::Lorem.sentence,
        default_branch: 'stable',
        issues_enabled: false,
        wall_enabled: false,
        merge_requests_enabled: false,
        wiki_enabled: false
      })

      post api("/projects", user), project

      project.each_pair do |k,v|
104
        next if k == :path
A
Alex Denisov 已提交
105 106
        json_response[k.to_s].should == v
      end
107 108 109
    end
  end

A
Angus MacArthur 已提交
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
  describe "POST /projects/user/:id" do
    before { admin }

    it "should create new project without path" do
      expect { post api("/projects/user/#{user.id}", admin), name: 'foo' }.to change {Project.count}.by(1)
    end

    it "should not create new project without name" do
      expect { post api("/projects/user/#{user.id}", admin) }.to_not change {Project.count}
    end

    it "should respond with 201 on success" do
      post api("/projects/user/#{user.id}", admin), name: 'foo'
      response.status.should == 201
    end

    it "should respond with 404 on failure" do
      post api("/projects/user/#{user.id}", admin)
      response.status.should == 404
    end

    it "should assign attributes to project" do
      project = attributes_for(:project, {
        description: Faker::Lorem.sentence,
        default_branch: 'stable',
        issues_enabled: false,
        wall_enabled: false,
        merge_requests_enabled: false,
        wiki_enabled: false
      })

      post api("/projects/user/#{user.id}", admin), project

      project.each_pair do |k,v|
        next if k == :path
        json_response[k.to_s].should == v
      end
    end
  end

N
Nihad Abbasov 已提交
150 151
  describe "GET /projects/:id" do
    it "should return a project by id" do
R
Robert Speicher 已提交
152
      get api("/projects/#{project.id}", user)
N
Nihad Abbasov 已提交
153
      response.status.should == 200
N
Nihad Abbasov 已提交
154 155
      json_response['name'].should == project.name
      json_response['owner']['email'].should == user.email
N
Nihad Abbasov 已提交
156
    end
157

158
    it "should return a project by path name" do
159
      get api("/projects/#{project.id}", user)
160 161 162
      response.status.should == 200
      json_response['name'].should == project.name
    end
N
Nihad Abbasov 已提交
163 164

    it "should return a 404 error if not found" do
R
Robert Speicher 已提交
165
      get api("/projects/42", user)
N
Nihad Abbasov 已提交
166
      response.status.should == 404
A
Alex Denisov 已提交
167
      json_response['message'].should == '404 Not Found'
N
Nihad Abbasov 已提交
168
    end
169 170 171 172 173 174

    it "should return a 404 error if user is not a member" do
      other_user = create(:user)
      get api("/projects/#{project.id}", other_user)
      response.status.should == 404
    end
N
Nihad Abbasov 已提交
175 176 177 178
  end

  describe "GET /projects/:id/repository/branches" do
    it "should return an array of project branches" do
179
      get api("/projects/#{project.id}/repository/branches", user)
N
Nihad Abbasov 已提交
180
      response.status.should == 200
N
Nihad Abbasov 已提交
181 182
      json_response.should be_an Array
      json_response.first['name'].should == project.repo.heads.sort_by(&:name).first.name
N
Nihad Abbasov 已提交
183 184 185
    end
  end

186 187
  describe "GET /projects/:id/repository/branches/:branch" do
    it "should return the branch information for a single branch" do
188
      get api("/projects/#{project.id}/repository/branches/new_design", user)
189 190 191 192
      response.status.should == 200

      json_response['name'].should == 'new_design'
      json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1'
193 194
      json_response['protected'].should == false
    end
195 196 197 198 199

    it "should return a 404 error if branch is not available" do
      get api("/projects/#{project.id}/repository/branches/unknown", user)
      response.status.should == 404
    end
200 201 202 203 204 205 206 207 208 209 210
  end

  describe "PUT /projects/:id/repository/branches/:branch/protect" do
    it "should protect a single branch" do
      put api("/projects/#{project.id}/repository/branches/new_design/protect", user)
      response.status.should == 200

      json_response['name'].should == 'new_design'
      json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1'
      json_response['protected'].should == true
    end
211 212 213 214 215 216 217 218 219 220 221

    it "should return a 404 error if branch not found" do
      put api("/projects/#{project.id}/repository/branches/unknown/protect", user)
      response.status.should == 404
    end

    it "should return success when protect branch again" do
      put api("/projects/#{project.id}/repository/branches/new_design/protect", user)
      put api("/projects/#{project.id}/repository/branches/new_design/protect", user)
      response.status.should == 200
    end
222 223 224 225 226 227 228 229 230 231
  end

  describe "PUT /projects/:id/repository/branches/:branch/unprotect" do
    it "should unprotect a single branch" do
      put api("/projects/#{project.id}/repository/branches/new_design/unprotect", user)
      response.status.should == 200

      json_response['name'].should == 'new_design'
      json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1'
      json_response['protected'].should == false
232
    end
233 234 235 236 237 238 239 240 241 242 243

    it "should return success when unprotect branch" do
      put api("/projects/#{project.id}/repository/branches/unknown/unprotect", user)
      response.status.should == 404
    end

    it "should return success when unprotect branch again" do
      put api("/projects/#{project.id}/repository/branches/new_design/unprotect", user)
      put api("/projects/#{project.id}/repository/branches/new_design/unprotect", user)
      response.status.should == 200
    end
244 245
  end

N
Nihad Abbasov 已提交
246 247
  describe "GET /projects/:id/members" do
    it "should return project team members" do
248
      get api("/projects/#{project.id}/members", user)
M
miks 已提交
249 250
      response.status.should == 200
      json_response.should be_an Array
M
miks 已提交
251
      json_response.count.should == 2
D
Dmitriy Zaporozhets 已提交
252
      json_response.map { |u| u['email'] }.should include user.email
M
miks 已提交
253
    end
V
Valeriy Sizov 已提交
254 255

    it "finds team members with query string" do
256
      get api("/projects/#{project.id}/members", user), query: user.username
V
Valeriy Sizov 已提交
257 258 259 260 261
      response.status.should == 200
      json_response.should be_an Array
      json_response.count.should == 1
      json_response.first['email'].should == user.email
    end
262 263 264 265 266

    it "should return a 404 error if id not found" do
      get api("/projects/9999/members", user)
      response.status.should == 404
    end
M
miks 已提交
267 268
  end

N
Nihad Abbasov 已提交
269 270
  describe "GET /projects/:id/members/:user_id" do
    it "should return project team member" do
271
      get api("/projects/#{project.id}/members/#{user.id}", user)
N
Nihad Abbasov 已提交
272 273 274
      response.status.should == 200
      json_response['email'].should == user.email
      json_response['access_level'].should == UsersProject::MASTER
M
miks 已提交
275
    end
276 277 278 279 280

    it "should return a 404 error if user id not found" do
      get api("/projects/#{project.id}/members/1234", user)
      response.status.should == 404
    end
M
miks 已提交
281 282
  end

N
Nihad Abbasov 已提交
283 284
  describe "POST /projects/:id/members" do
    it "should add user to project team" do
M
miks 已提交
285
      expect {
286
        post api("/projects/#{project.id}/members", user), user_id: user2.id,
N
Nihad Abbasov 已提交
287 288 289 290 291 292 293
          access_level: UsersProject::DEVELOPER
      }.to change { UsersProject.count }.by(1)

      response.status.should == 201
      json_response['email'].should == user2.email
      json_response['access_level'].should == UsersProject::DEVELOPER
    end
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

    it "should return a 201 status if user is already project member" do
      post api("/projects/#{project.id}/members", user), user_id: user2.id,
        access_level: UsersProject::DEVELOPER
      expect {
        post api("/projects/#{project.id}/members", user), user_id: user2.id,
          access_level: UsersProject::DEVELOPER
      }.not_to change { UsersProject.count }.by(1)

      response.status.should == 201
      json_response['email'].should == user2.email
      json_response['access_level'].should == UsersProject::DEVELOPER
    end

    it "should return a 400 error when user id is not given" do
      post api("/projects/#{project.id}/members", user), access_level: UsersProject::MASTER
      response.status.should == 400
    end

    it "should return a 400 error when access level is not given" do
      post api("/projects/#{project.id}/members", user), user_id: user2.id
      response.status.should == 400
    end

    it "should return a 422 error when access level is not known" do
      post api("/projects/#{project.id}/members", user), user_id: user2.id, access_level: 1234
      response.status.should == 422
    end
N
Nihad Abbasov 已提交
322 323 324 325
  end

  describe "PUT /projects/:id/members/:user_id" do
    it "should update project team member" do
326
      put api("/projects/#{project.id}/members/#{user3.id}", user), access_level: UsersProject::MASTER
N
Nihad Abbasov 已提交
327 328 329
      response.status.should == 200
      json_response['email'].should == user3.email
      json_response['access_level'].should == UsersProject::MASTER
M
miks 已提交
330
    end
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345

    it "should return a 404 error if user_id is not found" do
      put api("/projects/#{project.id}/members/1234", user), access_level: UsersProject::MASTER
      response.status.should == 404
    end

    it "should return a 400 error when access level is not given" do
      put api("/projects/#{project.id}/members/#{user3.id}", user)
      response.status.should == 400
    end

    it "should return a 422 error when access level is not known" do
      put api("/projects/#{project.id}/members/#{user3.id}", user), access_level: 123
      response.status.should == 422
    end
M
miks 已提交
346 347
  end

N
Nihad Abbasov 已提交
348 349
  describe "DELETE /projects/:id/members/:user_id" do
    it "should remove user from project team" do
M
miks 已提交
350
      expect {
351
        delete api("/projects/#{project.id}/members/#{user3.id}", user)
N
Nihad Abbasov 已提交
352
      }.to change { UsersProject.count }.by(-1)
M
miks 已提交
353
    end
354 355 356 357 358 359 360

    it "should return 200 if team member is not part of a project" do
      delete api("/projects/#{project.id}/members/#{user3.id}", user)
      expect {
        delete api("/projects/#{project.id}/members/#{user3.id}", user)
      }.to_not change { UsersProject.count }.by(1)
    end
361 362 363 364 365 366

    it "should return 200 if team member already removed" do
      delete api("/projects/#{project.id}/members/#{user3.id}", user)
      delete api("/projects/#{project.id}/members/#{user3.id}", user)
      response.status.should == 200
    end
M
miks 已提交
367 368
  end

369 370 371 372 373 374 375 376 377 378 379
  describe "DELETE /projects/:id/members/:user_id" do
    it "should return 200 OK when the user was not member" do
      expect {
        delete api("/projects/#{project.id}/members/1000000", user)
      }.to change { UsersProject.count }.by(0)
      response.status.should == 200
      json_response['message'].should == "Access revoked"
      json_response['id'].should == 1000000
    end
  end

M
miks 已提交
380
  describe "GET /projects/:id/hooks" do
381 382 383 384
    context "authorized user" do
      it "should return project hooks" do
        get api("/projects/#{project.id}/hooks", user)
        response.status.should == 200
M
miks 已提交
385

386 387 388 389 390
        json_response.should be_an Array
        json_response.count.should == 1
        json_response.first['url'].should == "http://example.com"
      end
    end
M
miks 已提交
391

392 393 394 395 396
    context "unauthorized user" do
      it "should not access project hooks" do
        get api("/projects/#{project.id}/hooks", user3)
        response.status.should == 403
      end
M
miks 已提交
397 398 399
    end
  end

400
  describe "GET /projects/:id/hooks/:hook_id" do
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
    context "authorized user" do
      it "should return a project hook" do
        get api("/projects/#{project.id}/hooks/#{hook.id}", user)
        response.status.should == 200
        json_response['url'].should == hook.url
      end

      it "should return a 404 error if hook id is not available" do
        get api("/projects/#{project.id}/hooks/1234", user)
        response.status.should == 404
      end
    end

    context "unauthorized user" do
      it "should not access an existing hook" do
        get api("/projects/#{project.id}/hooks/#{hook.id}", user3)
        response.status.should == 403
      end
419
    end
420 421 422 423 424

    it "should return a 404 error if hook id is not available" do
      get api("/projects/#{project.id}/hooks/1234", user)
      response.status.should == 404
    end
425 426 427
  end

  describe "POST /projects/:id/hooks" do
M
miks 已提交
428 429
    it "should add hook to project" do
      expect {
430
        post api("/projects/#{project.id}/hooks", user),
431
          url: "http://example.com"
M
miks 已提交
432
      }.to change {project.hooks.count}.by(1)
433
      response.status.should == 201
M
miks 已提交
434
    end
435 436 437 438 439

    it "should return a 400 error if url not given" do
      post api("/projects/#{project.id}/hooks", user)
      response.status.should == 400
    end
440 441 442 443 444

    it "should return a 422 error if url not valid" do
      post api("/projects/#{project.id}/hooks", user), "url" => "ftp://example.com"
      response.status.should == 422
    end
M
miks 已提交
445
  end
N
Nihad Abbasov 已提交
446

447 448
  describe "PUT /projects/:id/hooks/:hook_id" do
    it "should update an existing project hook" do
449
      put api("/projects/#{project.id}/hooks/#{hook.id}", user),
N
Nihad Abbasov 已提交
450
        url: 'http://example.org'
451
      response.status.should == 200
N
Nihad Abbasov 已提交
452
      json_response['url'].should == 'http://example.org'
453
    end
N
Nihad Abbasov 已提交
454

455
    it "should return 404 error if hook id not found" do
456 457 458 459 460 461 462 463
      put api("/projects/#{project.id}/hooks/1234", user), url: 'http://example.org'
      response.status.should == 404
    end

    it "should return 400 error if url is not given" do
      put api("/projects/#{project.id}/hooks/#{hook.id}", user)
      response.status.should == 400
    end
464 465 466 467 468

    it "should return a 422 error if url is not valid" do
      put api("/projects/#{project.id}/hooks/#{hook.id}", user), url: 'ftp://example.com'
      response.status.should == 422
    end
469
  end
M
miks 已提交
470

471
  describe "DELETE /projects/:id/hooks" do
M
miks 已提交
472 473
    it "should delete hook from project" do
      expect {
474
        delete api("/projects/#{project.id}/hooks", user), hook_id: hook.id
M
miks 已提交
475
      }.to change {project.hooks.count}.by(-1)
476
      response.status.should == 200
M
miks 已提交
477
    end
478 479

    it "should return success when deleting hook" do
480
      delete api("/projects/#{project.id}/hooks", user), hook_id: hook.id
481 482 483 484
      response.status.should == 200
    end

    it "should return success when deleting non existent hook" do
485
      delete api("/projects/#{project.id}/hooks", user), hook_id: 42
486 487
      response.status.should == 200
    end
488 489 490 491 492

    it "should return a 400 error if hook id not given" do
      delete api("/projects/#{project.id}/hooks", user)
      response.status.should == 400
    end
M
miks 已提交
493 494
  end

N
Nihad Abbasov 已提交
495 496
  describe "GET /projects/:id/repository/tags" do
    it "should return an array of project tags" do
497
      get api("/projects/#{project.id}/repository/tags", user)
N
Nihad Abbasov 已提交
498
      response.status.should == 200
N
Nihad Abbasov 已提交
499 500
      json_response.should be_an Array
      json_response.first['name'].should == project.repo.tags.sort_by(&:name).reverse.first.name
N
Nihad Abbasov 已提交
501 502
    end
  end
N
Nihad Abbasov 已提交
503

504 505
  describe "GET /projects/:id/repository/commits" do
    context "authorized user" do
D
Dmitriy Zaporozhets 已提交
506
      before { project.team << [user2, :reporter] }
507 508

      it "should return project commits" do
509
        get api("/projects/#{project.id}/repository/commits", user)
510 511 512
        response.status.should == 200

        json_response.should be_an Array
S
Sebastian Ziebell 已提交
513
        json_response.first['id'].should == project.repository.commit.id
514 515 516 517 518
      end
    end

    context "unauthorized user" do
      it "should not return project commits" do
519
        get api("/projects/#{project.id}/repository/commits")
520 521 522 523 524
        response.status.should == 401
      end
    end
  end

N
Nihad Abbasov 已提交
525
  describe "GET /projects/:id/snippets" do
N
Nihad Abbasov 已提交
526
    it "should return an array of project snippets" do
527
      get api("/projects/#{project.id}/snippets", user)
N
Nihad Abbasov 已提交
528 529 530 531 532 533
      response.status.should == 200
      json_response.should be_an Array
      json_response.first['title'].should == snippet.title
    end
  end

N
Nihad Abbasov 已提交
534 535
  describe "GET /projects/:id/snippets/:snippet_id" do
    it "should return a project snippet" do
536
      get api("/projects/#{project.id}/snippets/#{snippet.id}", user)
N
Nihad Abbasov 已提交
537
      response.status.should == 200
N
Nihad Abbasov 已提交
538
      json_response['title'].should == snippet.title
N
Nihad Abbasov 已提交
539
    end
540 541 542 543 544

    it "should return a 404 error if snippet id not found" do
      get api("/projects/#{project.id}/snippets/1234", user)
      response.status.should == 404
    end
N
Nihad Abbasov 已提交
545 546 547 548
  end

  describe "POST /projects/:id/snippets" do
    it "should create a new project snippet" do
549
      post api("/projects/#{project.id}/snippets", user),
550
        title: 'api test', file_name: 'sample.rb', code: 'test'
N
Nihad Abbasov 已提交
551
      response.status.should == 201
N
Nihad Abbasov 已提交
552
      json_response['title'].should == 'api test'
N
Nihad Abbasov 已提交
553
    end
554 555 556 557 558 559

    it "should return a 400 error if title is not given" do
      post api("/projects/#{project.id}/snippets", user),
        file_name: 'sample.rb', code: 'test'
      response.status.should == 400
    end
560 561 562 563 564 565 566 567 568 569 570 571

    it "should return a 400 error if file_name not given" do
      post api("/projects/#{project.id}/snippets", user),
        title: 'api test', code: 'test'
      response.status.should == 400
    end

    it "should return a 400 error if code not given" do
      post api("/projects/#{project.id}/snippets", user),
        title: 'api test', file_name: 'sample.rb'
      response.status.should == 400
    end
N
Nihad Abbasov 已提交
572 573
  end

574
  describe "PUT /projects/:id/snippets/:shippet_id" do
575
    it "should update an existing project snippet" do
576
      put api("/projects/#{project.id}/snippets/#{snippet.id}", user),
577
        code: 'updated code'
578 579
      response.status.should == 200
      json_response['title'].should == 'example'
580
      snippet.reload.content.should == 'updated code'
581
    end
582 583 584 585 586 587 588

    it "should update an existing project snippet with new title" do
      put api("/projects/#{project.id}/snippets/#{snippet.id}", user),
        title: 'other api test'
      response.status.should == 200
      json_response['title'].should == 'other api test'
    end
589 590
  end

N
Nihad Abbasov 已提交
591
  describe "DELETE /projects/:id/snippets/:snippet_id" do
M
m16a1 已提交
592
    it "should delete existing project snippet" do
N
Nihad Abbasov 已提交
593
      expect {
594
        delete api("/projects/#{project.id}/snippets/#{snippet.id}", user)
595
      }.to change { Snippet.count }.by(-1)
596 597 598 599 600 601
      response.status.should == 200
    end

    it "should return success when deleting unknown snippet id" do
      delete api("/projects/#{project.id}/snippets/1234", user)
      response.status.should == 200
N
Nihad Abbasov 已提交
602 603
    end
  end
604 605 606

  describe "GET /projects/:id/snippets/:snippet_id/raw" do
    it "should get a raw project snippet" do
607
      get api("/projects/#{project.id}/snippets/#{snippet.id}/raw", user)
608 609
      response.status.should == 200
    end
610 611 612 613 614

    it "should return a 404 error if raw project snippet not found" do
      get api("/projects/#{project.id}/snippets/5555/raw", user)
      response.status.should == 404
    end
615
  end
616

617
  describe "GET /projects/:id/repository/commits/:sha/blob" do
618
    it "should get the raw file contents" do
619
      get api("/projects/#{project.id}/repository/commits/master/blob?filepath=README.md", user)
620 621 622 623
      response.status.should == 200
    end

    it "should return 404 for invalid branch_name" do
624
      get api("/projects/#{project.id}/repository/commits/invalid_branch_name/blob?filepath=README.md", user)
625 626 627 628
      response.status.should == 404
    end

    it "should return 404 for invalid file" do
629
      get api("/projects/#{project.id}/repository/commits/master/blob?filepath=README.invalid", user)
630 631
      response.status.should == 404
    end
632 633 634 635 636

    it "should return a 400 error if filepath is missing" do
      get api("/projects/#{project.id}/repository/commits/master/blob", user)
      response.status.should == 400
    end
637
  end
M
Matt Humphrey 已提交
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692

  describe "GET /projects/:id/keys" do
    it "should return array of ssh keys" do
      project.deploy_keys << key
      project.save
      get api("/projects/#{project.id}/keys", user)
      response.status.should == 200
      json_response.should be_an Array
      json_response.first['title'].should == key.title
    end
  end

  describe "GET /projects/:id/keys/:key_id" do
    it "should return a single key" do
      project.deploy_keys << key
      project.save
      get api("/projects/#{project.id}/keys/#{key.id}", user)
      response.status.should == 200
      json_response['title'].should == key.title
    end

    it "should return 404 Not Found with invalid ID" do
      get api("/projects/#{project.id}/keys/404", user)
      response.status.should == 404
    end
  end

  describe "POST /projects/:id/keys" do
    it "should not create an invalid ssh key" do
      post api("/projects/#{project.id}/keys", user), { title: "invalid key" }
      response.status.should == 404
    end

    it "should create new ssh key" do
      key_attrs = attributes_for :key
      expect {
        post api("/projects/#{project.id}/keys", user), key_attrs
      }.to change{ project.deploy_keys.count }.by(1)
    end
  end

  describe "DELETE /projects/:id/keys/:key_id" do
    it "should delete existing key" do
      project.deploy_keys << key
      project.save
      expect {
        delete api("/projects/#{project.id}/keys/#{key.id}", user)
      }.to change{ project.deploy_keys.count }.by(-1)
    end

    it "should return 404 Not Found with invalid ID" do
      delete api("/projects/#{project.id}/keys/404", user)
      response.status.should == 404
    end
  end
N
Nihad Abbasov 已提交
693
end