diff --git a/test/Api.Test/AdminConsole/Controllers/SlackOAuthControllerTests.cs b/test/Api.Test/AdminConsole/Controllers/SlackOAuthControllerTests.cs index dfebd8396e..96ae5da527 100644 --- a/test/Api.Test/AdminConsole/Controllers/SlackOAuthControllerTests.cs +++ b/test/Api.Test/AdminConsole/Controllers/SlackOAuthControllerTests.cs @@ -1,8 +1,7 @@ using Bit.Api.AdminConsole.Controllers; +using Bit.Core.AdminConsole.Entities; using Bit.Core.Context; -using Bit.Core.Enums; using Bit.Core.Exceptions; -using Bit.Core.Models.Data.Integrations; using Bit.Core.Repositories; using Bit.Core.Services; using Bit.Test.Common.AutoFixture; @@ -29,10 +28,10 @@ public class SlackOAuthControllerTests .ObtainTokenViaOAuth(Arg.Any(), Arg.Any()) .Returns(token); - var requestAction = await sutProvider.Sut.OAuthCallback(organizationId.ToString(), "A_test_code"); + var requestAction = await sutProvider.Sut.OAuthCallback(organizationId, "A_test_code"); - await sutProvider.GetDependency().Received(1) - .CreateOrganizationIntegrationAsync(organizationId, IntegrationType.Slack, new SlackIntegration(token)); + await sutProvider.GetDependency().Received(1) + .CreateAsync(Arg.Any()); Assert.IsType(requestAction); } @@ -44,7 +43,7 @@ public class SlackOAuthControllerTests .OrganizationOwner(organizationId) .Returns(true); - await Assert.ThrowsAsync(async () => await sutProvider.Sut.OAuthCallback(organizationId.ToString(), string.Empty)); + await Assert.ThrowsAsync(async () => await sutProvider.Sut.OAuthCallback(organizationId, string.Empty)); } [Theory, BitAutoData] @@ -58,7 +57,7 @@ public class SlackOAuthControllerTests .ObtainTokenViaOAuth(Arg.Any(), Arg.Any()) .Returns(string.Empty); - await Assert.ThrowsAsync(async () => await sutProvider.Sut.OAuthCallback(organizationId.ToString(), "A_test_code")); + await Assert.ThrowsAsync(async () => await sutProvider.Sut.OAuthCallback(organizationId, "A_test_code")); } [Theory, BitAutoData] @@ -73,13 +72,13 @@ public class SlackOAuthControllerTests .ObtainTokenViaOAuth(Arg.Any(), Arg.Any()) .Returns(token); - await Assert.ThrowsAsync(async () => await sutProvider.Sut.OAuthCallback(organizationId.ToString(), "A_test_code")); + await Assert.ThrowsAsync(async () => await sutProvider.Sut.OAuthCallback(organizationId, "A_test_code")); } [Theory, BitAutoData] public async Task Redirect_ShouldRedirectToSlack(SutProvider sutProvider, Guid organizationId) { - var expectedUrl = $"https://localhost/{organizationId.ToString()}"; + var expectedUrl = $"https://localhost/{organizationId}"; sutProvider.Sut.Url = Substitute.For(); sutProvider.GetDependency().GetRedirectUrl(Arg.Any()).Returns(expectedUrl); @@ -90,7 +89,7 @@ public class SlackOAuthControllerTests .HttpContext.Request.Scheme .Returns("https"); - var requestAction = await sutProvider.Sut.RedirectToSlack(organizationId.ToString()); + var requestAction = await sutProvider.Sut.RedirectToSlack(organizationId); var redirectResult = Assert.IsType(requestAction); Assert.Equal(expectedUrl, redirectResult.Url); @@ -108,7 +107,7 @@ public class SlackOAuthControllerTests .HttpContext.Request.Scheme .Returns("https"); - await Assert.ThrowsAsync(async () => await sutProvider.Sut.RedirectToSlack(organizationId.ToString())); + await Assert.ThrowsAsync(async () => await sutProvider.Sut.RedirectToSlack(organizationId)); } [Theory, BitAutoData] @@ -124,6 +123,6 @@ public class SlackOAuthControllerTests .HttpContext.Request.Scheme .Returns("https"); - await Assert.ThrowsAsync(async () => await sutProvider.Sut.RedirectToSlack(organizationId.ToString())); + await Assert.ThrowsAsync(async () => await sutProvider.Sut.RedirectToSlack(organizationId)); } }