mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using Bit.Core.AdminConsole.OrganizationFeatures.OrganizationDomains;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
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.OrganizationDomains;
|
|
|
|
[SutProviderCustomize]
|
|
public class DeleteOrganizationDomainCommandTests
|
|
{
|
|
[Theory, BitAutoData]
|
|
public async Task DeleteAsync_Success(Guid id, SutProvider<DeleteOrganizationDomainCommand> sutProvider)
|
|
{
|
|
var expected = new OrganizationDomain
|
|
{
|
|
Id = id,
|
|
OrganizationId = Guid.NewGuid(),
|
|
DomainName = "Test Domain",
|
|
Txt = "btw+test18383838383"
|
|
};
|
|
|
|
await sutProvider.Sut.DeleteAsync(expected);
|
|
|
|
await sutProvider.GetDependency<IOrganizationDomainRepository>().Received(1).DeleteAsync(expected);
|
|
await sutProvider.GetDependency<IEventService>().Received(1)
|
|
.LogOrganizationDomainEventAsync(Arg.Any<OrganizationDomain>(), EventType.OrganizationDomain_Removed);
|
|
}
|
|
}
|