Skip to content

Commit d457978

Browse files
author
Fabien Coelho
committed
early detection of unwanted pass/token
1 parent 3495710 commit d457978

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

FlaskTester.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ class Authenticator:
3030
- ``fake``: fake scheme, login directly passed as a parameter
3131
"""
3232

33-
_AUTH_SCHEMES = ("basic", "param", "bearer", "header", "cookie", "tparam", "fake")
33+
_TOKEN_SCHEMES = {"bearer", "header", "cookie", "tparam"}
34+
_PASS_SCHEMES = {"basic", "param"}
35+
36+
_AUTH_SCHEMES = {"fake"}
37+
_AUTH_SCHEMES.update(_TOKEN_SCHEMES)
38+
_AUTH_SCHEMES.update(_PASS_SCHEMES)
3439

3540
def __init__(self,
3641
allow: list[str] = ["bearer", "basic", "param"],
@@ -65,8 +70,13 @@ def __init__(self,
6570
default is ``AUTH``
6671
"""
6772

73+
self._has_pass, self._has_token = False, False
6874
for auth in allow:
6975
assert auth in self._AUTH_SCHEMES
76+
if auth in self._TOKEN_SCHEMES:
77+
self._has_token = True
78+
if auth in self._PASS_SCHEMES:
79+
self._has_pass = True
7080
self._allow = allow
7181

7282
# authentication scheme parameters
@@ -93,6 +103,8 @@ def _set(self, login: str, val: str|None, store: dict[str, str]):
93103

94104
def setPass(self, login: str, pw: str|None):
95105
"""Associate a password to a user."""
106+
if not self._has_pass:
107+
raise AuthError("cannot set password, no password scheme allowed")
96108
self._set(login, pw, self._passes)
97109

98110
def setPasses(self, pws: list[str]):
@@ -103,6 +115,8 @@ def setPasses(self, pws: list[str]):
103115

104116
def setToken(self, login: str, token: str|None):
105117
"""Associate a token to a user."""
118+
if not self._has_token:
119+
raise AuthError("cannot set token, no token scheme allowed")
106120
self._set(login, token, self._tokens)
107121

108122
def _param(self, kwargs: dict[str, Any], key: str, val: Any):

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ please report any [issues](https://github.com/zx80/flask-tester/issues).
181181
### ? on ?
182182

183183
Improved documentation and tests.
184+
Raise an error when setting unusable passwords or tokens.
184185

185186
### 1.1 on 2024-03-13
186187

tests/test.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ def test_authenticator_token():
109109
auth.setToken("susie", "ss-token")
110110
auth.setToken("hobbes", "hbs-token")
111111
auth.setToken("moe", "m-token")
112-
auth.setPass("rosalyn", "rsln-pass")
113112
kwargs = {}
114113
auth.setAuth("calvin", kwargs, auth="bearer")
115114
assert kwargs["headers"]["Authorization"] == "Bearer clv-token"
@@ -133,6 +132,14 @@ def test_authenticator_token():
133132
except ft.FlaskTesterError:
134133
assert True, "error raised"
135134
# rosalyn as a password, but no password carrier is allowed
135+
try:
136+
auth.setPass("rosalyn", "rsln-pass")
137+
assert False, "must raise an error" # pragma: no cover
138+
except ft.AuthError:
139+
assert True, "error raised"
140+
# force to trigger later errors
141+
auth._has_pass = True
142+
auth.setPass("rosalyn", "rsln-pass")
136143
try:
137144
kwargs={}
138145
auth.setAuth("rosalyn", kwargs)
@@ -147,7 +154,6 @@ def test_authenticator_password():
147154
auth.setPass("hobbes", "hbs-pass")
148155
auth.setPass("moe", "m-pass")
149156
auth.setPass("rosalyn", "rsln-pass")
150-
auth.setToken("susie", "ss-token")
151157
kwargs = {}
152158
auth.setAuth("calvin", kwargs, auth="basic")
153159
assert kwargs["auth"] == ("calvin", "clv-pass")
@@ -164,6 +170,14 @@ def test_authenticator_password():
164170
auth.setAuth("hobbes", kwargs, auth="fake")
165171
assert kwargs["json"]["LOGIN"] == "hobbes"
166172
# susie as a token, but no token carrier is allowed
173+
try:
174+
auth.setToken("susie", "ss-token")
175+
assert False, "must raise an error" # pragma: no cover
176+
except ft.FlaskTesterError:
177+
assert True, "error raised"
178+
# force to trigger later error
179+
auth._has_token = True
180+
auth.setToken("susie", "ss-token")
167181
try:
168182
kwargs={}
169183
auth.setAuth("susie", kwargs)

0 commit comments

Comments
 (0)