debian-mirror-gitlab/spec/requests/api/users_spec.rb

1423 lines
47 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe API::Users do
2014-09-02 18:07:02 +05:30
let(:user) { create(:user) }
let(:admin) { create(:admin) }
2017-08-17 22:00:37 +05:30
let(:key) { create(:key, user: user) }
let(:email) { create(:email, user: user) }
2015-10-24 18:46:33 +05:30
let(:omniauth_user) { create(:omniauth_user) }
let(:ldap_user) { create(:omniauth_user, provider: 'ldapmain') }
let(:ldap_blocked_user) { create(:omniauth_user, provider: 'ldapmain', state: 'ldap_blocked') }
2017-08-17 22:00:37 +05:30
let(:not_existing_user_id) { (User.maximum('id') || 0 ) + 10 }
let(:not_existing_pat_id) { (PersonalAccessToken.maximum('id') || 0 ) + 10 }
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
describe 'GET /users' do
2014-09-02 18:07:02 +05:30
context "when unauthenticated" do
2016-09-13 17:45:13 +05:30
it "returns authentication error" do
2014-09-02 18:07:02 +05:30
get api("/users")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
end
context "when authenticated" do
# These specs are written just in case API authentication is not required anymore
2016-06-02 11:05:42 +05:30
context "when public level is restricted" do
before do
stub_application_setting(restricted_visibility_levels: [Gitlab::VisibilityLevel::PUBLIC])
allow_any_instance_of(API::Helpers).to receive(:authenticate!).and_return(true)
end
it "renders 403" do
get api("/users")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
2016-06-02 11:05:42 +05:30
end
it "renders 404" do
get api("/users/#{user.id}")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2016-06-02 11:05:42 +05:30
end
end
2016-09-13 17:45:13 +05:30
it "returns an array of users" do
2014-09-02 18:07:02 +05:30
get api("/users", user)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-04-26 12:48:37 +05:30
expect(json_response).to be_an Array
username = user.username
2015-09-11 14:41:01 +05:30
expect(json_response.detect do |user|
user['username'] == username
end['username']).to eq(username)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it "returns an array of blocked users" do
ldap_blocked_user
create(:user, state: 'blocked')
get api("/users?blocked=true", user)
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
expect(json_response).to all(include('state' => /(blocked|ldap_blocked)/))
end
2016-09-13 17:45:13 +05:30
it "returns one user" do
get api("/users?username=#{omniauth_user.username}", user)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
expect(json_response.first['username']).to eq(omniauth_user.username)
end
2017-08-17 22:00:37 +05:30
it "returns a 403 when non-admin user searches by external UID" do
get api("/users?extern_uid=#{omniauth_user.identities.first.extern_uid}&provider=#{omniauth_user.identities.first.provider}", user)
expect(response).to have_http_status(403)
end
it 'does not reveal the `is_admin` flag of the user' do
get api('/users', user)
expect(json_response.first.keys).not_to include 'is_admin'
end
2014-09-02 18:07:02 +05:30
end
context "when admin" do
2016-09-13 17:45:13 +05:30
it "returns an array of users" do
2014-09-02 18:07:02 +05:30
get api("/users", admin)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-04-26 12:48:37 +05:30
expect(json_response).to be_an Array
expect(json_response.first.keys).to include 'email'
2016-11-03 12:29:30 +05:30
expect(json_response.first.keys).to include 'organization'
2015-04-26 12:48:37 +05:30
expect(json_response.first.keys).to include 'identities'
expect(json_response.first.keys).to include 'can_create_project'
2015-09-11 14:41:01 +05:30
expect(json_response.first.keys).to include 'two_factor_enabled'
2016-06-02 11:05:42 +05:30
expect(json_response.first.keys).to include 'last_sign_in_at'
expect(json_response.first.keys).to include 'confirmed_at'
2017-08-17 22:00:37 +05:30
expect(json_response.first.keys).to include 'is_admin'
end
it "returns an array of external users" do
create(:user, external: true)
get api("/users?external=true", admin)
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
expect(json_response).to all(include('external' => true))
end
it "returns one user by external UID" do
get api("/users?extern_uid=#{omniauth_user.identities.first.extern_uid}&provider=#{omniauth_user.identities.first.provider}", admin)
expect(response).to have_http_status(200)
expect(json_response).to be_an Array
expect(json_response.size).to eq(1)
expect(json_response.first['username']).to eq(omniauth_user.username)
end
it "returns 400 error if provider with no extern_uid" do
get api("/users?extern_uid=#{omniauth_user.identities.first.extern_uid}", admin)
expect(response).to have_http_status(400)
end
it "returns 400 error if provider with no extern_uid" do
get api("/users?provider=#{omniauth_user.identities.first.provider}", admin)
expect(response).to have_http_status(400)
2014-09-02 18:07:02 +05:30
end
end
end
describe "GET /users/:id" do
2016-09-13 17:45:13 +05:30
it "returns a user by id" do
2014-09-02 18:07:02 +05:30
get api("/users/#{user.id}", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['username']).to eq(user.username)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it "does not return the user's `is_admin` flag" do
get api("/users/#{user.id}", user)
expect(json_response['is_admin']).to be_nil
end
2016-09-13 17:45:13 +05:30
it "returns a 401 if unauthenticated" do
2014-09-02 18:07:02 +05:30
get api("/users/9998")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns a 404 error if user id not found" do
2014-09-02 18:07:02 +05:30
get api("/users/9999", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 User Not Found')
2014-09-02 18:07:02 +05:30
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 404 for invalid ID" do
2015-09-25 12:07:36 +05:30
get api("/users/1ASDF", user)
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end
describe "POST /users" do
2017-08-17 22:00:37 +05:30
before { admin }
2014-09-02 18:07:02 +05:30
2016-09-13 17:45:13 +05:30
it "creates user" do
2015-09-11 14:41:01 +05:30
expect do
2014-09-02 18:07:02 +05:30
post api("/users", admin), attributes_for(:user, projects_limit: 3)
2015-09-11 14:41:01 +05:30
end.to change { User.count }.by(1)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "creates user with correct attributes" do
2014-09-02 18:07:02 +05:30
post api('/users', admin), attributes_for(:user, admin: true, can_create_group: true)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2014-09-02 18:07:02 +05:30
user_id = json_response['id']
new_user = User.find(user_id)
2015-04-26 12:48:37 +05:30
expect(new_user).not_to eq(nil)
expect(new_user.admin).to eq(true)
expect(new_user.can_create_group).to eq(true)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it "creates user with optional attributes" do
optional_attributes = { confirm: true }
attributes = attributes_for(:user).merge(optional_attributes)
post api('/users', admin), attributes
expect(response).to have_http_status(201)
end
2016-09-13 17:45:13 +05:30
it "creates non-admin user" do
2014-09-02 18:07:02 +05:30
post api('/users', admin), attributes_for(:user, admin: false, can_create_group: false)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2014-09-02 18:07:02 +05:30
user_id = json_response['id']
new_user = User.find(user_id)
2015-04-26 12:48:37 +05:30
expect(new_user).not_to eq(nil)
expect(new_user.admin).to eq(false)
expect(new_user.can_create_group).to eq(false)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "creates non-admin users by default" do
2014-09-02 18:07:02 +05:30
post api('/users', admin), attributes_for(:user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2014-09-02 18:07:02 +05:30
user_id = json_response['id']
new_user = User.find(user_id)
2015-04-26 12:48:37 +05:30
expect(new_user).not_to eq(nil)
expect(new_user.admin).to eq(false)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 201 Created on success" do
2014-09-02 18:07:02 +05:30
post api("/users", admin), attributes_for(:user, projects_limit: 3)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
it 'creates non-external users by default' do
post api("/users", admin), attributes_for(:user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2016-06-02 11:05:42 +05:30
user_id = json_response['id']
new_user = User.find(user_id)
expect(new_user).not_to eq nil
expect(new_user.external).to be_falsy
end
2016-09-13 17:45:13 +05:30
it 'allows an external user to be created' do
2016-06-02 11:05:42 +05:30
post api("/users", admin), attributes_for(:user, external: true)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2016-06-02 11:05:42 +05:30
user_id = json_response['id']
new_user = User.find(user_id)
expect(new_user).not_to eq nil
expect(new_user.external).to be_truthy
end
2017-08-17 22:00:37 +05:30
it "creates user with reset password" do
post api('/users', admin), attributes_for(:user, reset_password: true).except(:password)
expect(response).to have_http_status(201)
user_id = json_response['id']
new_user = User.find(user_id)
expect(new_user).not_to eq(nil)
expect(new_user.recently_sent_password_reset?).to eq(true)
end
2016-09-13 17:45:13 +05:30
it "does not create user with invalid email" do
2015-04-26 12:48:37 +05:30
post api('/users', admin),
2017-08-17 22:00:37 +05:30
email: 'invalid email',
password: 'password',
name: 'test'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 error if name not given' do
2015-09-11 14:41:01 +05:30
post api('/users', admin), attributes_for(:user).except(:name)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 error if password not given' do
2015-09-11 14:41:01 +05:30
post api('/users', admin), attributes_for(:user).except(:password)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 error if email not given' do
2015-09-11 14:41:01 +05:30
post api('/users', admin), attributes_for(:user).except(:email)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 error if username not given' do
2015-09-11 14:41:01 +05:30
post api('/users', admin), attributes_for(:user).except(:username)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 error if user does not validate' do
2015-04-26 12:48:37 +05:30
post api('/users', admin),
2017-08-17 22:00:37 +05:30
password: 'pass',
email: 'test@example.com',
username: 'test!',
name: 'test',
bio: 'g' * 256,
projects_limit: -1
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2015-04-26 12:48:37 +05:30
expect(json_response['message']['password']).
2015-09-11 14:41:01 +05:30
to eq(['is too short (minimum is 8 characters)'])
2015-04-26 12:48:37 +05:30
expect(json_response['message']['bio']).
2015-09-11 14:41:01 +05:30
to eq(['is too long (maximum is 255 characters)'])
2015-04-26 12:48:37 +05:30
expect(json_response['message']['projects_limit']).
2015-09-11 14:41:01 +05:30
to eq(['must be greater than or equal to 0'])
2015-04-26 12:48:37 +05:30
expect(json_response['message']['username']).
2015-12-23 02:04:40 +05:30
to eq([Gitlab::Regex.namespace_regex_message])
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "is not available for non admin users" do
2014-09-02 18:07:02 +05:30
post api("/users", user), attributes_for(:user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
context 'with existing user' do
before do
post api('/users', admin),
2017-08-17 22:00:37 +05:30
email: 'test@example.com',
password: 'password',
username: 'test',
name: 'foo'
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
2016-09-13 17:45:13 +05:30
it 'returns 409 conflict error if user with same email exists' do
2015-09-11 14:41:01 +05:30
expect do
2015-04-26 12:48:37 +05:30
post api('/users', admin),
2017-08-17 22:00:37 +05:30
name: 'foo',
email: 'test@example.com',
password: 'password',
username: 'foo'
2015-09-11 14:41:01 +05:30
end.to change { User.count }.by(0)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(409)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('Email has already been taken')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 409 conflict error if same username exists' do
2015-04-26 12:48:37 +05:30
expect do
post api('/users', admin),
2017-08-17 22:00:37 +05:30
name: 'foo',
email: 'foo@example.com',
password: 'password',
username: 'test'
2015-04-26 12:48:37 +05:30
end.to change { User.count }.by(0)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(409)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('Username has already been taken')
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it 'creates user with new identity' do
post api("/users", admin), attributes_for(:user, provider: 'github', extern_uid: '67890')
expect(response).to have_http_status(201)
expect(json_response['identities'].first['extern_uid']).to eq('67890')
expect(json_response['identities'].first['provider']).to eq('github')
end
2014-09-02 18:07:02 +05:30
end
end
describe "GET /users/sign_up" do
2016-09-13 17:45:13 +05:30
it "redirects to sign in page" do
2015-04-26 12:48:37 +05:30
get "/users/sign_up"
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(302)
2015-04-26 12:48:37 +05:30
expect(response).to redirect_to(new_user_session_path)
2014-09-02 18:07:02 +05:30
end
end
describe "PUT /users/:id" do
let!(:admin_user) { create(:admin) }
before { admin }
2016-09-13 17:45:13 +05:30
it "updates user with new bio" do
2015-09-11 14:41:01 +05:30
put api("/users/#{user.id}", admin), { bio: 'new test bio' }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['bio']).to eq('new test bio')
expect(user.reload.bio).to eq('new test bio')
end
2017-08-17 22:00:37 +05:30
it "updates user with new password and forces reset on next login" do
put api("/users/#{user.id}", admin), password: '12345678'
expect(response).to have_http_status(200)
expect(user.reload.password_expires_at).to be <= Time.now
end
2016-11-03 12:29:30 +05:30
it "updates user with organization" do
put api("/users/#{user.id}", admin), { organization: 'GitLab' }
expect(response).to have_http_status(200)
expect(json_response['organization']).to eq('GitLab')
expect(user.reload.organization).to eq('GitLab')
end
2016-09-13 17:45:13 +05:30
it 'updates user with his own email' do
2015-04-26 12:48:37 +05:30
put api("/users/#{user.id}", admin), email: user.email
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['email']).to eq(user.email)
expect(user.reload.email).to eq(user.email)
end
2016-09-13 17:45:13 +05:30
it 'updates user with his own username' do
2015-04-26 12:48:37 +05:30
put api("/users/#{user.id}", admin), username: user.username
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['username']).to eq(user.username)
expect(user.reload.username).to eq(user.username)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "updates user's existing identity" do
2015-10-24 18:46:33 +05:30
put api("/users/#{omniauth_user.id}", admin), provider: 'ldapmain', extern_uid: '654321'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-10-24 18:46:33 +05:30
expect(omniauth_user.reload.identities.first.extern_uid).to eq('654321')
end
2016-09-13 17:45:13 +05:30
it 'updates user with new identity' do
2017-08-17 22:00:37 +05:30
put api("/users/#{user.id}", admin), provider: 'github', extern_uid: 'john'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(user.reload.identities.first.extern_uid).to eq('john')
2015-10-24 18:46:33 +05:30
expect(user.reload.identities.first.provider).to eq('github')
end
2016-09-13 17:45:13 +05:30
it "updates admin status" do
2015-09-11 14:41:01 +05:30
put api("/users/#{user.id}", admin), { admin: true }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(user.reload.admin).to eq(true)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "updates external status" do
2016-06-02 11:05:42 +05:30
put api("/users/#{user.id}", admin), { external: true }
expect(response.status).to eq 200
expect(json_response['external']).to eq(true)
expect(user.reload.external?).to be_truthy
end
2016-09-13 17:45:13 +05:30
it "does not update admin status" do
2015-09-11 14:41:01 +05:30
put api("/users/#{admin_user.id}", admin), { can_create_group: false }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(admin_user.reload.admin).to eq(true)
expect(admin_user.can_create_group).to eq(false)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "does not allow invalid update" do
2015-09-11 14:41:01 +05:30
put api("/users/#{user.id}", admin), { email: 'invalid email' }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2015-04-26 12:48:37 +05:30
expect(user.reload.email).not_to eq('invalid email')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "is not available for non admin users" do
2014-09-02 18:07:02 +05:30
put api("/users/#{user.id}", user), attributes_for(:user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 404 for non-existing user" do
2015-09-11 14:41:01 +05:30
put api("/users/999999", admin), { bio: 'update should fail' }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 User Not Found')
2015-04-26 12:48:37 +05:30
end
2016-11-03 12:29:30 +05:30
it "returns a 404 if invalid ID" do
put api("/users/ASDF", admin)
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 error if user does not validate' do
2015-04-26 12:48:37 +05:30
put api("/users/#{user.id}", admin),
2017-08-17 22:00:37 +05:30
password: 'pass',
email: 'test@example.com',
username: 'test!',
name: 'test',
bio: 'g' * 256,
projects_limit: -1
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2015-04-26 12:48:37 +05:30
expect(json_response['message']['password']).
2015-09-11 14:41:01 +05:30
to eq(['is too short (minimum is 8 characters)'])
2015-04-26 12:48:37 +05:30
expect(json_response['message']['bio']).
2015-09-11 14:41:01 +05:30
to eq(['is too long (maximum is 255 characters)'])
2015-04-26 12:48:37 +05:30
expect(json_response['message']['projects_limit']).
2015-09-11 14:41:01 +05:30
to eq(['must be greater than or equal to 0'])
2015-04-26 12:48:37 +05:30
expect(json_response['message']['username']).
2015-12-23 02:04:40 +05:30
to eq([Gitlab::Regex.namespace_regex_message])
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it 'returns 400 if provider is missing for identity update' do
put api("/users/#{omniauth_user.id}", admin), extern_uid: '654321'
expect(response).to have_http_status(400)
end
it 'returns 400 if external UID is missing for identity update' do
put api("/users/#{omniauth_user.id}", admin), provider: 'ldap'
expect(response).to have_http_status(400)
end
2014-09-02 18:07:02 +05:30
context "with existing user" do
2015-09-11 14:41:01 +05:30
before do
2014-09-02 18:07:02 +05:30
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' }
2015-04-26 12:48:37 +05:30
@user = User.all.last
2015-09-11 14:41:01 +05:30
end
2014-09-02 18:07:02 +05:30
2016-09-13 17:45:13 +05:30
it 'returns 409 conflict error if email address exists' do
2015-04-26 12:48:37 +05:30
put api("/users/#{@user.id}", admin), email: 'test@example.com'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(409)
2015-04-26 12:48:37 +05:30
expect(@user.reload.email).to eq(@user.email)
end
2016-09-13 17:45:13 +05:30
it 'returns 409 conflict error if username taken' do
2015-04-26 12:48:37 +05:30
@user_id = User.all.last.id
put api("/users/#{@user.id}", admin), username: 'test'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(409)
2015-04-26 12:48:37 +05:30
expect(@user.reload.username).to eq(@user.username)
end
2014-09-02 18:07:02 +05:30
end
end
describe "POST /users/:id/keys" do
before { admin }
2016-09-13 17:45:13 +05:30
it "does not create invalid ssh key" do
2014-09-02 18:07:02 +05:30
post api("/users/#{user.id}/keys", admin), { title: "invalid key" }
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('key is missing')
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'does not create key without title' do
2015-04-26 12:48:37 +05:30
post api("/users/#{user.id}/keys", admin), key: 'some key'
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('title is missing')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "creates ssh key" do
2014-09-02 18:07:02 +05:30
key_attrs = attributes_for :key
2015-09-11 14:41:01 +05:30
expect do
2014-09-02 18:07:02 +05:30
post api("/users/#{user.id}/keys", admin), key_attrs
2017-08-17 22:00:37 +05:30
end.to change { user.keys.count }.by(1)
2014-09-02 18:07:02 +05:30
end
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
it "returns 400 for invalid ID" do
post api("/users/999999/keys", admin)
expect(response).to have_http_status(400)
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
describe 'GET /user/:id/keys' do
2014-09-02 18:07:02 +05:30
before { admin }
context 'when unauthenticated' do
2016-09-13 17:45:13 +05:30
it 'returns authentication error' do
2014-09-02 18:07:02 +05:30
get api("/users/#{user.id}/keys")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
end
context 'when authenticated' do
2016-09-13 17:45:13 +05:30
it 'returns 404 for non-existing user' do
2014-09-02 18:07:02 +05:30
get api('/users/999999/keys', admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('404 User Not Found')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns array of ssh keys' do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
2017-08-17 22:00:37 +05:30
2014-09-02 18:07:02 +05:30
get api("/users/#{user.id}/keys", admin)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-04-26 12:48:37 +05:30
expect(json_response).to be_an Array
expect(json_response.first['title']).to eq(key.title)
2014-09-02 18:07:02 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
describe 'DELETE /user/:id/keys/:key_id' do
2014-09-02 18:07:02 +05:30
before { admin }
context 'when unauthenticated' do
2016-09-13 17:45:13 +05:30
it 'returns authentication error' do
2014-09-02 18:07:02 +05:30
delete api("/users/#{user.id}/keys/42")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
end
context 'when authenticated' do
2016-09-13 17:45:13 +05:30
it 'deletes existing key' do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
2017-08-17 22:00:37 +05:30
2015-09-11 14:41:01 +05:30
expect do
2014-09-02 18:07:02 +05:30
delete api("/users/#{user.id}/keys/#{key.id}", admin)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(204)
2015-09-11 14:41:01 +05:30
end.to change { user.keys.count }.by(-1)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 404 error if user not found' do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
delete api("/users/999999/keys/#{key.id}", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('404 User Not Found')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 404 error if key not foud' do
2014-09-02 18:07:02 +05:30
delete api("/users/#{user.id}/keys/42", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('404 Key Not Found')
2014-09-02 18:07:02 +05:30
end
end
end
2015-09-11 14:41:01 +05:30
describe "POST /users/:id/emails" do
before { admin }
2016-09-13 17:45:13 +05:30
it "does not create invalid email" do
2015-09-11 14:41:01 +05:30
post api("/users/#{user.id}/emails", admin), {}
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('email is missing')
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it "creates email" do
2015-09-11 14:41:01 +05:30
email_attrs = attributes_for :email
expect do
post api("/users/#{user.id}/emails", admin), email_attrs
2017-08-17 22:00:37 +05:30
end.to change { user.emails.count }.by(1)
2015-09-11 14:41:01 +05:30
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 400 for invalid ID" do
2016-09-13 17:45:13 +05:30
post api("/users/999999/emails", admin)
2016-11-03 12:29:30 +05:30
2016-09-13 17:45:13 +05:30
expect(response).to have_http_status(400)
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
describe 'GET /user/:id/emails' do
2015-09-11 14:41:01 +05:30
before { admin }
context 'when unauthenticated' do
2016-09-13 17:45:13 +05:30
it 'returns authentication error' do
2015-09-11 14:41:01 +05:30
get api("/users/#{user.id}/emails")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2015-09-11 14:41:01 +05:30
end
end
context 'when authenticated' do
2016-09-13 17:45:13 +05:30
it 'returns 404 for non-existing user' do
2015-09-11 14:41:01 +05:30
get api('/users/999999/emails', admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-11 14:41:01 +05:30
expect(json_response['message']).to eq('404 User Not Found')
end
2016-09-13 17:45:13 +05:30
it 'returns array of emails' do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
2017-08-17 22:00:37 +05:30
2015-09-11 14:41:01 +05:30
get api("/users/#{user.id}/emails", admin)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-09-11 14:41:01 +05:30
expect(json_response).to be_an Array
expect(json_response.first['email']).to eq(email.email)
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 404 for invalid ID" do
2015-11-26 14:37:03 +05:30
put api("/users/ASDF/emails", admin)
2016-11-03 12:29:30 +05:30
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe 'DELETE /user/:id/emails/:email_id' do
2015-09-11 14:41:01 +05:30
before { admin }
context 'when unauthenticated' do
2016-09-13 17:45:13 +05:30
it 'returns authentication error' do
2015-09-11 14:41:01 +05:30
delete api("/users/#{user.id}/emails/42")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2015-09-11 14:41:01 +05:30
end
end
context 'when authenticated' do
2016-09-13 17:45:13 +05:30
it 'deletes existing email' do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
2017-08-17 22:00:37 +05:30
2015-09-11 14:41:01 +05:30
expect do
delete api("/users/#{user.id}/emails/#{email.id}", admin)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(204)
2015-09-11 14:41:01 +05:30
end.to change { user.emails.count }.by(-1)
end
2016-09-13 17:45:13 +05:30
it 'returns 404 error if user not found' do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
delete api("/users/999999/emails/#{email.id}", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-11 14:41:01 +05:30
expect(json_response['message']).to eq('404 User Not Found')
end
2016-09-13 17:45:13 +05:30
it 'returns 404 error if email not foud' do
2015-09-11 14:41:01 +05:30
delete api("/users/#{user.id}/emails/42", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-11 14:41:01 +05:30
expect(json_response['message']).to eq('404 Email Not Found')
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 404 for invalid ID" do
delete api("/users/ASDF/emails/bar", admin)
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
end
2014-09-02 18:07:02 +05:30
describe "DELETE /users/:id" do
2016-09-13 17:45:13 +05:30
let!(:namespace) { user.namespace }
2014-09-02 18:07:02 +05:30
before { admin }
2016-09-13 17:45:13 +05:30
it "deletes user" do
2017-08-17 22:00:37 +05:30
Sidekiq::Testing.inline! { delete api("/users/#{user.id}", admin) }
expect(response).to have_http_status(204)
2014-09-02 18:07:02 +05:30
expect { User.find(user.id) }.to raise_error ActiveRecord::RecordNotFound
2016-09-13 17:45:13 +05:30
expect { Namespace.find(namespace.id) }.to raise_error ActiveRecord::RecordNotFound
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "does not delete for unauthenticated user" do
2017-08-17 22:00:37 +05:30
Sidekiq::Testing.inline! { delete api("/users/#{user.id}") }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "is not available for non admin users" do
2017-08-17 22:00:37 +05:30
Sidekiq::Testing.inline! { delete api("/users/#{user.id}", user) }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 404 for non-existing user" do
2017-08-17 22:00:37 +05:30
Sidekiq::Testing.inline! { delete api("/users/999999", admin) }
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('404 User Not Found')
2014-09-02 18:07:02 +05:30
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 404 for invalid ID" do
2017-08-17 22:00:37 +05:30
Sidekiq::Testing.inline! { delete api("/users/ASDF", admin) }
2016-11-03 12:29:30 +05:30
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end
describe "GET /user" do
2017-01-15 13:20:01 +05:30
let(:personal_access_token) { create(:personal_access_token, user: user).token }
context 'with regular user' do
context 'with personal access token' do
it 'returns 403 without private token when sudo is defined' do
get api("/user?private_token=#{personal_access_token}&sudo=123")
expect(response).to have_http_status(403)
end
end
context 'with private token' do
it 'returns 403 without private token when sudo defined' do
get api("/user?private_token=#{user.private_token}&sudo=123")
expect(response).to have_http_status(403)
end
end
it 'returns current user without private token when sudo not defined' do
get api("/user", user)
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to match_response_schema('public_api/v4/user/public')
2017-01-15 13:20:01 +05:30
expect(json_response['id']).to eq(user.id)
end
2014-09-02 18:07:02 +05:30
end
2017-01-15 13:20:01 +05:30
context 'with admin' do
let(:admin_personal_access_token) { create(:personal_access_token, user: admin).token }
context 'with personal access token' do
it 'returns 403 without private token when sudo defined' do
get api("/user?private_token=#{admin_personal_access_token}&sudo=#{user.id}")
expect(response).to have_http_status(403)
end
it 'returns initial current user without private token when sudo not defined' do
get api("/user?private_token=#{admin_personal_access_token}")
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to match_response_schema('public_api/v4/user/public')
2017-01-15 13:20:01 +05:30
expect(json_response['id']).to eq(admin.id)
end
end
context 'with private token' do
it 'returns sudoed user with private token when sudo defined' do
get api("/user?private_token=#{admin.private_token}&sudo=#{user.id}")
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to match_response_schema('public_api/v4/user/login')
2017-01-15 13:20:01 +05:30
expect(json_response['id']).to eq(user.id)
end
it 'returns initial current user without private token when sudo not defined' do
get api("/user?private_token=#{admin.private_token}")
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to match_response_schema('public_api/v4/user/public')
2017-01-15 13:20:01 +05:30
expect(json_response['id']).to eq(admin.id)
end
end
end
context 'with unauthenticated user' do
it "returns 401 error if user is unauthenticated" do
get api("/user")
expect(response).to have_http_status(401)
end
2014-09-02 18:07:02 +05:30
end
end
describe "GET /user/keys" do
context "when unauthenticated" do
2016-09-13 17:45:13 +05:30
it "returns authentication error" do
2014-09-02 18:07:02 +05:30
get api("/user/keys")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
end
context "when authenticated" do
2016-09-13 17:45:13 +05:30
it "returns array of ssh keys" do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
2017-08-17 22:00:37 +05:30
2014-09-02 18:07:02 +05:30
get api("/user/keys", user)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-04-26 12:48:37 +05:30
expect(json_response).to be_an Array
expect(json_response.first["title"]).to eq(key.title)
2014-09-02 18:07:02 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
describe "GET /user/keys/:key_id" do
2016-09-13 17:45:13 +05:30
it "returns single key" do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
get api("/user/keys/#{key.id}", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response["title"]).to eq(key.title)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 404 Not Found within invalid ID" do
2014-09-02 18:07:02 +05:30
get api("/user/keys/42", user)
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Key Not Found')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 404 error if admin accesses user's ssh key" do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
admin
get api("/user/keys/#{key.id}", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Key Not Found')
2014-09-02 18:07:02 +05:30
end
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
it "returns 404 for invalid ID" do
2015-09-25 12:07:36 +05:30
get api("/users/keys/ASDF", admin)
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end
describe "POST /user/keys" do
2016-09-13 17:45:13 +05:30
it "creates ssh key" do
2014-09-02 18:07:02 +05:30
key_attrs = attributes_for :key
2015-09-11 14:41:01 +05:30
expect do
2014-09-02 18:07:02 +05:30
post api("/user/keys", user), key_attrs
2017-08-17 22:00:37 +05:30
end.to change { user.keys.count }.by(1)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns a 401 error if unauthorized" do
2014-09-02 18:07:02 +05:30
post api("/user/keys"), title: 'some title', key: 'some key'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "does not create ssh key without key" do
2014-09-02 18:07:02 +05:30
post api("/user/keys", user), title: 'title'
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('key is missing')
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'does not create ssh key without title' do
2015-04-26 12:48:37 +05:30
post api('/user/keys', user), key: 'some key'
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('title is missing')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "does not create ssh key without title" do
2014-09-02 18:07:02 +05:30
post api("/user/keys", user), key: "somekey"
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2014-09-02 18:07:02 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe "DELETE /user/keys/:key_id" do
2016-09-13 17:45:13 +05:30
it "deletes existed key" do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
2017-08-17 22:00:37 +05:30
2015-09-11 14:41:01 +05:30
expect do
2014-09-02 18:07:02 +05:30
delete api("/user/keys/#{key.id}", user)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(204)
end.to change { user.keys.count}.by(-1)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it "returns 404 if key ID not found" do
2014-09-02 18:07:02 +05:30
delete api("/user/keys/42", user)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 Key Not Found')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 401 error if unauthorized" do
2014-09-02 18:07:02 +05:30
user.keys << key
user.save
delete api("/user/keys/#{key.id}")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2014-09-02 18:07:02 +05:30
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 404 for invalid ID" do
delete api("/users/keys/ASDF", admin)
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
describe "GET /user/emails" do
context "when unauthenticated" do
2016-09-13 17:45:13 +05:30
it "returns authentication error" do
2015-09-11 14:41:01 +05:30
get api("/user/emails")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2015-09-11 14:41:01 +05:30
end
end
context "when authenticated" do
2016-09-13 17:45:13 +05:30
it "returns array of emails" do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
2017-08-17 22:00:37 +05:30
2015-09-11 14:41:01 +05:30
get api("/user/emails", user)
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2015-09-11 14:41:01 +05:30
expect(json_response).to be_an Array
expect(json_response.first["email"]).to eq(email.email)
end
end
end
2017-08-17 22:00:37 +05:30
describe "GET /user/emails/:email_id" do
2016-09-13 17:45:13 +05:30
it "returns single email" do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
get api("/user/emails/#{email.id}", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(200)
2015-09-11 14:41:01 +05:30
expect(json_response["email"]).to eq(email.email)
end
2016-09-13 17:45:13 +05:30
it "returns 404 Not Found within invalid ID" do
2015-09-11 14:41:01 +05:30
get api("/user/emails/42", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Email Not Found')
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 404 error if admin accesses user's email" do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
admin
get api("/user/emails/#{email.id}", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2017-08-17 22:00:37 +05:30
expect(json_response['message']).to eq('404 Email Not Found')
2015-09-11 14:41:01 +05:30
end
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
it "returns 404 for invalid ID" do
2015-09-25 12:07:36 +05:30
get api("/users/emails/ASDF", admin)
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
describe "POST /user/emails" do
2016-09-13 17:45:13 +05:30
it "creates email" do
2015-09-11 14:41:01 +05:30
email_attrs = attributes_for :email
expect do
post api("/user/emails", user), email_attrs
2017-08-17 22:00:37 +05:30
end.to change { user.emails.count }.by(1)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(201)
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns a 401 error if unauthorized" do
2015-09-11 14:41:01 +05:30
post api("/user/emails"), email: 'some email'
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it "does not create email with invalid email" do
2015-09-11 14:41:01 +05:30
post api("/user/emails", user), {}
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('email is missing')
2015-09-11 14:41:01 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe "DELETE /user/emails/:email_id" do
2016-09-13 17:45:13 +05:30
it "deletes existed email" do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
2017-08-17 22:00:37 +05:30
2015-09-11 14:41:01 +05:30
expect do
delete api("/user/emails/#{email.id}", user)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(204)
end.to change { user.emails.count}.by(-1)
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
it "returns 404 if email ID not found" do
2015-09-11 14:41:01 +05:30
delete api("/user/emails/42", user)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 Email Not Found')
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it "returns 401 error if unauthorized" do
2015-09-11 14:41:01 +05:30
user.emails << email
user.save
delete api("/user/emails/#{email.id}")
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(401)
2015-09-11 14:41:01 +05:30
end
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
it "returns 400 for invalid ID" do
delete api("/user/emails/ASDF", admin)
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(400)
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
describe 'POST /users/:id/block' do
2015-09-11 14:41:01 +05:30
before { admin }
2016-09-13 17:45:13 +05:30
it 'blocks existing user' do
2017-08-17 22:00:37 +05:30
post api("/users/#{user.id}/block", admin)
expect(response).to have_http_status(201)
2015-09-11 14:41:01 +05:30
expect(user.reload.state).to eq('blocked')
end
2016-09-13 17:45:13 +05:30
it 'does not re-block ldap blocked users' do
2017-08-17 22:00:37 +05:30
post api("/users/#{ldap_blocked_user.id}/block", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
expect(ldap_blocked_user.reload.state).to eq('ldap_blocked')
end
2016-09-13 17:45:13 +05:30
it 'does not be available for non admin users' do
2017-08-17 22:00:37 +05:30
post api("/users/#{user.id}/block", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
2015-09-11 14:41:01 +05:30
expect(user.reload.state).to eq('active')
end
2016-09-13 17:45:13 +05:30
it 'returns a 404 error if user id not found' do
2017-08-17 22:00:37 +05:30
post api('/users/9999/block', admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-11 14:41:01 +05:30
expect(json_response['message']).to eq('404 User Not Found')
end
end
2017-08-17 22:00:37 +05:30
describe 'POST /users/:id/unblock' do
let(:blocked_user) { create(:user, state: 'blocked') }
2015-09-11 14:41:01 +05:30
before { admin }
2016-09-13 17:45:13 +05:30
it 'unblocks existing user' do
2017-08-17 22:00:37 +05:30
post api("/users/#{user.id}/unblock", admin)
expect(response).to have_http_status(201)
2015-09-11 14:41:01 +05:30
expect(user.reload.state).to eq('active')
end
2016-09-13 17:45:13 +05:30
it 'unblocks a blocked user' do
2017-08-17 22:00:37 +05:30
post api("/users/#{blocked_user.id}/unblock", admin)
expect(response).to have_http_status(201)
expect(blocked_user.reload.state).to eq('active')
end
2016-09-13 17:45:13 +05:30
it 'does not unblock ldap blocked users' do
2017-08-17 22:00:37 +05:30
post api("/users/#{ldap_blocked_user.id}/unblock", admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
expect(ldap_blocked_user.reload.state).to eq('ldap_blocked')
2015-09-11 14:41:01 +05:30
end
2016-09-13 17:45:13 +05:30
it 'does not be available for non admin users' do
2017-08-17 22:00:37 +05:30
post api("/users/#{user.id}/unblock", user)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(403)
2015-09-11 14:41:01 +05:30
expect(user.reload.state).to eq('active')
end
2016-09-13 17:45:13 +05:30
it 'returns a 404 error if user id not found' do
2017-08-17 22:00:37 +05:30
post api('/users/9999/block', admin)
2016-08-24 12:49:21 +05:30
expect(response).to have_http_status(404)
2015-09-11 14:41:01 +05:30
expect(json_response['message']).to eq('404 User Not Found')
end
2015-09-25 12:07:36 +05:30
2016-11-03 12:29:30 +05:30
it "returns a 404 for invalid ID" do
2017-08-17 22:00:37 +05:30
post api("/users/ASDF/block", admin)
2016-11-03 12:29:30 +05:30
expect(response).to have_http_status(404)
end
end
2017-08-17 22:00:37 +05:30
describe 'GET /users/:id/events' do
2016-11-03 12:29:30 +05:30
let(:user) { create(:user) }
let(:project) { create(:empty_project) }
let(:note) { create(:note_on_issue, note: 'What an awesome day!', project: project) }
before do
project.add_user(user, :developer)
EventCreateService.new.leave_note(note, user)
end
context "as a user than cannot see the event's project" do
it 'returns no events' do
other_user = create(:user)
get api("/users/#{user.id}/events", other_user)
expect(response).to have_http_status(200)
expect(json_response).to be_empty
end
end
context "as a user than can see the event's project" do
context 'joined event' do
it 'returns the "joined" event' do
get api("/users/#{user.id}/events", user)
2017-08-17 22:00:37 +05:30
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
2016-11-03 12:29:30 +05:30
comment_event = json_response.find { |e| e['action_name'] == 'commented on' }
expect(comment_event['project_id'].to_i).to eq(project.id)
expect(comment_event['author_username']).to eq(user.username)
expect(comment_event['note']['id']).to eq(note.id)
expect(comment_event['note']['body']).to eq('What an awesome day!')
joined_event = json_response.find { |e| e['action_name'] == 'joined' }
expect(joined_event['project_id'].to_i).to eq(project.id)
expect(joined_event['author_username']).to eq(user.username)
expect(joined_event['author']['name']).to eq(user.name)
end
end
context 'when there are multiple events from different projects' do
let(:second_note) { create(:note_on_issue, project: create(:empty_project)) }
let(:third_note) { create(:note_on_issue, project: project) }
before do
second_note.project.add_user(user, :developer)
[second_note, third_note].each do |note|
EventCreateService.new.leave_note(note, user)
end
end
it 'returns events in the correct order (from newest to oldest)' do
get api("/users/#{user.id}/events", user)
comment_events = json_response.select { |e| e['action_name'] == 'commented on' }
expect(comment_events[0]['target_id']).to eq(third_note.id)
expect(comment_events[1]['target_id']).to eq(second_note.id)
expect(comment_events[2]['target_id']).to eq(note.id)
end
end
end
it 'returns a 404 error if not found' do
get api('/users/42/events', user)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 User Not Found')
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
context "user activities", :redis do
let!(:old_active_user) { create(:user, last_activity_on: Time.utc(2000, 1, 1)) }
let!(:newly_active_user) { create(:user, last_activity_on: 2.days.ago.midday) }
context 'last activity as normal user' do
it 'has no permission' do
get api("/user/activities", user)
expect(response).to have_http_status(403)
end
end
context 'as admin' do
it 'returns the activities from the last 6 months' do
get api("/user/activities", admin)
expect(response).to include_pagination_headers
expect(json_response.size).to eq(1)
activity = json_response.last
expect(activity['username']).to eq(newly_active_user.username)
expect(activity['last_activity_on']).to eq(2.days.ago.to_date.to_s)
expect(activity['last_activity_at']).to eq(2.days.ago.to_date.to_s)
end
context 'passing a :from parameter' do
it 'returns the activities from the given date' do
get api("/user/activities?from=2000-1-1", admin)
expect(response).to include_pagination_headers
expect(json_response.size).to eq(2)
activity = json_response.first
expect(activity['username']).to eq(old_active_user.username)
expect(activity['last_activity_on']).to eq(Time.utc(2000, 1, 1).to_date.to_s)
expect(activity['last_activity_at']).to eq(Time.utc(2000, 1, 1).to_date.to_s)
end
end
end
end
describe 'GET /users/:user_id/impersonation_tokens' do
let!(:active_personal_access_token) { create(:personal_access_token, user: user) }
let!(:revoked_personal_access_token) { create(:personal_access_token, :revoked, user: user) }
let!(:expired_personal_access_token) { create(:personal_access_token, :expired, user: user) }
let!(:impersonation_token) { create(:personal_access_token, :impersonation, user: user) }
let!(:revoked_impersonation_token) { create(:personal_access_token, :impersonation, :revoked, user: user) }
it 'returns a 404 error if user not found' do
get api("/users/#{not_existing_user_id}/impersonation_tokens", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 User Not Found')
end
it 'returns a 403 error when authenticated as normal user' do
get api("/users/#{not_existing_user_id}/impersonation_tokens", user)
expect(response).to have_http_status(403)
expect(json_response['message']).to eq('403 Forbidden')
end
it 'returns an array of all impersonated tokens' do
get api("/users/#{user.id}/impersonation_tokens", admin)
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
expect(json_response.size).to eq(2)
end
it 'returns an array of active impersonation tokens if state active' do
get api("/users/#{user.id}/impersonation_tokens?state=active", admin)
expect(response).to have_http_status(200)
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
expect(json_response.size).to eq(1)
expect(json_response).to all(include('active' => true))
end
it 'returns an array of inactive personal access tokens if active is set to false' do
get api("/users/#{user.id}/impersonation_tokens?state=inactive", admin)
expect(response).to have_http_status(200)
expect(json_response).to be_an Array
expect(json_response.size).to eq(1)
expect(json_response).to all(include('active' => false))
end
end
describe 'POST /users/:user_id/impersonation_tokens' do
let(:name) { 'my new pat' }
let(:expires_at) { '2016-12-28' }
let(:scopes) { %w(api read_user) }
let(:impersonation) { true }
it 'returns validation error if impersonation token misses some attributes' do
post api("/users/#{user.id}/impersonation_tokens", admin)
expect(response).to have_http_status(400)
expect(json_response['error']).to eq('name is missing')
end
it 'returns a 404 error if user not found' do
post api("/users/#{not_existing_user_id}/impersonation_tokens", admin),
name: name,
expires_at: expires_at
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 User Not Found')
end
it 'returns a 403 error when authenticated as normal user' do
post api("/users/#{user.id}/impersonation_tokens", user),
name: name,
expires_at: expires_at
expect(response).to have_http_status(403)
expect(json_response['message']).to eq('403 Forbidden')
end
it 'creates a impersonation token' do
post api("/users/#{user.id}/impersonation_tokens", admin),
name: name,
expires_at: expires_at,
scopes: scopes,
impersonation: impersonation
expect(response).to have_http_status(201)
expect(json_response['name']).to eq(name)
expect(json_response['scopes']).to eq(scopes)
expect(json_response['expires_at']).to eq(expires_at)
expect(json_response['id']).to be_present
expect(json_response['created_at']).to be_present
expect(json_response['active']).to be_falsey
expect(json_response['revoked']).to be_falsey
expect(json_response['token']).to be_present
expect(json_response['impersonation']).to eq(impersonation)
end
end
describe 'GET /users/:user_id/impersonation_tokens/:impersonation_token_id' do
let!(:personal_access_token) { create(:personal_access_token, user: user) }
let!(:impersonation_token) { create(:personal_access_token, :impersonation, user: user) }
it 'returns 404 error if user not found' do
get api("/users/#{not_existing_user_id}/impersonation_tokens/1", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 User Not Found')
end
it 'returns a 404 error if impersonation token not found' do
get api("/users/#{user.id}/impersonation_tokens/#{not_existing_pat_id}", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 Impersonation Token Not Found')
end
it 'returns a 404 error if token is not impersonation token' do
get api("/users/#{user.id}/impersonation_tokens/#{personal_access_token.id}", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 Impersonation Token Not Found')
end
it 'returns a 403 error when authenticated as normal user' do
get api("/users/#{user.id}/impersonation_tokens/#{impersonation_token.id}", user)
expect(response).to have_http_status(403)
expect(json_response['message']).to eq('403 Forbidden')
end
it 'returns a personal access token' do
get api("/users/#{user.id}/impersonation_tokens/#{impersonation_token.id}", admin)
expect(response).to have_http_status(200)
expect(json_response['token']).to be_present
expect(json_response['impersonation']).to be_truthy
end
end
describe 'DELETE /users/:user_id/impersonation_tokens/:impersonation_token_id' do
let!(:personal_access_token) { create(:personal_access_token, user: user) }
let!(:impersonation_token) { create(:personal_access_token, :impersonation, user: user) }
it 'returns a 404 error if user not found' do
delete api("/users/#{not_existing_user_id}/impersonation_tokens/1", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 User Not Found')
end
it 'returns a 404 error if impersonation token not found' do
delete api("/users/#{user.id}/impersonation_tokens/#{not_existing_pat_id}", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 Impersonation Token Not Found')
end
it 'returns a 404 error if token is not impersonation token' do
delete api("/users/#{user.id}/impersonation_tokens/#{personal_access_token.id}", admin)
expect(response).to have_http_status(404)
expect(json_response['message']).to eq('404 Impersonation Token Not Found')
end
it 'returns a 403 error when authenticated as normal user' do
delete api("/users/#{user.id}/impersonation_tokens/#{impersonation_token.id}", user)
expect(response).to have_http_status(403)
expect(json_response['message']).to eq('403 Forbidden')
end
it 'revokes a impersonation token' do
delete api("/users/#{user.id}/impersonation_tokens/#{impersonation_token.id}", admin)
expect(response).to have_http_status(204)
expect(impersonation_token.revoked).to be_falsey
expect(impersonation_token.reload.revoked).to be_truthy
end
end
2014-09-02 18:07:02 +05:30
end