diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-30 15:16:24 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-30 15:16:24 +0100 |
commit | f076daa76a32074cba162459e38fa8c130ad42d0 (patch) | |
tree | ea8a92d6305afa158b7774b65e9e6098cc094b92 /server/tests/utils/users/users.ts | |
parent | ecb4e35f4e6c7304cb274593c13cb47fd5078b75 (diff) | |
download | PeerTube-f076daa76a32074cba162459e38fa8c130ad42d0.tar.gz PeerTube-f076daa76a32074cba162459e38fa8c130ad42d0.tar.zst PeerTube-f076daa76a32074cba162459e38fa8c130ad42d0.zip |
Add tests for emails
Diffstat (limited to 'server/tests/utils/users/users.ts')
-rw-r--r-- | server/tests/utils/users/users.ts | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/server/tests/utils/users/users.ts b/server/tests/utils/users/users.ts index 25351e2c7..9e33e6796 100644 --- a/server/tests/utils/users/users.ts +++ b/server/tests/utils/users/users.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { isAbsolute, join } from 'path' | 1 | import { isAbsolute, join } from 'path' |
2 | import * as request from 'supertest' | 2 | import * as request from 'supertest' |
3 | import { makePostUploadRequest, makePutBodyRequest } from '../' | 3 | import { makePostBodyRequest, makePostUploadRequest, makePutBodyRequest } from '../' |
4 | 4 | ||
5 | import { UserRole } from '../../../../shared/index' | 5 | import { UserRole } from '../../../../shared/index' |
6 | 6 | ||
@@ -196,6 +196,28 @@ function updateUser (options: { | |||
196 | }) | 196 | }) |
197 | } | 197 | } |
198 | 198 | ||
199 | function askResetPassword (url: string, email: string) { | ||
200 | const path = '/api/v1/users/ask-reset-password' | ||
201 | |||
202 | return makePostBodyRequest({ | ||
203 | url, | ||
204 | path, | ||
205 | fields: { email }, | ||
206 | statusCodeExpected: 204 | ||
207 | }) | ||
208 | } | ||
209 | |||
210 | function resetPassword (url: string, userId: number, verificationString: string, password: string, statusCodeExpected = 204) { | ||
211 | const path = '/api/v1/users/' + userId + '/reset-password' | ||
212 | |||
213 | return makePostBodyRequest({ | ||
214 | url, | ||
215 | path, | ||
216 | fields: { password, verificationString }, | ||
217 | statusCodeExpected | ||
218 | }) | ||
219 | } | ||
220 | |||
199 | // --------------------------------------------------------------------------- | 221 | // --------------------------------------------------------------------------- |
200 | 222 | ||
201 | export { | 223 | export { |
@@ -210,5 +232,7 @@ export { | |||
210 | updateUser, | 232 | updateUser, |
211 | updateMyUser, | 233 | updateMyUser, |
212 | getUserInformation, | 234 | getUserInformation, |
235 | askResetPassword, | ||
236 | resetPassword, | ||
213 | updateMyAvatar | 237 | updateMyAvatar |
214 | } | 238 | } |