forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_authenticate.py
More file actions
299 lines (262 loc) · 7.78 KB
/
test_authenticate.py
File metadata and controls
299 lines (262 loc) · 7.78 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
import logging
import pytest
from datetime import datetime
from pytest import fail
from db import DB
from functions.error_messages import (
error_invalid_credentials,
error_too_many_failed_login_attempts,
error_user_does_not_exist,
)
from models import Users
from tests.test_functions import json, run
@pytest.fixture
def db():
save, cleanup, session = DB()
yield [save, session]
cleanup()
def test_authenticate_with_valid_credentials(db, caplog):
"""
Test that ensures a user can be signed in successfully
"""
save, _ = db
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
# This mocks that the user is accessing the service 32 mins after their
# last failed login attempt
failed_login_attempt_time=datetime.now().timestamp() + 1920,
)
save(user)
caplog.set_level(logging.INFO)
actual = run(
mutation="""
mutation{
authenticate(
input: {
userName:"testuser@testemail.ca",
password:"testpassword123"
}
) {
authResult {
user {
userName
}
}
}
}
""",
)
if "errors" in actual:
fail(
"expected signin for a normal user to succeed. Instead:"
"{}".format(json(actual))
)
[username] = actual["data"]["authenticate"]["authResult"]["user"].values()
assert username == "testuser@testemail.ca"
assert f"Successfully reset user: {user.id} login attempts counter." in caplog.text
assert f"User: {user.id} successfully authenticated their account." in caplog.text
def test_authenticate_with_invalid_credentials_fails(db, caplog):
"""
Test that ensures a user can be signed in successfully
"""
save, _ = db
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
# This mocks that the user is accessing the service 32 mins after their
# last failed login attempt
failed_login_attempt_time=datetime.now().timestamp() + 1920,
)
save(user)
caplog.set_level(logging.INFO)
actual = run(
mutation="""
mutation {
authenticate(
input: {
userName:"testuser@testemail.ca",
password:"invalidpassword"
}
){
authResult {
user {
userName
}
}
}
}
""",
)
if "errors" not in actual:
fail(
"expected signin with invalid credentials to raise an error. Instead:"
"{}".format(json(actual))
)
[err] = actual["errors"]
[message, _line, _field] = err.values()
assert message == "Incorrect email or password"
assert (
f"Successfully increased login failed attempts counter for user: {user.id}"
in caplog.text
)
assert (
f"User attempted to authenticate an account {user.id} with invalid credentials."
in caplog.text
)
def test_authenticate_failed_login_attempts_are_recorded(db, caplog):
save, session = db
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
)
save(user)
caplog.set_level(logging.INFO)
actual = run(
mutation="""
mutation {
authenticate(
input: {
userName:"testuser@testemail.ca"
password:"invalidpassword"
}
){
authResult {
user {
userName
}
}
}
}
"""
)
if "errors" not in actual:
fail(
"expected signin with invalid credentials to raise an error. Instead:"
"{}".format(json(actual))
)
session.refresh(user)
assert user.failed_login_attempts == 1
assert user.failed_login_attempt_time is not 0
assert (
f"Successfully increased login failed attempts counter for user: {user.id}"
in caplog.text
)
assert (
f"User attempted to authenticate an account {user.id} with invalid credentials."
in caplog.text
)
def test_authenticate_successful_login_sets_failed_attempts_to_zero(db, caplog):
"""
Test that ensures a user can be signed in, and that when they do, their
user count is updated to be 0.
"""
save, session = db
user = Users(
display_name="test_failed_user",
user_name="failedb4@example.com",
password="testpassword123",
failed_login_attempts=3,
failed_login_attempt_time=datetime.now().timestamp() + 1920,
)
save(user)
caplog.set_level(logging.INFO)
actual = run(
mutation="""
mutation {
authenticate(
input: {
userName:"failedb4@example.com",
password:"testpassword123"
}
){
authResult {
user {
userName
}
}
}
}
"""
)
session.refresh(user)
assert user.failed_login_attempts == 0
assert user.failed_login_attempt_time == 0
assert f"Successfully reset user: {user.id} login attempts counter." in caplog.text
assert f"User: {user.id} successfully authenticated their account." in caplog.text
def test_authenticate_too_many_failed_attempts(db, caplog):
save, _ = db
user = Users(
display_name="failed2much",
user_name="failed2much@example.com",
password="testpassword123",
failed_login_attempts=30,
failed_login_attempt_time=0,
)
save(user)
caplog.set_level(logging.WARNING)
actual = run(
"""
mutation{
authenticate(
input: {
userName:"failed2much@example.com",
password:"testpassword123"
}
){
authResult {
user {
userName
}
}
}
}
""",
)
if "errors" not in actual:
fail(
"expected signin with invalid credentials to raise an error. Instead:"
"{}".format(json(actual))
)
[err] = actual["errors"]
[message, _line, _field] = err.values()
assert message == error_too_many_failed_login_attempts()
assert (
f"User: {user.id} tried to authenticate but has too many login attempts."
in caplog.text
)
def test_authenticating_in_with_unknown_users_returns_error(caplog):
caplog.set_level(logging.WARNING)
actual = run(
"""
mutation{
authenticate(
input: {
userName:"null@example.com",
password:"testpassword123"
}
){
authResult {
user {
userName
}
}
}
}
""",
)
if "errors" not in actual:
fail(
"expected signin with invalid credentials to raise an error. Instead:"
"{}".format(json(actual))
)
[err] = actual["errors"]
[message, _line, _field] = err.values()
assert message == error_user_does_not_exist()
assert (
f"User attempted to authenticate an account that does not exist using this username: null@example.com."
in caplog.text
)