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

* Add command interface and implementation for disabling organizations * Register organization disable command for dependency injection * Add unit tests for OrganizationDisableCommand * Refactor subscription handlers to use IOrganizationDisableCommand for disabling organizations * Remove DisableAsync method from IOrganizationService and its implementation in OrganizationService * Remove IOrganizationService dependency from SubscriptionDeletedHandler * Remove commented TODO for sending email to owners in OrganizationDisableCommand
80 lines
2.8 KiB
C#
80 lines
2.8 KiB
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Core.AdminConsole.OrganizationFeatures.Organizations;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Core.Services;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.AdminConsole.OrganizationFeatures.Organizations;
|
|
|
|
[SutProviderCustomize]
|
|
public class OrganizationDisableCommandTests
|
|
{
|
|
[Theory, BitAutoData]
|
|
public async Task DisableAsync_WhenOrganizationEnabled_DisablesSuccessfully(
|
|
Organization organization,
|
|
DateTime expirationDate,
|
|
SutProvider<OrganizationDisableCommand> sutProvider)
|
|
{
|
|
organization.Enabled = true;
|
|
sutProvider.GetDependency<IOrganizationRepository>()
|
|
.GetByIdAsync(organization.Id)
|
|
.Returns(organization);
|
|
|
|
await sutProvider.Sut.DisableAsync(organization.Id, expirationDate);
|
|
|
|
Assert.False(organization.Enabled);
|
|
Assert.Equal(expirationDate, organization.ExpirationDate);
|
|
|
|
await sutProvider.GetDependency<IOrganizationRepository>()
|
|
.Received(1)
|
|
.ReplaceAsync(organization);
|
|
await sutProvider.GetDependency<IApplicationCacheService>()
|
|
.Received(1)
|
|
.UpsertOrganizationAbilityAsync(organization);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task DisableAsync_WhenOrganizationNotFound_DoesNothing(
|
|
Guid organizationId,
|
|
DateTime expirationDate,
|
|
SutProvider<OrganizationDisableCommand> sutProvider)
|
|
{
|
|
sutProvider.GetDependency<IOrganizationRepository>()
|
|
.GetByIdAsync(organizationId)
|
|
.Returns((Organization)null);
|
|
|
|
await sutProvider.Sut.DisableAsync(organizationId, expirationDate);
|
|
|
|
await sutProvider.GetDependency<IOrganizationRepository>()
|
|
.DidNotReceive()
|
|
.ReplaceAsync(Arg.Any<Organization>());
|
|
await sutProvider.GetDependency<IApplicationCacheService>()
|
|
.DidNotReceive()
|
|
.UpsertOrganizationAbilityAsync(Arg.Any<Organization>());
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task DisableAsync_WhenOrganizationAlreadyDisabled_DoesNothing(
|
|
Organization organization,
|
|
DateTime expirationDate,
|
|
SutProvider<OrganizationDisableCommand> sutProvider)
|
|
{
|
|
organization.Enabled = false;
|
|
sutProvider.GetDependency<IOrganizationRepository>()
|
|
.GetByIdAsync(organization.Id)
|
|
.Returns(organization);
|
|
|
|
await sutProvider.Sut.DisableAsync(organization.Id, expirationDate);
|
|
|
|
await sutProvider.GetDependency<IOrganizationRepository>()
|
|
.DidNotReceive()
|
|
.ReplaceAsync(Arg.Any<Organization>());
|
|
await sutProvider.GetDependency<IApplicationCacheService>()
|
|
.DidNotReceive()
|
|
.UpsertOrganizationAbilityAsync(Arg.Any<Organization>());
|
|
}
|
|
}
|