From 5c98d3bf078852043cbdd582c01e3dc4f4b5b79f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 5 Sep 2017 22:09:16 +0200 Subject: Begin tests for user quota --- server/tests/utils/users.ts | 44 +++++++++++++++++++++++++++++++++++++------- 1 file changed, 37 insertions(+), 7 deletions(-) (limited to 'server/tests/utils/users.ts') diff --git a/server/tests/utils/users.ts b/server/tests/utils/users.ts index 6e4b5f2f5..1c3f6826e 100644 --- a/server/tests/utils/users.ts +++ b/server/tests/utils/users.ts @@ -1,11 +1,12 @@ import * as request from 'supertest' -function createUser (url: string, accessToken: string, username: string, password: string, specialStatus = 204) { +function createUser (url: string, accessToken: string, username: string, password: string, videoQuota = 1000000, specialStatus = 204) { const path = '/api/v1/users' const body = { username, password, - email: username + '@example.com' + email: username + '@example.com', + videoQuota } return request(url) @@ -31,7 +32,7 @@ function registerUser (url: string, username: string, password: string, specialS .expect(specialStatus) } -function getUserInformation (url: string, accessToken: string) { +function getMyUserInformation (url: string, accessToken: string) { const path = '/api/v1/users/me' return request(url) @@ -42,6 +43,17 @@ function getUserInformation (url: string, accessToken: string) { .expect('Content-Type', /json/) } +function getUserInformation (url: string, accessToken: string, userId: number) { + const path = '/api/v1/users/' + userId + + return request(url) + .get(path) + .set('Accept', 'application/json') + .set('Authorization', 'Bearer ' + accessToken) + .expect(200) + .expect('Content-Type', /json/) +} + function getUserVideoRating (url: string, accessToken: string, videoId: number) { const path = '/api/v1/users/me/videos/' + videoId + '/rating' @@ -86,12 +98,28 @@ function removeUser (url: string, userId: number, accessToken: string, expectedS .expect(expectedStatus) } -function updateUser (url: string, userId: number, accessToken: string, newPassword: string, displayNSFW: boolean) { - const path = '/api/v1/users/' + userId +function updateMyUser (url: string, accessToken: string, newPassword: string, displayNSFW?: boolean, email?: string) { + const path = '/api/v1/users/me' const toSend = {} if (newPassword !== undefined && newPassword !== null) toSend['password'] = newPassword if (displayNSFW !== undefined && displayNSFW !== null) toSend['displayNSFW'] = displayNSFW + if (email !== undefined && email !== null) toSend['email'] = email + + return request(url) + .put(path) + .set('Accept', 'application/json') + .set('Authorization', 'Bearer ' + accessToken) + .send(toSend) + .expect(204) +} + +function updateUser (url: string, userId: number, accessToken: string, email: string, videoQuota: number) { + const path = '/api/v1/users/' + userId + + const toSend = {} + if (email !== undefined && email !== null) toSend['password'] = email + if (videoQuota !== undefined && videoQuota !== null) toSend['videoQuota'] = videoQuota return request(url) .put(path) @@ -106,10 +134,12 @@ function updateUser (url: string, userId: number, accessToken: string, newPasswo export { createUser, registerUser, - getUserInformation, + getMyUserInformation, getUserVideoRating, getUsersList, getUsersListPaginationAndSort, removeUser, - updateUser + updateUser, + updateMyUser, + getUserInformation } -- cgit v1.2.3