You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
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); |
|
} |
|
}
|
|
|