From 4a110ad135ea65407d010d0170af923abc5e40cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rui=20Tom=C3=A9?= <108268980+r-tome@users.noreply.github.com> Date: Wed, 2 Aug 2023 11:03:13 +0100 Subject: [PATCH] [AC-1438] Updated SCIM controllers to respond with "content-Type: application/scim+json" (#3072) --- bitwarden_license/src/Scim/Controllers/v2/GroupsController.cs | 1 + bitwarden_license/src/Scim/Controllers/v2/UsersController.cs | 1 + .../Controllers/v2/GroupsControllerTests.cs | 2 ++ .../Scim.IntegrationTest/Controllers/v2/UsersControllerTests.cs | 2 ++ 4 files changed, 6 insertions(+) diff --git a/bitwarden_license/src/Scim/Controllers/v2/GroupsController.cs b/bitwarden_license/src/Scim/Controllers/v2/GroupsController.cs index 8a3c02f5e6..68bdf8f299 100644 --- a/bitwarden_license/src/Scim/Controllers/v2/GroupsController.cs +++ b/bitwarden_license/src/Scim/Controllers/v2/GroupsController.cs @@ -12,6 +12,7 @@ namespace Bit.Scim.Controllers.v2; [Authorize("Scim")] [Route("v2/{organizationId}/groups")] +[Produces("application/scim+json")] [ExceptionHandlerFilter] public class GroupsController : Controller { diff --git a/bitwarden_license/src/Scim/Controllers/v2/UsersController.cs b/bitwarden_license/src/Scim/Controllers/v2/UsersController.cs index b198ff79e6..22b8a22c85 100644 --- a/bitwarden_license/src/Scim/Controllers/v2/UsersController.cs +++ b/bitwarden_license/src/Scim/Controllers/v2/UsersController.cs @@ -13,6 +13,7 @@ namespace Bit.Scim.Controllers.v2; [Authorize("Scim")] [Route("v2/{organizationId}/users")] +[Produces("application/scim+json")] [ExceptionHandlerFilter] public class UsersController : Controller { diff --git a/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/GroupsControllerTests.cs b/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/GroupsControllerTests.cs index 748c0618cc..898e12b422 100644 --- a/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/GroupsControllerTests.cs +++ b/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/GroupsControllerTests.cs @@ -48,6 +48,8 @@ public class GroupsControllerTests : IClassFixture, IAsy var responseModel = JsonSerializer.Deserialize(context.Response.Body, new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase }); AssertHelper.AssertPropertyEqual(expectedResponse, responseModel); + + Assert.Contains("application/scim+json", context.Response.Headers.ContentType.ToString()); } [Fact] diff --git a/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/UsersControllerTests.cs b/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/UsersControllerTests.cs index 5f57238eb6..5a025a2c8c 100644 --- a/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/UsersControllerTests.cs +++ b/bitwarden_license/test/Scim.IntegrationTest/Controllers/v2/UsersControllerTests.cs @@ -55,6 +55,8 @@ public class UsersControllerTests : IClassFixture, IAsyn var responseModel = JsonSerializer.Deserialize(context.Response.Body, new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase }); AssertHelper.AssertPropertyEqual(expectedResponse, responseModel); + + Assert.Contains("application/scim+json", context.Response.Headers.ContentType.ToString()); } [Fact]