mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
4fec7cadb7
Refactored ValidateOrganizationsDomainAsync to use VerifyOrganizationDomainAsync
141 lines
5.6 KiB
C#
141 lines
5.6 KiB
C#
using Bit.Core.AdminConsole.OrganizationFeatures.OrganizationDomains;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Exceptions;
|
|
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 VerifyOrganizationDomainCommandTests
|
|
{
|
|
[Theory, BitAutoData]
|
|
public async Task UserVerifyOrganizationDomain_ShouldThrowConflict_WhenDomainHasBeenClaimed(Guid id,
|
|
SutProvider<VerifyOrganizationDomainCommand> sutProvider)
|
|
{
|
|
var expected = new OrganizationDomain
|
|
{
|
|
Id = id,
|
|
OrganizationId = Guid.NewGuid(),
|
|
DomainName = "Test Domain",
|
|
Txt = "btw+test18383838383"
|
|
};
|
|
expected.SetVerifiedDate();
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetByIdAsync(id)
|
|
.Returns(expected);
|
|
|
|
var requestAction = async () => await sutProvider.Sut.UserVerifyOrganizationDomainAsync(expected);
|
|
|
|
var exception = await Assert.ThrowsAsync<ConflictException>(requestAction);
|
|
Assert.Contains("Domain has already been verified.", exception.Message);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task UserVerifyOrganizationDomain_ShouldThrowConflict_WhenDomainHasBeenClaimedByAnotherOrganization(Guid id,
|
|
SutProvider<VerifyOrganizationDomainCommand> sutProvider)
|
|
{
|
|
var expected = new OrganizationDomain
|
|
{
|
|
Id = id,
|
|
OrganizationId = Guid.NewGuid(),
|
|
DomainName = "Test Domain",
|
|
Txt = "btw+test18383838383"
|
|
};
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetByIdAsync(id)
|
|
.Returns(expected);
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetClaimedDomainsByDomainNameAsync(expected.DomainName)
|
|
.Returns(new List<OrganizationDomain> { expected });
|
|
|
|
var requestAction = async () => await sutProvider.Sut.UserVerifyOrganizationDomainAsync(expected);
|
|
|
|
var exception = await Assert.ThrowsAsync<ConflictException>(requestAction);
|
|
Assert.Contains("The domain is not available to be claimed.", exception.Message);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task UserVerifyOrganizationDomain_ShouldVerifyDomainUpdateAndLogEvent_WhenTxtRecordExists(Guid id,
|
|
SutProvider<VerifyOrganizationDomainCommand> sutProvider)
|
|
{
|
|
var expected = new OrganizationDomain
|
|
{
|
|
Id = id,
|
|
OrganizationId = Guid.NewGuid(),
|
|
DomainName = "Test Domain",
|
|
Txt = "btw+test18383838383"
|
|
};
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetByIdAsync(id)
|
|
.Returns(expected);
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetClaimedDomainsByDomainNameAsync(expected.DomainName)
|
|
.Returns(new List<OrganizationDomain>());
|
|
sutProvider.GetDependency<IDnsResolverService>()
|
|
.ResolveAsync(expected.DomainName, Arg.Any<string>())
|
|
.Returns(true);
|
|
|
|
var result = await sutProvider.Sut.UserVerifyOrganizationDomainAsync(expected);
|
|
|
|
Assert.NotNull(result.VerifiedDate);
|
|
await sutProvider.GetDependency<IOrganizationDomainRepository>().Received(1)
|
|
.ReplaceAsync(Arg.Any<OrganizationDomain>());
|
|
await sutProvider.GetDependency<IEventService>().Received(1)
|
|
.LogOrganizationDomainEventAsync(Arg.Any<OrganizationDomain>(), EventType.OrganizationDomain_Verified);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task UserVerifyOrganizationDomain_ShouldNotSetVerifiedDate_WhenTxtRecordDoesNotExist(Guid id,
|
|
SutProvider<VerifyOrganizationDomainCommand> sutProvider)
|
|
{
|
|
var expected = new OrganizationDomain
|
|
{
|
|
Id = id,
|
|
OrganizationId = Guid.NewGuid(),
|
|
DomainName = "Test Domain",
|
|
Txt = "btw+test18383838383"
|
|
};
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetByIdAsync(id)
|
|
.Returns(expected);
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>()
|
|
.GetClaimedDomainsByDomainNameAsync(expected.DomainName)
|
|
.Returns(new List<OrganizationDomain>());
|
|
sutProvider.GetDependency<IDnsResolverService>()
|
|
.ResolveAsync(expected.DomainName, Arg.Any<string>())
|
|
.Returns(false);
|
|
|
|
var result = await sutProvider.Sut.UserVerifyOrganizationDomainAsync(expected);
|
|
|
|
Assert.Null(result.VerifiedDate);
|
|
await sutProvider.GetDependency<IEventService>().Received(1)
|
|
.LogOrganizationDomainEventAsync(Arg.Any<OrganizationDomain>(), EventType.OrganizationDomain_NotVerified);
|
|
}
|
|
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task SystemVerifyOrganizationDomain_CallsEventServiceWithUpdatedJobRunCount(SutProvider<VerifyOrganizationDomainCommand> sutProvider)
|
|
{
|
|
var domain = new OrganizationDomain()
|
|
{
|
|
Id = Guid.NewGuid(),
|
|
OrganizationId = Guid.NewGuid(),
|
|
CreationDate = DateTime.UtcNow,
|
|
DomainName = "test.com",
|
|
Txt = "btw+12345",
|
|
};
|
|
|
|
_ = await sutProvider.Sut.SystemVerifyOrganizationDomainAsync(domain);
|
|
|
|
await sutProvider.GetDependency<IEventService>().ReceivedWithAnyArgs(1)
|
|
.LogOrganizationDomainEventAsync(default, EventType.OrganizationDomain_NotVerified,
|
|
EventSystemUser.DomainVerification);
|
|
}
|
|
}
|