using Bit.Core.Entities; using Bit.Core.Exceptions; using Bit.Core.Models.Data.Organizations.OrganizationUsers; using Bit.Core.Repositories; using Bit.Scim.Queries.Users; using Bit.Scim.Utilities; using Bit.Test.Common.AutoFixture; using Bit.Test.Common.AutoFixture.Attributes; using Bit.Test.Common.Helpers; using NSubstitute; using Xunit; namespace Bit.Scim.Test.Queries.Users; [SutProviderCustomize] public class GetUserQueryTests { [Theory] [BitAutoData] public async Task GetUser_Success(SutProvider sutProvider, OrganizationUserUserDetails organizationUserUserDetails) { var expectedResult = new Models.ScimUserResponseModel { Id = organizationUserUserDetails.Id.ToString(), UserName = organizationUserUserDetails.Email, Name = new Models.BaseScimUserModel.NameModel(organizationUserUserDetails.Name), Emails = new List { new Models.BaseScimUserModel.EmailModel(organizationUserUserDetails.Email) }, DisplayName = organizationUserUserDetails.Name, Active = organizationUserUserDetails.Status != Core.Enums.OrganizationUserStatusType.Revoked ? true : false, Groups = new List(), ExternalId = organizationUserUserDetails.ExternalId, Schemas = new List { ScimConstants.Scim2SchemaUser } }; sutProvider.GetDependency() .GetDetailsByIdAsync(organizationUserUserDetails.Id) .Returns(organizationUserUserDetails); var result = await sutProvider.Sut.GetUserAsync(organizationUserUserDetails.OrganizationId, organizationUserUserDetails.Id); await sutProvider.GetDependency().Received(1).GetDetailsByIdAsync(organizationUserUserDetails.Id); AssertHelper.AssertPropertyEqual(expectedResult, result); } [Theory] [BitAutoData] public async Task GetUser_NotFound_Throws(SutProvider sutProvider, Guid organizationId, Guid organizationUserId) { await Assert.ThrowsAsync(async () => await sutProvider.Sut.GetUserAsync(organizationId, organizationUserId)); } [Theory] [BitAutoData] public async Task GetUser_MismatchingOrganizationId_Throws(SutProvider sutProvider, Guid organizationId, Guid organizationUserId) { sutProvider.GetDependency() .GetByIdAsync(organizationUserId) .Returns(new OrganizationUser { Id = organizationUserId, OrganizationId = Guid.NewGuid() }); await Assert.ThrowsAsync(async () => await sutProvider.Sut.GetUserAsync(organizationId, organizationUserId)); } }