forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_validate_two_factor.py
More file actions
153 lines (128 loc) · 3.63 KB
/
Copy pathtest_validate_two_factor.py
File metadata and controls
153 lines (128 loc) · 3.63 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
import logging
import pytest
import pytest_mock
from pytest import fail
from db import DB
from functions.error_messages import *
from models import Users
from tests.test_functions import run, json
@pytest.fixture
def save():
s, cleanup, session = DB()
yield s
cleanup()
def test_successfully_validate_two_factor(save, mocker, caplog):
"""
Test to ensure that an account can successfully be tfa validated
"""
mocker.patch(
"schemas.validate_two_factor.validate.pyotp.totp.TOTP.verify",
autospec=True,
return_value=True,
)
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
)
save(user)
caplog.set_level(logging.INFO)
result = run(
mutation="""
mutation {
authenticateTwoFactor (
otpCode: "123456"
userName: "testuser@testemail.ca"
) {
user {
tfa
}
}
}
"""
)
if "errors" in result:
fail("Tried to tfa validate account, instead: {}".format(json(result)))
expected_result = {"data": {"authenticateTwoFactor": {"user": {"tfa": True,}}}}
assert result == expected_result
assert f"User: {user.id} successfully tfa validated their account." in caplog.text
def test_invalid_otp_code_validate_two_factor(save, mocker, caplog):
"""
Test to ensure that error out with invalid otp code
"""
mocker.patch(
"schemas.validate_two_factor.validate.pyotp.totp.TOTP.verify",
autospec=True,
return_value=False,
)
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
)
save(user)
caplog.set_level(logging.INFO)
result = run(
mutation="""
mutation {
authenticateTwoFactor (
otpCode: "123456"
userName: "testuser@testemail.ca"
) {
user {
tfa
}
}
}
"""
)
if "errors" not in result:
fail(
"Tried to fail test with invalid otp code, instead: {}".format(json(result))
)
[error] = result["errors"]
assert error["message"] == error_otp_code_is_invalid()
assert (
f"User: {user.id} attempted to tfa validate their account but their otp code was incorrect."
in caplog.text
)
def test_invalid_user_name_validate_two_factor(save, mocker, caplog):
"""
Test to ensure that error out with invalid user name
"""
mocker.patch(
"schemas.validate_two_factor.validate.pyotp.totp.TOTP.verify",
autospec=True,
return_value=False,
)
user = Users(
display_name="testuser",
user_name="testuser@testemail.ca",
password="testpassword123",
)
save(user)
caplog.set_level(logging.INFO)
result = run(
mutation="""
mutation {
authenticateTwoFactor (
otpCode: "123456"
userName: "test-user@testemail.ca"
) {
user {
tfa
}
}
}
"""
)
if "errors" not in result:
fail(
"Tried to fail test with invalid otp code, instead: {}".format(json(result))
)
[error] = result["errors"]
assert error["message"] == error_user_does_not_exist()
assert (
f"User test-user@testemail.ca attempted to verify account, but no account associated with that username."
in caplog.text
)