Compare commits
No commits in common. "bc888195ad6c1ad813770bd97df668ff178a801e" and "f04ea7ac184e36c82a7ae5a09a4629612f6e0d38" have entirely different histories.
bc888195ad
...
f04ea7ac18
@ -140,7 +140,7 @@ class DigestAuth:
|
|||||||
return view(*args, **kwargs)
|
return view(*args, **kwargs)
|
||||||
except UnauthorizedException as e:
|
except UnauthorizedException as e:
|
||||||
if len(e.args) > 0:
|
if len(e.args) > 0:
|
||||||
current_app.logger.warning(e.args[0])
|
sys.stderr.write(e.args[0] + "\n")
|
||||||
response: Response = Response()
|
response: Response = Response()
|
||||||
response.status = 401
|
response.status = 401
|
||||||
response.headers["WWW-Authenticate"] \
|
response.headers["WWW-Authenticate"] \
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
"""The test case for the HTTP digest authentication.
|
"""The test case for the HTTP digest authentication.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import logging
|
|
||||||
from secrets import token_urlsafe
|
from secrets import token_urlsafe
|
||||||
from typing import Any, Optional, Dict
|
from typing import Any, Optional, Dict
|
||||||
|
|
||||||
@ -56,7 +55,6 @@ class AuthenticationTestCase(TestCase):
|
|||||||
|
|
||||||
:return: The Flask application.
|
:return: The Flask application.
|
||||||
"""
|
"""
|
||||||
logging.getLogger("test_auth").addHandler(logging.NullHandler())
|
|
||||||
app: Flask = Flask(__name__)
|
app: Flask = Flask(__name__)
|
||||||
app.config.from_mapping({
|
app.config.from_mapping({
|
||||||
"TESTING": True,
|
"TESTING": True,
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
"""The test case for the Flask-Login integration.
|
"""The test case for the Flask-Login integration.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import logging
|
|
||||||
from secrets import token_urlsafe
|
from secrets import token_urlsafe
|
||||||
from typing import Optional, Dict
|
from typing import Optional, Dict
|
||||||
|
|
||||||
@ -76,7 +75,6 @@ class FlaskLoginTestCase(TestCase):
|
|||||||
|
|
||||||
:return: The Flask application.
|
:return: The Flask application.
|
||||||
"""
|
"""
|
||||||
logging.getLogger("test_flask_login").addHandler(logging.NullHandler())
|
|
||||||
app: Flask = Flask(__name__)
|
app: Flask = Flask(__name__)
|
||||||
app.config.from_mapping({
|
app.config.from_mapping({
|
||||||
"TESTING": True,
|
"TESTING": True,
|
||||||
|
Loading…
Reference in New Issue
Block a user