forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_user_update_password.py
More file actions
418 lines (358 loc) · 11.5 KB
/
Copy pathtest_user_update_password.py
File metadata and controls
418 lines (358 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
import logging
import pytest
from pytest import fail
from db import DB
from functions.error_messages import (
error_passwords_do_not_match,
error_password_does_not_meet_requirements,
)
from json_web_token import tokenize
from models import Users
from tests.test_functions import run, json
@pytest.fixture
def save():
save, cleanup, session = DB()
yield save
cleanup()
def test_successful_password_update(save, caplog):
"""
Test that a user can successfully update their password
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
parameters = {"user_id": user.id, "current_password": user.password}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.INFO)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "newpassword123"
}}
) {{
status
}}
}}
"""
)
if "errors" in result:
fail(
"Error occurred when trying to get a reset user password, error: {}".format(
json(result)
)
)
expected_result = {
"data": {
"updatePassword": {
"status": "Successfully updated user password, please sign in with new password."
}
}
}
assert result == expected_result
assert f"User: {user.id} successfully updated their password." in caplog.text
def test_unsuccessful_password_update_passwords_not_matching(save, caplog):
"""
Test that an error occurs if a user attempts to update their password when
the updated password fields do not match
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
parameters = {"user_id": user.id, "current_password": user.password}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "thisPasswordDoesntMatch"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with not matching passwords, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == error_passwords_do_not_match()
assert (
f"User: {user.id} attempted to update password, but passwords did not match."
in caplog.text
)
def test_unsuccessful_password_update_passwords_not_meeting_requirements(save, caplog):
"""
Test that an error occurs if a user attempts to update their password when
the updated password fields do not meet GoC requirements
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
parameters = {"user_id": user.id, "current_password": user.password}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "test"
confirmPassword: "test"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with not strong passwords, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == error_password_does_not_meet_requirements()
assert (
f"User: {user.id} attempted to update password, but requirements were not met."
in caplog.text
)
def test_unsuccessful_password_update_password_hash_in_token_not_matching(save, caplog):
"""
Test that an error occurs if a user attempts to update their password when
the current_password field in the token does not match the current password
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
parameters = {"user_id": user.id, "current_password": "someRandomText"}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "newpassword123"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with current password not matching, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == "Error, please trying resetting password again."
assert (
f"User: {user.id} attempted to reset password, but the hashed password in the token did not match."
in caplog.text
)
def test_unsuccessful_password_update_user_id_is_empty_from_token(save, caplog):
"""
Test that an error occurs if a user attempts to update their password when
the user_id field in the token is missing
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
parameters = {"current_password": "someRandomText"}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "newpassword123"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with missing user_id field, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == "Error, please request another password reset email."
assert (
f"A user attempted to change password but user_id was not found in the reset token."
in caplog.text
)
def test_unsuccessful_password_update_current_password_is_empty_from_token(
save, caplog
):
"""
Test that an error occurs if a user attempts to update their password when
the current_password field in the token is missing
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
parameters = {"user_id": user.id}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "newpassword123"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with missing current_password field, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == "Error, please request another password reset email."
assert (
f"A user attempted to change password but current_password was not found in the reset token."
in caplog.text
)
def test_unsuccessful_password_update_both_parameters_are_empty_from_token(
save, caplog
):
"""
Test that an error occurs if a user attempts to update their password when
the user_id field in the token is empty
"""
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
preferred_lang="English",
tfa_validated=False,
)
save(user)
reset_token = tokenize(parameters={}, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "newpassword123"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with both current_password and user_id field missing, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == "Error, please request another password reset email."
assert (
f"A user attempted to change password but user_id and current_password was not found in the reset token."
in caplog.text
)
def test_unsuccessful_password_update_user_does_not_exist(save, caplog):
"""
Test that an error occurs if an updatePassword mutation occurs but user is
none
"""
user_id = 5
parameters = {"user_id": user_id, "current_password": "someRandomText"}
reset_token = tokenize(parameters=parameters, exp_period=1)
caplog.set_level(logging.WARNING)
result = run(
mutation=f"""
mutation {{
updatePassword(
input: {{
resetToken: "{reset_token}"
password: "newpassword123"
confirmPassword: "newpassword123"
}}
) {{
status
}}
}}
"""
)
if "errors" not in result:
fail(
"Expected error to occur when trying to get a reset user password with a user id that doesn't exist, instead: {}".format(
json(result)
)
)
[error] = result["errors"]
assert error["message"] == "Error, please request another password reset email."
assert (
f"User: {user_id} attempted to reset password, but there is no account affiliated with that id."
in caplog.text
)