mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* Initial draft of moving the org user controller details method into a query * Removing comments and addressing pr items * Adding the org users query to core * Adding the member access report * Addressing some pr concerns and refactoring to be more efficient * Some minor changes to the way properties are spelled * Setting authorization to organization * Adding the permissions check for reports and comments * removing unnecessary usings * Removing ciphers controller change that was a mistake * There was a duplication issue in getting collections for users grabbing groups * Adding comments to the CreateReport method * Only get the user collections by userId * Some finaly refactoring * Adding the no group, no collection, and no perms local strings * Modifying and adding query test cases * Removing unnecessary permissions code in query * Added mapping for id and UsesKeyConnector to MemberAccessReportModel (#4681) * Moving test cases from controller fully into the query. --------- Co-authored-by: Daniel James Smith <2670567+djsmith85@users.noreply.github.com> Co-authored-by: aj-rosado <109146700+aj-rosado@users.noreply.github.com>
118 lines
4.7 KiB
C#
118 lines
4.7 KiB
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Core.AdminConsole.OrganizationFeatures.OrganizationUsers;
|
|
using Core.AdminConsole.OrganizationFeatures.OrganizationUsers.Requests;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Api.Test.AdminConsole.Queries;
|
|
|
|
[SutProviderCustomize]
|
|
public class OrganizationUserUserDetailsQueryTests
|
|
{
|
|
[Theory]
|
|
[BitAutoData]
|
|
public async Task Get_DowngradesCustomUsersWithDeprecatedPermissions(
|
|
ICollection<OrganizationUserUserDetails> organizationUsers,
|
|
SutProvider<OrganizationUserUserDetailsQuery> sutProvider,
|
|
Guid organizationId)
|
|
{
|
|
Get_Setup(organizationUsers, sutProvider, organizationId);
|
|
|
|
var customUser = organizationUsers.First();
|
|
customUser.Type = OrganizationUserType.Custom;
|
|
customUser.Permissions = CoreHelpers.ClassToJsonData(new Permissions
|
|
{
|
|
EditAssignedCollections = true,
|
|
DeleteAssignedCollections = true,
|
|
});
|
|
|
|
var response = await sutProvider.Sut.GetOrganizationUserUserDetails(new OrganizationUserUserDetailsQueryRequest { OrganizationId = organizationId });
|
|
|
|
var customUserResponse = response.First(r => r.Id == organizationUsers.First().Id);
|
|
Assert.Equal(OrganizationUserType.User, customUserResponse.Type);
|
|
|
|
var customUserPermissions = customUserResponse.GetPermissions();
|
|
Assert.False(customUserPermissions.EditAssignedCollections);
|
|
Assert.False(customUserPermissions.DeleteAssignedCollections);
|
|
}
|
|
|
|
[Theory]
|
|
[BitAutoData]
|
|
public async Task Get_HandlesNullPermissionsObject(
|
|
ICollection<OrganizationUserUserDetails> organizationUsers,
|
|
SutProvider<OrganizationUserUserDetailsQuery> sutProvider,
|
|
Guid organizationId)
|
|
{
|
|
Get_Setup(organizationUsers, sutProvider, organizationId);
|
|
organizationUsers.First().Permissions = "null";
|
|
var response = await sutProvider.Sut.GetOrganizationUserUserDetails(new OrganizationUserUserDetailsQueryRequest { OrganizationId = organizationId });
|
|
|
|
Assert.True(response.All(r => organizationUsers.Any(ou => ou.Id == r.Id)));
|
|
}
|
|
|
|
[Theory]
|
|
[BitAutoData]
|
|
public async Task Get_SetsDeprecatedCustomPermissionstoFalse(
|
|
ICollection<OrganizationUserUserDetails> organizationUsers,
|
|
SutProvider<OrganizationUserUserDetailsQuery> sutProvider,
|
|
Guid organizationId)
|
|
{
|
|
Get_Setup(organizationUsers, sutProvider, organizationId);
|
|
|
|
var customUser = organizationUsers.First();
|
|
customUser.Type = OrganizationUserType.Custom;
|
|
customUser.Permissions = CoreHelpers.ClassToJsonData(new Permissions
|
|
{
|
|
AccessReports = true,
|
|
EditAssignedCollections = true,
|
|
DeleteAssignedCollections = true,
|
|
AccessEventLogs = true
|
|
});
|
|
|
|
var response = await sutProvider.Sut.GetOrganizationUserUserDetails(new OrganizationUserUserDetailsQueryRequest { OrganizationId = organizationId });
|
|
|
|
var customUserResponse = response.First(r => r.Id == organizationUsers.First().Id);
|
|
Assert.Equal(OrganizationUserType.Custom, customUserResponse.Type);
|
|
|
|
var customUserPermissions = customUserResponse.GetPermissions();
|
|
Assert.True(customUserPermissions.AccessReports);
|
|
Assert.True(customUserPermissions.AccessEventLogs);
|
|
Assert.False(customUserPermissions.EditAssignedCollections);
|
|
Assert.False(customUserPermissions.DeleteAssignedCollections);
|
|
}
|
|
|
|
[Theory]
|
|
[BitAutoData]
|
|
public async Task Get_ReturnsUsers(
|
|
ICollection<OrganizationUserUserDetails> organizationUsers,
|
|
SutProvider<OrganizationUserUserDetailsQuery> sutProvider,
|
|
Guid organizationId)
|
|
{
|
|
Get_Setup(organizationUsers, sutProvider, organizationId);
|
|
var response = await sutProvider.Sut.GetOrganizationUserUserDetails(new OrganizationUserUserDetailsQueryRequest { OrganizationId = organizationId });
|
|
|
|
Assert.True(response.All(r => organizationUsers.Any(ou => ou.Id == r.Id)));
|
|
}
|
|
|
|
private void Get_Setup(
|
|
ICollection<OrganizationUserUserDetails> organizationUsers,
|
|
SutProvider<OrganizationUserUserDetailsQuery> sutProvider,
|
|
Guid organizationId)
|
|
{
|
|
foreach (var orgUser in organizationUsers)
|
|
{
|
|
orgUser.Permissions = null;
|
|
}
|
|
|
|
sutProvider.GetDependency<IOrganizationUserRepository>()
|
|
.GetManyDetailsByOrganizationAsync(organizationId, Arg.Any<bool>(), Arg.Any<bool>())
|
|
.Returns(organizationUsers);
|
|
}
|
|
}
|