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

* feat: Update OrganizationAbility with LimitCollectionCreationDeletion, refs AC-1809 * feat: Update OrganizationAbility constructor usage to pass feature flag state, refs AC-1809 * feat: Update EF retrieval of org abilities to include new property from database, refs AC-1809 * feat: Update sproc to include LimitCollectionCreationDeletion property and create migration, refs AC-1809 * feat: Inject ApplicationCache into handler accessing LimitCollectionCreationDeletion, refs AC-1809 * feat: remove collection management settings from CurrentContextOrganization and update tests, refs AC-1809 * feat: add AllowAdminAccessToAllCollectionItems to OrganizationAbility pipeline, refs AC-1809 --------- Co-authored-by: Thomas Rittson <trittson@bitwarden.com> Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
224 lines
8.5 KiB
C#
224 lines
8.5 KiB
C#
using System.Security.Claims;
|
|
using Bit.Api.Vault.AuthorizationHandlers.OrganizationUsers;
|
|
using Bit.Core;
|
|
using Bit.Core.Context;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Models.Data.Organizations;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Test.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Api.Test.Vault.AuthorizationHandlers;
|
|
|
|
[SutProviderCustomize]
|
|
[FeatureServiceCustomize(FeatureFlagKeys.FlexibleCollections)]
|
|
public class OrganizationUserAuthorizationHandlerTests
|
|
{
|
|
[Theory]
|
|
[BitAutoData(OrganizationUserType.Admin)]
|
|
[BitAutoData(OrganizationUserType.Owner)]
|
|
public async Task CanReadAllAsync_WhenAdminOrOwner_Success(
|
|
OrganizationUserType userType,
|
|
Guid userId, SutProvider<OrganizationUserAuthorizationHandler> sutProvider,
|
|
CurrentContextOrganization organization)
|
|
{
|
|
organization.Type = userType;
|
|
organization.Permissions = new Permissions();
|
|
|
|
var organizationAbilities = ArrangeOrganizationAbilitiesDictionary(organization.Id, true);
|
|
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(organization.Id) },
|
|
new ClaimsPrincipal(),
|
|
null);
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().UserId.Returns(userId);
|
|
sutProvider.GetDependency<ICurrentContext>().GetOrganization(organization.Id).Returns(organization);
|
|
sutProvider.GetDependency<IApplicationCacheService>().GetOrganizationAbilitiesAsync().Returns(organizationAbilities);
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
|
|
Assert.True(context.HasSucceeded);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task CanReadAllAsync_WithProviderUser_Success(
|
|
Guid userId,
|
|
SutProvider<OrganizationUserAuthorizationHandler> sutProvider, CurrentContextOrganization organization)
|
|
{
|
|
organization.Type = OrganizationUserType.User;
|
|
organization.Permissions = new Permissions();
|
|
|
|
var organizationAbilities = ArrangeOrganizationAbilitiesDictionary(organization.Id, true);
|
|
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(organization.Id) },
|
|
new ClaimsPrincipal(),
|
|
null);
|
|
|
|
sutProvider.GetDependency<ICurrentContext>()
|
|
.UserId
|
|
.Returns(userId);
|
|
sutProvider.GetDependency<IApplicationCacheService>().GetOrganizationAbilitiesAsync().Returns(organizationAbilities);
|
|
sutProvider.GetDependency<ICurrentContext>()
|
|
.ProviderUserForOrgAsync(organization.Id)
|
|
.Returns(true);
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
|
|
Assert.True(context.HasSucceeded);
|
|
}
|
|
|
|
[Theory]
|
|
[BitAutoData(true, false, false, false, true)]
|
|
[BitAutoData(false, true, false, false, true)]
|
|
[BitAutoData(false, false, true, false, true)]
|
|
[BitAutoData(false, false, false, true, true)]
|
|
[BitAutoData(false, false, false, false, false)]
|
|
public async Task CanReadAllAsync_WhenCustomUserWithRequiredPermissions_Success(
|
|
bool editAnyCollection, bool deleteAnyCollection, bool manageGroups,
|
|
bool manageUsers, bool limitCollectionCreationDeletion,
|
|
SutProvider<OrganizationUserAuthorizationHandler> sutProvider,
|
|
CurrentContextOrganization organization)
|
|
{
|
|
var actingUserId = Guid.NewGuid();
|
|
|
|
organization.Type = OrganizationUserType.Custom;
|
|
organization.Permissions = new Permissions
|
|
{
|
|
EditAnyCollection = editAnyCollection,
|
|
DeleteAnyCollection = deleteAnyCollection,
|
|
ManageGroups = manageGroups,
|
|
ManageUsers = manageUsers
|
|
};
|
|
|
|
var organizationAbilities = ArrangeOrganizationAbilitiesDictionary(organization.Id, limitCollectionCreationDeletion);
|
|
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(organization.Id) },
|
|
new ClaimsPrincipal(),
|
|
null);
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().UserId.Returns(actingUserId);
|
|
sutProvider.GetDependency<ICurrentContext>().GetOrganization(organization.Id).Returns(organization);
|
|
sutProvider.GetDependency<IApplicationCacheService>().GetOrganizationAbilitiesAsync().Returns(organizationAbilities);
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
|
|
Assert.True(context.HasSucceeded);
|
|
}
|
|
|
|
[Theory]
|
|
[BitAutoData(OrganizationUserType.User)]
|
|
[BitAutoData(OrganizationUserType.Custom)]
|
|
public async Task CanReadAllAsync_WhenMissingPermissions_NoSuccess(
|
|
OrganizationUserType userType,
|
|
SutProvider<OrganizationUserAuthorizationHandler> sutProvider,
|
|
CurrentContextOrganization organization)
|
|
{
|
|
var actingUserId = Guid.NewGuid();
|
|
|
|
organization.Type = userType;
|
|
organization.Permissions = new Permissions
|
|
{
|
|
EditAnyCollection = false,
|
|
DeleteAnyCollection = false,
|
|
ManageGroups = false,
|
|
ManageUsers = false
|
|
};
|
|
|
|
var organizationAbilities = ArrangeOrganizationAbilitiesDictionary(organization.Id, true);
|
|
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(organization.Id) },
|
|
new ClaimsPrincipal(),
|
|
null);
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().UserId.Returns(actingUserId);
|
|
sutProvider.GetDependency<ICurrentContext>().GetOrganization(organization.Id).Returns(organization);
|
|
sutProvider.GetDependency<IApplicationCacheService>().GetOrganizationAbilitiesAsync().Returns(organizationAbilities);
|
|
sutProvider.GetDependency<ICurrentContext>().ProviderUserForOrgAsync(Arg.Any<Guid>()).Returns(false);
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
|
|
Assert.False(context.HasSucceeded);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task HandleRequirementAsync_WhenMissingOrgAccess_NoSuccess(
|
|
Guid userId,
|
|
Guid organizationId,
|
|
SutProvider<OrganizationUserAuthorizationHandler> sutProvider)
|
|
{
|
|
var organizationAbilities = ArrangeOrganizationAbilitiesDictionary(organizationId, true);
|
|
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(organizationId) },
|
|
new ClaimsPrincipal(),
|
|
null
|
|
);
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().UserId.Returns(userId);
|
|
sutProvider.GetDependency<ICurrentContext>().GetOrganization(Arg.Any<Guid>()).Returns((CurrentContextOrganization)null);
|
|
sutProvider.GetDependency<IApplicationCacheService>().GetOrganizationAbilitiesAsync().Returns(organizationAbilities);
|
|
sutProvider.GetDependency<ICurrentContext>().ProviderUserForOrgAsync(Arg.Any<Guid>()).Returns(false);
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
Assert.False(context.HasSucceeded);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task HandleRequirementAsync_MissingUserId_Failure(
|
|
Guid organizationId,
|
|
SutProvider<OrganizationUserAuthorizationHandler> sutProvider)
|
|
{
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(organizationId) },
|
|
new ClaimsPrincipal(),
|
|
null
|
|
);
|
|
|
|
// Simulate missing user id
|
|
sutProvider.GetDependency<ICurrentContext>().UserId.Returns((Guid?)null);
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
Assert.True(context.HasFailed);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task HandleRequirementAsync_NoSpecifiedOrgId_Failure(
|
|
SutProvider<OrganizationUserAuthorizationHandler> sutProvider)
|
|
{
|
|
var context = new AuthorizationHandlerContext(
|
|
new[] { OrganizationUserOperations.ReadAll(default) },
|
|
new ClaimsPrincipal(),
|
|
null
|
|
);
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().UserId.Returns(new Guid());
|
|
|
|
await sutProvider.Sut.HandleAsync(context);
|
|
|
|
Assert.True(context.HasFailed);
|
|
}
|
|
|
|
private static Dictionary<Guid, OrganizationAbility> ArrangeOrganizationAbilitiesDictionary(Guid orgId,
|
|
bool limitCollectionCreationDeletion)
|
|
{
|
|
return new Dictionary<Guid, OrganizationAbility>
|
|
{
|
|
{ orgId,
|
|
new OrganizationAbility
|
|
{
|
|
LimitCollectionCreationDeletion = limitCollectionCreationDeletion
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|