2024-05-20 16:22:16 +02:00
|
|
|
|
using Bit.Core.AdminConsole.Entities;
|
|
|
|
|
using Bit.Core.Enums;
|
2022-10-31 10:58:21 +01:00
|
|
|
|
using Bit.Core.Exceptions;
|
2024-05-31 01:23:31 +02:00
|
|
|
|
using Bit.Core.Models.Business;
|
2022-10-31 10:58:21 +01:00
|
|
|
|
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
|
|
|
|
using Bit.Core.Repositories;
|
|
|
|
|
using Bit.Core.Services;
|
|
|
|
|
using Bit.Scim.Models;
|
|
|
|
|
using Bit.Scim.Users;
|
|
|
|
|
using Bit.Scim.Utilities;
|
|
|
|
|
using Bit.Test.Common.AutoFixture;
|
|
|
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
|
using NSubstitute;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Scim.Test.Users;
|
|
|
|
|
|
|
|
|
|
[SutProviderCustomize]
|
|
|
|
|
public class PostUserCommandTests
|
|
|
|
|
{
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
2024-05-20 16:22:16 +02:00
|
|
|
|
public async Task PostUser_Success(SutProvider<PostUserCommand> sutProvider, string externalId, Guid organizationId, List<BaseScimUserModel.EmailModel> emails, ICollection<OrganizationUserUserDetails> organizationUsers, Core.Entities.OrganizationUser newUser, Organization organization)
|
2022-10-31 10:58:21 +01:00
|
|
|
|
{
|
|
|
|
|
var scimUserRequestModel = new ScimUserRequestModel
|
|
|
|
|
{
|
|
|
|
|
ExternalId = externalId,
|
|
|
|
|
Emails = emails,
|
|
|
|
|
Active = true,
|
|
|
|
|
Schemas = new List<string> { ScimConstants.Scim2SchemaUser }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<IOrganizationUserRepository>()
|
|
|
|
|
.GetManyDetailsByOrganizationAsync(organizationId)
|
|
|
|
|
.Returns(organizationUsers);
|
|
|
|
|
|
2024-05-20 16:22:16 +02:00
|
|
|
|
sutProvider.GetDependency<IOrganizationRepository>().GetByIdAsync(organizationId).Returns(organization);
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<IPaymentService>().HasSecretsManagerStandalone(organization).Returns(true);
|
|
|
|
|
|
2022-10-31 10:58:21 +01:00
|
|
|
|
sutProvider.GetDependency<IOrganizationService>()
|
2024-05-31 01:23:31 +02:00
|
|
|
|
.InviteUserAsync(organizationId, invitingUserId: null, EventSystemUser.SCIM,
|
|
|
|
|
Arg.Is<OrganizationUserInvite>(i =>
|
|
|
|
|
i.Emails.Single().Equals(scimUserRequestModel.PrimaryEmail.ToLowerInvariant()) &&
|
|
|
|
|
i.Type == OrganizationUserType.User &&
|
|
|
|
|
!i.Collections.Any() &&
|
|
|
|
|
!i.Groups.Any() &&
|
|
|
|
|
i.AccessSecretsManager), externalId)
|
2022-10-31 10:58:21 +01:00
|
|
|
|
.Returns(newUser);
|
|
|
|
|
|
|
|
|
|
var user = await sutProvider.Sut.PostUserAsync(organizationId, scimUserRequestModel);
|
|
|
|
|
|
2024-05-31 01:23:31 +02:00
|
|
|
|
await sutProvider.GetDependency<IOrganizationService>().Received(1).InviteUserAsync(organizationId,
|
|
|
|
|
invitingUserId: null, EventSystemUser.SCIM,
|
|
|
|
|
Arg.Is<OrganizationUserInvite>(i =>
|
|
|
|
|
i.Emails.Single().Equals(scimUserRequestModel.PrimaryEmail.ToLowerInvariant()) &&
|
|
|
|
|
i.Type == OrganizationUserType.User &&
|
|
|
|
|
!i.Collections.Any() &&
|
|
|
|
|
!i.Groups.Any() &&
|
|
|
|
|
i.AccessSecretsManager), externalId);
|
2022-10-31 10:58:21 +01:00
|
|
|
|
await sutProvider.GetDependency<IOrganizationUserRepository>().Received(1).GetDetailsByIdAsync(newUser.Id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
|
|
|
|
public async Task PostUser_NullEmail_Throws(SutProvider<PostUserCommand> sutProvider, Guid organizationId)
|
|
|
|
|
{
|
|
|
|
|
var scimUserRequestModel = new ScimUserRequestModel
|
|
|
|
|
{
|
|
|
|
|
Emails = new List<BaseScimUserModel.EmailModel>(),
|
|
|
|
|
Active = true,
|
|
|
|
|
Schemas = new List<string> { ScimConstants.Scim2SchemaUser }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await Assert.ThrowsAsync<BadRequestException>(async () => await sutProvider.Sut.PostUserAsync(organizationId, scimUserRequestModel));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
|
|
|
|
public async Task PostUser_Inactive_Throws(SutProvider<PostUserCommand> sutProvider, Guid organizationId, List<BaseScimUserModel.EmailModel> emails)
|
|
|
|
|
{
|
|
|
|
|
var scimUserRequestModel = new ScimUserRequestModel
|
|
|
|
|
{
|
|
|
|
|
Emails = emails,
|
|
|
|
|
Active = false,
|
|
|
|
|
Schemas = new List<string> { ScimConstants.Scim2SchemaUser }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await Assert.ThrowsAsync<BadRequestException>(async () => await sutProvider.Sut.PostUserAsync(organizationId, scimUserRequestModel));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
|
|
|
|
public async Task PostUser_DuplicateExternalId_Throws(SutProvider<PostUserCommand> sutProvider, Guid organizationId, List<BaseScimUserModel.EmailModel> emails, ICollection<OrganizationUserUserDetails> organizationUsers)
|
|
|
|
|
{
|
|
|
|
|
var scimUserRequestModel = new ScimUserRequestModel
|
|
|
|
|
{
|
|
|
|
|
ExternalId = organizationUsers.First().ExternalId,
|
|
|
|
|
Emails = emails,
|
|
|
|
|
Active = true,
|
|
|
|
|
Schemas = new List<string> { ScimConstants.Scim2SchemaUser }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<IOrganizationUserRepository>()
|
|
|
|
|
.GetManyDetailsByOrganizationAsync(organizationId)
|
|
|
|
|
.Returns(organizationUsers);
|
|
|
|
|
|
|
|
|
|
await Assert.ThrowsAsync<ConflictException>(async () => await sutProvider.Sut.PostUserAsync(organizationId, scimUserRequestModel));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
|
|
|
|
public async Task PostUser_DuplicateUserName_Throws(SutProvider<PostUserCommand> sutProvider, Guid organizationId, List<BaseScimUserModel.EmailModel> emails, ICollection<OrganizationUserUserDetails> organizationUsers)
|
|
|
|
|
{
|
|
|
|
|
var scimUserRequestModel = new ScimUserRequestModel
|
|
|
|
|
{
|
|
|
|
|
UserName = organizationUsers.First().ExternalId,
|
|
|
|
|
Emails = emails,
|
|
|
|
|
Active = true,
|
|
|
|
|
Schemas = new List<string> { ScimConstants.Scim2SchemaUser }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<IOrganizationUserRepository>()
|
|
|
|
|
.GetManyDetailsByOrganizationAsync(organizationId)
|
|
|
|
|
.Returns(organizationUsers);
|
|
|
|
|
|
|
|
|
|
await Assert.ThrowsAsync<ConflictException>(async () => await sutProvider.Sut.PostUserAsync(organizationId, scimUserRequestModel));
|
|
|
|
|
}
|
|
|
|
|
}
|