users_spec.rb 16.7 KB
Newer Older
N
Nihad Abbasov 已提交
1 2
require 'spec_helper'

J
Jeroen van Baarsen 已提交
3
describe API::API, api: true  do
4 5
  include ApiHelpers

6 7 8
  let(:user)  { create(:user) }
  let(:admin) { create(:admin) }
  let(:key)   { create(:key, user: user) }
N
Nihad Abbasov 已提交
9 10

  describe "GET /users" do
11 12 13
    context "when unauthenticated" do
      it "should return authentication error" do
        get api("/users")
14
        expect(response.status).to eq(401)
15
      end
N
Nihad Abbasov 已提交
16 17
    end

18
    context "when authenticated" do
N
Nihad Abbasov 已提交
19
      it "should return an array of users" do
R
Robert Speicher 已提交
20
        get api("/users", user)
21 22
        expect(response.status).to eq(200)
        expect(json_response).to be_an Array
M
Marin Jankovski 已提交
23
        username = user.username
24
        expect(json_response.detect {
M
Marin Jankovski 已提交
25
          |user| user['username'] == username
26
          }['username']).to eq(username)
N
Nihad Abbasov 已提交
27 28
      end
    end
29 30 31 32

    context "when admin" do
      it "should return an array of users" do
        get api("/users", admin)
33 34 35 36 37
        expect(response.status).to eq(200)
        expect(json_response).to be_an Array
        expect(json_response.first.keys).to include 'email'
        expect(json_response.first.keys).to include 'identities'
        expect(json_response.first.keys).to include 'can_create_project'
38 39
      end
    end
N
Nihad Abbasov 已提交
40 41 42 43
  end

  describe "GET /users/:id" do
    it "should return a user by id" do
R
Robert Speicher 已提交
44
      get api("/users/#{user.id}", user)
45 46
      expect(response.status).to eq(200)
      expect(json_response['username']).to eq(user.username)
N
Nihad Abbasov 已提交
47 48
    end

49 50
    it "should return a 401 if unauthenticated" do
      get api("/users/9998")
51
      expect(response.status).to eq(401)
52
    end
V
Valeriy Sizov 已提交
53

54 55
    it "should return a 404 error if user id not found" do
      get api("/users/9999", user)
56 57
      expect(response.status).to eq(404)
      expect(json_response['message']).to eq('404 Not found')
V
Valeriy Sizov 已提交
58
    end
59 60 61 62
  end

  describe "POST /users" do
    before{ admin }
V
Valeriy Sizov 已提交
63 64

    it "should create user" do
65
      expect {
66
        post api("/users", admin), attributes_for(:user, projects_limit: 3)
67
      }.to change { User.count }.by(1)
V
Valeriy Sizov 已提交
68 69
    end

70 71
    it "should create user with correct attributes" do
      post api('/users', admin), attributes_for(:user, admin: true, can_create_group: true)
72
      expect(response.status).to eq(201)
73 74
      user_id = json_response['id']
      new_user = User.find(user_id)
75 76 77
      expect(new_user).not_to eq(nil)
      expect(new_user.admin).to eq(true)
      expect(new_user.can_create_group).to eq(true)
78 79
    end

80 81
    it "should create non-admin user" do
      post api('/users', admin), attributes_for(:user, admin: false, can_create_group: false)
82
      expect(response.status).to eq(201)
83 84
      user_id = json_response['id']
      new_user = User.find(user_id)
85 86 87
      expect(new_user).not_to eq(nil)
      expect(new_user.admin).to eq(false)
      expect(new_user.can_create_group).to eq(false)
88 89 90 91
    end

    it "should create non-admin users by default" do
      post api('/users', admin), attributes_for(:user)
92
      expect(response.status).to eq(201)
93 94
      user_id = json_response['id']
      new_user = User.find(user_id)
95 96
      expect(new_user).not_to eq(nil)
      expect(new_user.admin).to eq(false)
97 98
    end

99 100
    it "should return 201 Created on success" do
      post api("/users", admin), attributes_for(:user, projects_limit: 3)
101
      expect(response.status).to eq(201)
102 103 104
    end

    it "should not create user with invalid email" do
J
jubianchi 已提交
105 106 107 108
      post api('/users', admin),
           email: 'invalid email',
           password: 'password',
           name: 'test'
109
      expect(response.status).to eq(400)
110 111
    end

J
jubianchi 已提交
112 113
    it 'should return 400 error if name not given' do
      post api('/users', admin), email: 'test@example.com', password: 'pass1234'
114
      expect(response.status).to eq(400)
J
jubianchi 已提交
115 116 117 118
    end

    it 'should return 400 error if password not given' do
      post api('/users', admin), email: 'test@example.com', name: 'test'
119
      expect(response.status).to eq(400)
120 121 122
    end

    it "should return 400 error if email not given" do
J
jubianchi 已提交
123
      post api('/users', admin), password: 'pass1234', name: 'test'
124
      expect(response.status).to eq(400)
J
jubianchi 已提交
125 126 127 128 129 130 131 132 133 134
    end

    it 'should return 400 error if user does not validate' do
      post api('/users', admin),
           password: 'pass',
           email: 'test@example.com',
           username: 'test!',
           name: 'test',
           bio: 'g' * 256,
           projects_limit: -1
135 136 137 138 139 140 141 142 143
      expect(response.status).to eq(400)
      expect(json_response['message']['password']).
          to eq(['is too short (minimum is 8 characters)'])
      expect(json_response['message']['bio']).
          to eq(['is too long (maximum is 255 characters)'])
      expect(json_response['message']['projects_limit']).
          to eq(['must be greater than or equal to 0'])
      expect(json_response['message']['username']).
          to eq([Gitlab::Regex.send(:default_regex_message)])
144 145
    end

V
Valeriy Sizov 已提交
146
    it "shouldn't available for non admin users" do
147
      post api("/users", user), attributes_for(:user)
148
      expect(response.status).to eq(403)
V
Valeriy Sizov 已提交
149
    end
150

J
jubianchi 已提交
151 152 153 154 155 156 157 158
    context 'with existing user' do
      before do
        post api('/users', admin),
             email: 'test@example.com',
             password: 'password',
             username: 'test',
             name: 'foo'
      end
159

J
jubianchi 已提交
160
      it 'should return 409 conflict error if user with same email exists' do
161
        expect {
J
jubianchi 已提交
162 163 164 165 166
          post api('/users', admin),
               name: 'foo',
               email: 'test@example.com',
               password: 'password',
               username: 'foo'
167
        }.to change { User.count }.by(0)
168 169
        expect(response.status).to eq(409)
        expect(json_response['message']).to eq('Email has already been taken')
170 171
      end

J
jubianchi 已提交
172 173 174 175 176 177 178 179
      it 'should return 409 conflict error if same username exists' do
        expect do
          post api('/users', admin),
               name: 'foo',
               email: 'foo@example.com',
               password: 'password',
               username: 'test'
        end.to change { User.count }.by(0)
180 181
        expect(response.status).to eq(409)
        expect(json_response['message']).to eq('Username has already been taken')
182 183
      end
    end
V
Valeriy Sizov 已提交
184 185
  end

M
Marin Jankovski 已提交
186
  describe "GET /users/sign_up" do
187

188 189
    it "should redirect to sign in page" do
      get "/users/sign_up"
190 191
      expect(response.status).to eq(302)
      expect(response).to redirect_to(new_user_session_path)
M
Marin Jankovski 已提交
192 193 194
    end
  end

195
  describe "PUT /users/:id" do
196 197
    let!(:admin_user) { create(:admin) }

198 199
    before { admin }

200
    it "should update user with new bio" do
201
      put api("/users/#{user.id}", admin), {bio: 'new test bio'}
202 203 204
      expect(response.status).to eq(200)
      expect(json_response['bio']).to eq('new test bio')
      expect(user.reload.bio).to eq('new test bio')
205 206
    end

J
jubianchi 已提交
207 208
    it 'should update user with his own email' do
      put api("/users/#{user.id}", admin), email: user.email
209 210 211
      expect(response.status).to eq(200)
      expect(json_response['email']).to eq(user.email)
      expect(user.reload.email).to eq(user.email)
J
jubianchi 已提交
212 213 214 215
    end

    it 'should update user with his own username' do
      put api("/users/#{user.id}", admin), username: user.username
216 217 218
      expect(response.status).to eq(200)
      expect(json_response['username']).to eq(user.username)
      expect(user.reload.username).to eq(user.username)
J
jubianchi 已提交
219 220
    end

221 222
    it "should update admin status" do
      put api("/users/#{user.id}", admin), {admin: true}
223 224 225
      expect(response.status).to eq(200)
      expect(json_response['is_admin']).to eq(true)
      expect(user.reload.admin).to eq(true)
226 227 228 229
    end

    it "should not update admin status" do
      put api("/users/#{admin_user.id}", admin), {can_create_group: false}
230 231 232 233
      expect(response.status).to eq(200)
      expect(json_response['is_admin']).to eq(true)
      expect(admin_user.reload.admin).to eq(true)
      expect(admin_user.can_create_group).to eq(false)
234 235
    end

236 237
    it "should not allow invalid update" do
      put api("/users/#{user.id}", admin), {email: 'invalid email'}
238 239
      expect(response.status).to eq(400)
      expect(user.reload.email).not_to eq('invalid email')
240 241 242 243
    end

    it "shouldn't available for non admin users" do
      put api("/users/#{user.id}", user), attributes_for(:user)
244
      expect(response.status).to eq(403)
245 246 247 248
    end

    it "should return 404 for non-existing user" do
      put api("/users/999999", admin), {bio: 'update should fail'}
249 250
      expect(response.status).to eq(404)
      expect(json_response['message']).to eq('404 Not found')
J
jubianchi 已提交
251 252 253 254 255 256 257 258 259 260
    end

    it 'should return 400 error if user does not validate' do
      put api("/users/#{user.id}", admin),
          password: 'pass',
          email: 'test@example.com',
          username: 'test!',
          name: 'test',
          bio: 'g' * 256,
          projects_limit: -1
261 262 263 264 265 266 267 268 269
      expect(response.status).to eq(400)
      expect(json_response['message']['password']).
          to eq(['is too short (minimum is 8 characters)'])
      expect(json_response['message']['bio']).
          to eq(['is too long (maximum is 255 characters)'])
      expect(json_response['message']['projects_limit']).
          to eq(['must be greater than or equal to 0'])
      expect(json_response['message']['username']).
          to eq([Gitlab::Regex.send(:default_regex_message)])
270
    end
271 272 273 274 275

    context "with existing user" do
      before {
        post api("/users", admin), { email: 'test@example.com', password: 'password', username: 'test', name: 'test' }
        post api("/users", admin), { email: 'foo@bar.com', password: 'password', username: 'john', name: 'john' }
J
jubianchi 已提交
276
        @user = User.all.last
277 278
      }

J
jubianchi 已提交
279 280
      it 'should return 409 conflict error if email address exists' do
        put api("/users/#{@user.id}", admin), email: 'test@example.com'
281 282
        expect(response.status).to eq(409)
        expect(@user.reload.email).to eq(@user.email)
J
jubianchi 已提交
283 284 285 286 287
      end

      it 'should return 409 conflict error if username taken' do
        @user_id = User.all.last.id
        put api("/users/#{@user.id}", admin), username: 'test'
288 289
        expect(response.status).to eq(409)
        expect(@user.reload.username).to eq(@user.username)
J
jubianchi 已提交
290
      end
291
    end
292 293
  end

A
Angus MacArthur 已提交
294 295 296 297 298
  describe "POST /users/:id/keys" do
    before { admin }

    it "should not create invalid ssh key" do
      post api("/users/#{user.id}/keys", admin), { title: "invalid key" }
299 300
      expect(response.status).to eq(400)
      expect(json_response['message']).to eq('400 (Bad request) "key" not given')
J
jubianchi 已提交
301 302 303 304
    end

    it 'should not create key without title' do
      post api("/users/#{user.id}/keys", admin), key: 'some key'
305 306
      expect(response.status).to eq(400)
      expect(json_response['message']).to eq('400 (Bad request) "title" not given')
A
Angus MacArthur 已提交
307 308 309 310 311 312 313 314 315 316
    end

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

317 318 319 320 321 322
  describe 'GET /user/:uid/keys' do
    before { admin }

    context 'when unauthenticated' do
      it 'should return authentication error' do
        get api("/users/#{user.id}/keys")
323
        expect(response.status).to eq(401)
324 325 326 327 328 329
      end
    end

    context 'when authenticated' do
      it 'should return 404 for non-existing user' do
        get api('/users/999999/keys', admin)
330 331
        expect(response.status).to eq(404)
        expect(json_response['message']).to eq('404 User Not Found')
332 333 334 335 336 337
      end

      it 'should return array of ssh keys' do
        user.keys << key
        user.save
        get api("/users/#{user.id}/keys", admin)
338 339 340
        expect(response.status).to eq(200)
        expect(json_response).to be_an Array
        expect(json_response.first['title']).to eq(key.title)
341 342 343 344 345 346 347 348 349 350
      end
    end
  end

  describe 'DELETE /user/:uid/keys/:id' do
    before { admin }

    context 'when unauthenticated' do
      it 'should return authentication error' do
        delete api("/users/#{user.id}/keys/42")
351
        expect(response.status).to eq(401)
352 353 354 355 356 357 358 359 360 361
      end
    end

    context 'when authenticated' do
      it 'should delete existing key' do
        user.keys << key
        user.save
        expect {
          delete api("/users/#{user.id}/keys/#{key.id}", admin)
        }.to change { user.keys.count }.by(-1)
362
        expect(response.status).to eq(200)
363 364 365 366 367 368
      end

      it 'should return 404 error if user not found' do
        user.keys << key
        user.save
        delete api("/users/999999/keys/#{key.id}", admin)
369 370
        expect(response.status).to eq(404)
        expect(json_response['message']).to eq('404 User Not Found')
371 372 373 374
      end

      it 'should return 404 error if key not foud' do
        delete api("/users/#{user.id}/keys/42", admin)
375 376
        expect(response.status).to eq(404)
        expect(json_response['message']).to eq('404 Key Not Found')
377 378 379 380
      end
    end
  end

381 382 383 384 385
  describe "DELETE /users/:id" do
    before { admin }

    it "should delete user" do
      delete api("/users/#{user.id}", admin)
386
      expect(response.status).to eq(200)
387
      expect { User.find(user.id) }.to raise_error ActiveRecord::RecordNotFound
388
      expect(json_response['email']).to eq(user.email)
389 390
    end

391 392
    it "should not delete for unauthenticated user" do
      delete api("/users/#{user.id}")
393
      expect(response.status).to eq(401)
394 395
    end

396 397
    it "shouldn't available for non admin users" do
      delete api("/users/#{user.id}", user)
398
      expect(response.status).to eq(403)
399 400 401 402
    end

    it "should return 404 for non-existing user" do
      delete api("/users/999999", admin)
403 404
      expect(response.status).to eq(404)
      expect(json_response['message']).to eq('404 User Not Found')
405 406 407
    end
  end

N
Nihad Abbasov 已提交
408 409
  describe "GET /user" do
    it "should return current user" do
R
Robert Speicher 已提交
410
      get api("/user", user)
411 412 413 414 415 416
      expect(response.status).to eq(200)
      expect(json_response['email']).to eq(user.email)
      expect(json_response['is_admin']).to eq(user.is_admin?)
      expect(json_response['can_create_project']).to eq(user.can_create_project?)
      expect(json_response['can_create_group']).to eq(user.can_create_group?)
      expect(json_response['projects_limit']).to eq(user.projects_limit)
N
Nihad Abbasov 已提交
417
    end
418 419 420

    it "should return 401 error if user is unauthenticated" do
      get api("/user")
421
      expect(response.status).to eq(401)
422
    end
N
Nihad Abbasov 已提交
423
  end
424 425 426 427 428

  describe "GET /user/keys" do
    context "when unauthenticated" do
      it "should return authentication error" do
        get api("/user/keys")
429
        expect(response.status).to eq(401)
430 431
      end
    end
N
Nihad Abbasov 已提交
432

433 434 435 436 437
    context "when authenticated" do
      it "should return array of ssh keys" do
        user.keys << key
        user.save
        get api("/user/keys", user)
438 439 440
        expect(response.status).to eq(200)
        expect(json_response).to be_an Array
        expect(json_response.first["title"]).to eq(key.title)
441 442 443 444 445
      end
    end
  end

  describe "GET /user/keys/:id" do
J
Johannes Schleifenbaum 已提交
446
    it "should return single key" do
447 448 449
      user.keys << key
      user.save
      get api("/user/keys/#{key.id}", user)
450 451
      expect(response.status).to eq(200)
      expect(json_response["title"]).to eq(key.title)
452
    end
N
Nihad Abbasov 已提交
453

454 455
    it "should return 404 Not Found within invalid ID" do
      get api("/user/keys/42", user)
456 457
      expect(response.status).to eq(404)
      expect(json_response['message']).to eq('404 Not found')
458 459
    end

460 461 462 463 464
    it "should return 404 error if admin accesses user's ssh key" do
      user.keys << key
      user.save
      admin
      get api("/user/keys/#{key.id}", admin)
465 466
      expect(response.status).to eq(404)
      expect(json_response['message']).to eq('404 Not found')
467
    end
468
  end
N
Nihad Abbasov 已提交
469

470
  describe "POST /user/keys" do
471
    it "should create ssh key" do
472
      key_attrs = attributes_for :key
473 474 475
      expect {
        post api("/user/keys", user), key_attrs
      }.to change{ user.keys.count }.by(1)
476
      expect(response.status).to eq(201)
477 478 479 480
    end

    it "should return a 401 error if unauthorized" do
      post api("/user/keys"), title: 'some title', key: 'some key'
481
      expect(response.status).to eq(401)
482 483 484 485
    end

    it "should not create ssh key without key" do
      post api("/user/keys", user), title: 'title'
486 487
      expect(response.status).to eq(400)
      expect(json_response['message']).to eq('400 (Bad request) "key" not given')
J
jubianchi 已提交
488 489 490 491
    end

    it 'should not create ssh key without title' do
      post api('/user/keys', user), key: 'some key'
492 493
      expect(response.status).to eq(400)
      expect(json_response['message']).to eq('400 (Bad request) "title" not given')
494 495 496 497
    end

    it "should not create ssh key without title" do
      post api("/user/keys", user), key: "somekey"
498
      expect(response.status).to eq(400)
499 500 501 502 503 504 505 506 507 508
    end
  end

  describe "DELETE /user/keys/:id" do
    it "should delete existed key" do
      user.keys << key
      user.save
      expect {
        delete api("/user/keys/#{key.id}", user)
      }.to change{user.keys.count}.by(-1)
509
      expect(response.status).to eq(200)
510
    end
N
Nihad Abbasov 已提交
511

K
Kevin Lyda 已提交
512
    it "should return success if key ID not found" do
513
      delete api("/user/keys/42", user)
514
      expect(response.status).to eq(200)
515 516 517 518 519 520
    end

    it "should return 401 error if unauthorized" do
      user.keys << key
      user.save
      delete api("/user/keys/#{key.id}")
521
      expect(response.status).to eq(401)
522 523
    end
  end
N
Nihad Abbasov 已提交
524
end