-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b7b81c
commit 6be570a
Showing
2 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -736,6 +736,38 @@ def test_custom_username_algo_dotted_path(self, request_mock, jws_mock): | |
User.objects.get(username="dotted_username_algo"), | ||
) | ||
|
||
@override_settings( | ||
OIDC_USE_NONCE=False, | ||
OIDC_USERNAME_ALGO="tests.test_auth.dotted_username_algo_callback_with_claims", | ||
) | ||
@patch("mozilla_django_oidc.auth.OIDCAuthenticationBackend._verify_jws") | ||
@patch("mozilla_django_oidc.auth.requests") | ||
def test_dotted_username_algo_callback_with_claims(self, request_mock, jws_mock): | ||
"""Test user creation with custom username algorithm with a dotted path.""" | ||
auth_request = RequestFactory().get("/foo", {"code": "foo", "state": "bar"}) | ||
auth_request.session = {} | ||
|
||
self.assertEqual(User.objects.filter(email="[email protected]").exists(), False) | ||
jws_mock.return_value = json.dumps({"nonce": "nonce"}).encode("utf-8") | ||
domain = "django.con" | ||
get_json_mock = Mock() | ||
get_json_mock.json.return_value = { | ||
"nickname": "a_username", | ||
"email": "[email protected]", | ||
"domain": domain, | ||
} | ||
request_mock.get.return_value = get_json_mock | ||
post_json_mock = Mock() | ||
post_json_mock.json.return_value = { | ||
"id_token": "id_token", | ||
"access_token": "access_granted", | ||
} | ||
request_mock.post.return_value = post_json_mock | ||
self.assertEqual( | ||
self.backend.authenticate(request=auth_request), | ||
User.objects.get(username=f"{domain}/[email protected]"), | ||
) | ||
|
||
@override_settings(OIDC_USE_NONCE=False) | ||
@patch("mozilla_django_oidc.auth.OIDCAuthenticationBackend._verify_jws") | ||
@patch("mozilla_django_oidc.auth.requests") | ||
|
@@ -1170,3 +1202,9 @@ def test_returns_true_custom_claims(self, patch_logger, patch_settings): | |
|
||
def dotted_username_algo_callback(email): | ||
return "dotted_username_algo" | ||
|
||
|
||
def dotted_username_algo_callback_with_claims(email, claims=None): | ||
domain = claims["domain"] | ||
username = f"{domain}/{email}" | ||
return username |