2016-08-07 16:09:59 -04:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const request = require('supertest')
|
|
|
|
|
|
|
|
const usersUtils = {
|
2016-10-02 06:19:02 -04:00
|
|
|
createUser,
|
|
|
|
getUserInformation,
|
|
|
|
getUsersList,
|
|
|
|
getUsersListPaginationAndSort,
|
|
|
|
removeUser,
|
|
|
|
updateUser
|
2016-08-07 16:09:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------- Export functions --------------------
|
|
|
|
|
|
|
|
function createUser (url, accessToken, username, password, specialStatus, end) {
|
|
|
|
if (!end) {
|
|
|
|
end = specialStatus
|
|
|
|
specialStatus = 204
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = '/api/v1/users'
|
2017-02-18 03:29:59 -05:00
|
|
|
const body = {
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
email: username + '@example.com'
|
|
|
|
}
|
2016-08-07 16:09:59 -04:00
|
|
|
|
|
|
|
request(url)
|
|
|
|
.post(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
2017-02-18 03:29:59 -05:00
|
|
|
.send(body)
|
2016-08-07 16:09:59 -04:00
|
|
|
.expect(specialStatus)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getUserInformation (url, accessToken, end) {
|
|
|
|
const path = '/api/v1/users/me'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getUsersList (url, end) {
|
|
|
|
const path = '/api/v1/users'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-08-16 16:31:45 -04:00
|
|
|
function getUsersListPaginationAndSort (url, start, count, sort, end) {
|
|
|
|
const path = '/api/v1/users'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ start: start })
|
|
|
|
.query({ count: count })
|
|
|
|
.query({ sort: sort })
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-08-09 15:44:45 -04:00
|
|
|
function removeUser (url, userId, accessToken, expectedStatus, end) {
|
2016-08-07 16:09:59 -04:00
|
|
|
if (!end) {
|
|
|
|
end = expectedStatus
|
|
|
|
expectedStatus = 204
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = '/api/v1/users'
|
|
|
|
|
|
|
|
request(url)
|
2016-08-09 15:44:45 -04:00
|
|
|
.delete(path + '/' + userId)
|
2016-08-07 16:09:59 -04:00
|
|
|
.set('Accept', 'application/json')
|
2016-08-09 15:44:45 -04:00
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
2016-08-07 16:09:59 -04:00
|
|
|
.expect(expectedStatus)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateUser (url, userId, accessToken, newPassword, end) {
|
|
|
|
const path = '/api/v1/users/' + userId
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.put(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
|
|
|
.send({ password: newPassword })
|
|
|
|
.expect(204)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = usersUtils
|