api: add token tests
This commit is contained in:
parent
e120d274e9
commit
9e4f840d2d
|
@ -1,5 +1,6 @@
|
||||||
"""API Authentication"""
|
"""API Authentication"""
|
||||||
from base64 import b64decode
|
from base64 import b64decode
|
||||||
|
from binascii import Error
|
||||||
from typing import Any, Optional, Tuple, Union
|
from typing import Any, Optional, Tuple, Union
|
||||||
|
|
||||||
from rest_framework.authentication import BaseAuthentication, get_authorization_header
|
from rest_framework.authentication import BaseAuthentication, get_authorization_header
|
||||||
|
@ -24,7 +25,7 @@ def token_from_header(raw_header: bytes) -> Optional[Token]:
|
||||||
return None
|
return None
|
||||||
try:
|
try:
|
||||||
auth_credentials = b64decode(auth_credentials.encode()).decode()
|
auth_credentials = b64decode(auth_credentials.encode()).decode()
|
||||||
except UnicodeDecodeError:
|
except (UnicodeDecodeError, Error):
|
||||||
return None
|
return None
|
||||||
# Accept credentials with username and without
|
# Accept credentials with username and without
|
||||||
if ":" in auth_credentials:
|
if ":" in auth_credentials:
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
"""Test API Authentication"""
|
||||||
|
from base64 import b64encode
|
||||||
|
|
||||||
|
from django.test import TestCase
|
||||||
|
from guardian.shortcuts import get_anonymous_user
|
||||||
|
|
||||||
|
from authentik.api.auth import token_from_header
|
||||||
|
from authentik.core.models import Token, TokenIntents
|
||||||
|
|
||||||
|
|
||||||
|
class TestAPIAuth(TestCase):
|
||||||
|
"""Test API Authentication"""
|
||||||
|
|
||||||
|
def setUp(self) -> None:
|
||||||
|
super().setUp()
|
||||||
|
|
||||||
|
def test_valid(self):
|
||||||
|
"""Test valid token"""
|
||||||
|
token = Token.objects.create(
|
||||||
|
intent=TokenIntents.INTENT_API, user=get_anonymous_user()
|
||||||
|
)
|
||||||
|
auth = b64encode(f":{token.key}".encode()).decode()
|
||||||
|
self.assertEqual(token_from_header(f"Basic {auth}".encode()), token)
|
||||||
|
|
||||||
|
def test_invalid_type(self):
|
||||||
|
"""Test invalid type"""
|
||||||
|
self.assertIsNone(token_from_header("foo bar".encode()))
|
||||||
|
|
||||||
|
def test_invalid_decode(self):
|
||||||
|
"""Test invalid bas64"""
|
||||||
|
self.assertIsNone(token_from_header("Basic bar".encode()))
|
||||||
|
|
||||||
|
def test_invalid_empty_password(self):
|
||||||
|
"""Test invalid with empty password"""
|
||||||
|
self.assertIsNone(token_from_header("Basic :".encode()))
|
||||||
|
|
||||||
|
def test_invalid_no_token(self):
|
||||||
|
"""Test invalid with no token"""
|
||||||
|
auth = b64encode(":abc".encode()).decode()
|
||||||
|
self.assertIsNone(token_from_header(f"Basic :{auth}".encode()))
|
Reference in New Issue