sources/oauth: start adding tests for types
This commit is contained in:
parent
d380194e13
commit
0083cd55df
|
@ -0,0 +1,41 @@
|
||||||
|
"""Discord Type tests"""
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
from authentik.sources.oauth.models import OAuthSource, UserOAuthSourceConnection
|
||||||
|
from authentik.sources.oauth.types.discord import DiscordOAuth2Callback
|
||||||
|
|
||||||
|
# https://discord.com/developers/docs/resources/user#user-object
|
||||||
|
DISCORD_USER = {
|
||||||
|
"id": "80351110224678912",
|
||||||
|
"username": "Nelly",
|
||||||
|
"discriminator": "1337",
|
||||||
|
"avatar": "8342729096ea3675442027381ff50dfe",
|
||||||
|
"verified": True,
|
||||||
|
"email": "nelly@discord.com",
|
||||||
|
"flags": 64,
|
||||||
|
"premium_type": 1,
|
||||||
|
"public_flags": 64,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class TestTypeGitHub(TestCase):
|
||||||
|
"""OAuth Source tests"""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.source = OAuthSource.objects.create(
|
||||||
|
name="test",
|
||||||
|
slug="test",
|
||||||
|
provider_type="openid-connect",
|
||||||
|
authorization_url="",
|
||||||
|
profile_url="",
|
||||||
|
consumer_key="",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_enroll_context(self):
|
||||||
|
"""Test GitHub Enrollment context"""
|
||||||
|
ak_context = DiscordOAuth2Callback().get_user_enroll_context(
|
||||||
|
self.source, UserOAuthSourceConnection(), DISCORD_USER
|
||||||
|
)
|
||||||
|
self.assertEqual(ak_context["username"], DISCORD_USER["username"])
|
||||||
|
self.assertEqual(ak_context["email"], DISCORD_USER["email"])
|
||||||
|
self.assertEqual(ak_context["name"], DISCORD_USER["username"])
|
|
@ -0,0 +1,71 @@
|
||||||
|
"""GitHub Type tests"""
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
from authentik.sources.oauth.models import OAuthSource, UserOAuthSourceConnection
|
||||||
|
from authentik.sources.oauth.types.github import GitHubOAuth2Callback
|
||||||
|
|
||||||
|
# https://developer.github.com/v3/users/#get-the-authenticated-user
|
||||||
|
GITHUB_USER = {
|
||||||
|
"login": "octocat",
|
||||||
|
"id": 1,
|
||||||
|
"node_id": "MDQ6VXNlcjE=",
|
||||||
|
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
||||||
|
"gravatar_id": "",
|
||||||
|
"url": "https://api.github.com/users/octocat",
|
||||||
|
"html_url": "https://github.com/octocat",
|
||||||
|
"followers_url": "https://api.github.com/users/octocat/followers",
|
||||||
|
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
||||||
|
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
||||||
|
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
||||||
|
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
||||||
|
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
||||||
|
"repos_url": "https://api.github.com/users/octocat/repos",
|
||||||
|
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
||||||
|
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
||||||
|
"type": "User",
|
||||||
|
"site_admin": False,
|
||||||
|
"name": "monalisa octocat",
|
||||||
|
"company": "GitHub",
|
||||||
|
"blog": "https://github.com/blog",
|
||||||
|
"location": "San Francisco",
|
||||||
|
"email": "octocat@github.com",
|
||||||
|
"hireable": False,
|
||||||
|
"bio": "There once was...",
|
||||||
|
"twitter_username": "monatheoctocat",
|
||||||
|
"public_repos": 2,
|
||||||
|
"public_gists": 1,
|
||||||
|
"followers": 20,
|
||||||
|
"following": 0,
|
||||||
|
"created_at": "2008-01-14T04:33:35Z",
|
||||||
|
"updated_at": "2008-01-14T04:33:35Z",
|
||||||
|
"private_gists": 81,
|
||||||
|
"total_private_repos": 100,
|
||||||
|
"owned_private_repos": 100,
|
||||||
|
"disk_usage": 10000,
|
||||||
|
"collaborators": 8,
|
||||||
|
"two_factor_authentication": True,
|
||||||
|
"plan": {"name": "Medium", "space": 400, "private_repos": 20, "collaborators": 0},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class TestTypeGitHub(TestCase):
|
||||||
|
"""OAuth Source tests"""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.source = OAuthSource.objects.create(
|
||||||
|
name="test",
|
||||||
|
slug="test",
|
||||||
|
provider_type="openid-connect",
|
||||||
|
authorization_url="",
|
||||||
|
profile_url="",
|
||||||
|
consumer_key="",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_enroll_context(self):
|
||||||
|
"""Test GitHub Enrollment context"""
|
||||||
|
ak_context = GitHubOAuth2Callback().get_user_enroll_context(
|
||||||
|
self.source, UserOAuthSourceConnection(), GITHUB_USER
|
||||||
|
)
|
||||||
|
self.assertEqual(ak_context["username"], GITHUB_USER["login"])
|
||||||
|
self.assertEqual(ak_context["email"], GITHUB_USER["email"])
|
||||||
|
self.assertEqual(ak_context["name"], GITHUB_USER["name"])
|
|
@ -0,0 +1,112 @@
|
||||||
|
"""Twitter Type tests"""
|
||||||
|
from django.test import Client, TestCase
|
||||||
|
|
||||||
|
from authentik.sources.oauth.models import OAuthSource, UserOAuthSourceConnection
|
||||||
|
from authentik.sources.oauth.types.twitter import TwitterOAuthCallback
|
||||||
|
|
||||||
|
# https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/manage-account-settings/ \
|
||||||
|
# api-reference/get-account-verify_credentials
|
||||||
|
TWITTER_USER = {
|
||||||
|
"contributors_enabled": True,
|
||||||
|
"created_at": "Sat May 09 17:58:22 +0000 2009",
|
||||||
|
"default_profile": False,
|
||||||
|
"default_profile_image": False,
|
||||||
|
"description": "I taught your phone that thing you like.",
|
||||||
|
"favourites_count": 588,
|
||||||
|
"follow_request_sent": None,
|
||||||
|
"followers_count": 10625,
|
||||||
|
"following": None,
|
||||||
|
"friends_count": 1181,
|
||||||
|
"geo_enabled": True,
|
||||||
|
"id": 38895958,
|
||||||
|
"id_str": "38895958",
|
||||||
|
"is_translator": False,
|
||||||
|
"lang": "en",
|
||||||
|
"listed_count": 190,
|
||||||
|
"location": "San Francisco",
|
||||||
|
"name": "Sean Cook",
|
||||||
|
"notifications": None,
|
||||||
|
"profile_background_color": "1A1B1F",
|
||||||
|
"profile_background_image_url": "",
|
||||||
|
"profile_background_image_url_https": "",
|
||||||
|
"profile_background_tile": True,
|
||||||
|
"profile_image_url": "",
|
||||||
|
"profile_image_url_https": "",
|
||||||
|
"profile_link_color": "2FC2EF",
|
||||||
|
"profile_sidebar_border_color": "181A1E",
|
||||||
|
"profile_sidebar_fill_color": "252429",
|
||||||
|
"profile_text_color": "666666",
|
||||||
|
"profile_use_background_image": True,
|
||||||
|
"protected": False,
|
||||||
|
"screen_name": "theSeanCook",
|
||||||
|
"show_all_inline_media": True,
|
||||||
|
"status": {
|
||||||
|
"contributors": None,
|
||||||
|
"coordinates": {"coordinates": [-122.45037293, 37.76484123], "type": "Point"},
|
||||||
|
"created_at": "Tue Aug 28 05:44:24 +0000 2012",
|
||||||
|
"favorited": False,
|
||||||
|
"geo": {"coordinates": [37.76484123, -122.45037293], "type": "Point"},
|
||||||
|
"id": 240323931419062272,
|
||||||
|
"id_str": "240323931419062272",
|
||||||
|
"in_reply_to_screen_name": "messl",
|
||||||
|
"in_reply_to_status_id": 240316959173009410,
|
||||||
|
"in_reply_to_status_id_str": "240316959173009410",
|
||||||
|
"in_reply_to_user_id": 18707866,
|
||||||
|
"in_reply_to_user_id_str": "18707866",
|
||||||
|
"place": {
|
||||||
|
"attributes": {},
|
||||||
|
"bounding_box": {
|
||||||
|
"coordinates": [
|
||||||
|
[
|
||||||
|
[-122.45778216, 37.75932999],
|
||||||
|
[-122.44248216, 37.75932999],
|
||||||
|
[-122.44248216, 37.76752899],
|
||||||
|
[-122.45778216, 37.76752899],
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"type": "Polygon",
|
||||||
|
},
|
||||||
|
"country": "United States",
|
||||||
|
"country_code": "US",
|
||||||
|
"full_name": "Ashbury Heights, San Francisco",
|
||||||
|
"id": "866269c983527d5a",
|
||||||
|
"name": "Ashbury Heights",
|
||||||
|
"place_type": "neighborhood",
|
||||||
|
"url": "http://api.twitter.com/1/geo/id/866269c983527d5a.json",
|
||||||
|
},
|
||||||
|
"retweet_count": 0,
|
||||||
|
"retweeted": False,
|
||||||
|
"source": "Twitter for iPhone",
|
||||||
|
"text": "@messl congrats! So happy for all 3 of you.",
|
||||||
|
"truncated": False,
|
||||||
|
},
|
||||||
|
"statuses_count": 2609,
|
||||||
|
"time_zone": "Pacific Time (US & Canada)",
|
||||||
|
"url": None,
|
||||||
|
"utc_offset": -28800,
|
||||||
|
"verified": False,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class TestTypeGitHub(TestCase):
|
||||||
|
"""OAuth Source tests"""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.client = Client()
|
||||||
|
self.source = OAuthSource.objects.create(
|
||||||
|
name="test",
|
||||||
|
slug="test",
|
||||||
|
provider_type="openid-connect",
|
||||||
|
authorization_url="",
|
||||||
|
profile_url="",
|
||||||
|
consumer_key="",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_enroll_context(self):
|
||||||
|
"""Test Twitter Enrollment context"""
|
||||||
|
ak_context = TwitterOAuthCallback().get_user_enroll_context(
|
||||||
|
self.source, UserOAuthSourceConnection(), TWITTER_USER
|
||||||
|
)
|
||||||
|
self.assertEqual(ak_context["username"], TWITTER_USER["screen_name"])
|
||||||
|
self.assertEqual(ak_context["email"], TWITTER_USER.get("email", None))
|
||||||
|
self.assertEqual(ak_context["name"], TWITTER_USER["name"])
|
|
@ -1,15 +1,14 @@
|
||||||
"""OAuth Source tests"""
|
"""OAuth Source tests"""
|
||||||
from django.shortcuts import reverse
|
from django.shortcuts import reverse
|
||||||
from django.test import Client, TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
from authentik.sources.oauth.models import OAuthSource
|
from authentik.sources.oauth.models import OAuthSource
|
||||||
|
|
||||||
|
|
||||||
class OAuthSourceTests(TestCase):
|
class TestOAuthSource(TestCase):
|
||||||
"""OAuth Source tests"""
|
"""OAuth Source tests"""
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.client = Client()
|
|
||||||
self.source = OAuthSource.objects.create(
|
self.source = OAuthSource.objects.create(
|
||||||
name="test",
|
name="test",
|
||||||
slug="test",
|
slug="test",
|
|
@ -11,7 +11,7 @@ from authentik.sources.oauth.views.redirect import OAuthRedirect
|
||||||
class DiscordOAuthRedirect(OAuthRedirect):
|
class DiscordOAuthRedirect(OAuthRedirect):
|
||||||
"""Discord OAuth2 Redirect"""
|
"""Discord OAuth2 Redirect"""
|
||||||
|
|
||||||
def get_additional_parameters(self, source):
|
def get_additional_parameters(self, source): # pragma: no cover
|
||||||
return {
|
return {
|
||||||
"scope": "email identify",
|
"scope": "email identify",
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ from authentik.sources.oauth.views.redirect import OAuthRedirect
|
||||||
class FacebookOAuthRedirect(OAuthRedirect):
|
class FacebookOAuthRedirect(OAuthRedirect):
|
||||||
"""Facebook OAuth2 Redirect"""
|
"""Facebook OAuth2 Redirect"""
|
||||||
|
|
||||||
def get_additional_parameters(self, source):
|
def get_additional_parameters(self, source): # pragma: no cover
|
||||||
return {
|
return {
|
||||||
"scope": "email",
|
"scope": "email",
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ from authentik.sources.oauth.views.redirect import OAuthRedirect
|
||||||
class GoogleOAuthRedirect(OAuthRedirect):
|
class GoogleOAuthRedirect(OAuthRedirect):
|
||||||
"""Google OAuth2 Redirect"""
|
"""Google OAuth2 Redirect"""
|
||||||
|
|
||||||
def get_additional_parameters(self, source):
|
def get_additional_parameters(self, source): # pragma: no cover
|
||||||
return {
|
return {
|
||||||
"scope": "email profile",
|
"scope": "email profile",
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ from authentik.sources.oauth.views.redirect import OAuthRedirect
|
||||||
class OpenIDConnectOAuthRedirect(OAuthRedirect):
|
class OpenIDConnectOAuthRedirect(OAuthRedirect):
|
||||||
"""OpenIDConnect OAuth2 Redirect"""
|
"""OpenIDConnect OAuth2 Redirect"""
|
||||||
|
|
||||||
def get_additional_parameters(self, source: OAuthSource):
|
def get_additional_parameters(self, source: OAuthSource): # pragma: no cover
|
||||||
return {
|
return {
|
||||||
"scope": "openid email profile",
|
"scope": "openid email profile",
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ from authentik.sources.oauth.views.redirect import OAuthRedirect
|
||||||
class RedditOAuthRedirect(OAuthRedirect):
|
class RedditOAuthRedirect(OAuthRedirect):
|
||||||
"""Reddit OAuth2 Redirect"""
|
"""Reddit OAuth2 Redirect"""
|
||||||
|
|
||||||
def get_additional_parameters(self, source):
|
def get_additional_parameters(self, source): # pragma: no cover
|
||||||
return {
|
return {
|
||||||
"scope": "identity",
|
"scope": "identity",
|
||||||
"duration": "permanent",
|
"duration": "permanent",
|
||||||
|
|
|
@ -18,6 +18,6 @@ class TwitterOAuthCallback(OAuthCallback):
|
||||||
) -> Dict[str, Any]:
|
) -> Dict[str, Any]:
|
||||||
return {
|
return {
|
||||||
"username": info.get("screen_name"),
|
"username": info.get("screen_name"),
|
||||||
"email": info.get("email"),
|
"email": info.get("email", None),
|
||||||
"name": info.get("name"),
|
"name": info.get("name"),
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue