Skip to content

Commit

Permalink
providers/scim: fix missing schemas attribute for User and Group
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
  • Loading branch information
BeryJu committed Nov 15, 2023
1 parent 99cecdb commit 41abc01
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion authentik/providers/scim/clients/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def delete(self, obj: Group):

def to_scim(self, obj: Group) -> SCIMGroupSchema:
"""Convert authentik user into SCIM"""
raw_scim_group = {}
raw_scim_group = SCIMGroupSchema(displayName="").model_dump()
for mapping in (
self.provider.property_mappings_group.all().order_by("name").select_subclasses()
):
Expand Down
2 changes: 2 additions & 0 deletions authentik/providers/scim/clients/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
class User(BaseUser):
"""Modified User schema with added externalId field"""

schemas: tuple[str] = ("urn:ietf:params:scim:schemas:core:2.0:User",)
externalId: Optional[str] = None


class Group(BaseGroup):
"""Modified Group schema with added externalId field"""

schemas: tuple[str] = ("urn:ietf:params:scim:schemas:core:2.0:Group",)
externalId: Optional[str] = None


Expand Down
2 changes: 1 addition & 1 deletion authentik/providers/scim/clients/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def delete(self, obj: User):

def to_scim(self, obj: User) -> SCIMUserSchema:
"""Convert authentik user into SCIM"""
raw_scim_user = {}
raw_scim_user = SCIMUserSchema(userName="").model_dump()
for mapping in self.provider.property_mappings.all().order_by("name").select_subclasses():
if not isinstance(mapping, SCIMMapping):
continue
Expand Down
18 changes: 15 additions & 3 deletions authentik/providers/scim/tests/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ def test_group_create(self, mock: Mocker):
self.assertEqual(mock.request_history[1].method, "POST")
self.assertJSONEqual(
mock.request_history[1].body,
{"externalId": str(group.pk), "displayName": group.name},
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"],
"externalId": str(group.pk),
"displayName": group.name,
},
)

@Mocker()
Expand Down Expand Up @@ -96,7 +100,11 @@ def test_group_create_update(self, mock: Mocker):
validate(body, loads(schema.read()))
self.assertEqual(
body,
{"externalId": str(group.pk), "displayName": group.name},
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"],
"externalId": str(group.pk),
"displayName": group.name,
},
)
group.save()
self.assertEqual(mock.call_count, 4)
Expand Down Expand Up @@ -129,7 +137,11 @@ def test_group_create_delete(self, mock: Mocker):
self.assertEqual(mock.request_history[1].method, "POST")
self.assertJSONEqual(
mock.request_history[1].body,
{"externalId": str(group.pk), "displayName": group.name},
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"],
"externalId": str(group.pk),
"displayName": group.name,
},
)
group.delete()
self.assertEqual(mock.call_count, 4)
Expand Down
4 changes: 4 additions & 0 deletions authentik/providers/scim/tests/test_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def test_user_create(self, mock: Mocker):
self.assertJSONEqual(
mock.request_history[1].body,
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"active": True,
"emails": [
{
Expand Down Expand Up @@ -121,6 +122,7 @@ def test_user_create_update(self, mock: Mocker):
self.assertEqual(
body,
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"active": True,
"emails": [
{
Expand Down Expand Up @@ -173,6 +175,7 @@ def test_user_create_delete(self, mock: Mocker):
self.assertJSONEqual(
mock.request_history[1].body,
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"active": True,
"emails": [
{
Expand Down Expand Up @@ -240,6 +243,7 @@ def test_sync_task(self, mock: Mocker):
self.assertJSONEqual(
mock.request_history[1].body,
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"active": True,
"emails": [
{
Expand Down

0 comments on commit 41abc01

Please sign in to comment.