mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
0c346d6070
Updated domain verification to auto-enable single org policy.
80 lines
2.6 KiB
C#
80 lines
2.6 KiB
C#
using Bit.Core.AdminConsole.OrganizationFeatures.OrganizationDomains.Interfaces;
|
|
using Bit.Core.AdminConsole.Services.Implementations;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.AdminConsole.Services;
|
|
|
|
[SutProviderCustomize]
|
|
public class OrganizationDomainServiceTests
|
|
{
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task ValidateOrganizationsDomainAsync_CallsDnsResolverServiceAndReplace(SutProvider<OrganizationDomainService> sutProvider)
|
|
{
|
|
var domains = new List<OrganizationDomain>
|
|
{
|
|
new()
|
|
{
|
|
Id = Guid.NewGuid(),
|
|
OrganizationId = Guid.NewGuid(),
|
|
CreationDate = DateTime.UtcNow,
|
|
DomainName = "test.com",
|
|
Txt = "btw+12345",
|
|
},
|
|
new()
|
|
{
|
|
Id = Guid.NewGuid(),
|
|
OrganizationId = Guid.NewGuid(),
|
|
CreationDate = DateTime.UtcNow,
|
|
DomainName = "test2.com",
|
|
Txt = "btw+6789"
|
|
}
|
|
};
|
|
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>().GetManyByNextRunDateAsync(default)
|
|
.ReturnsForAnyArgs(domains);
|
|
|
|
await sutProvider.Sut.ValidateOrganizationsDomainAsync();
|
|
|
|
await sutProvider.GetDependency<IVerifyOrganizationDomainCommand>().ReceivedWithAnyArgs(2)
|
|
.SystemVerifyOrganizationDomainAsync(default);
|
|
}
|
|
|
|
[Theory, BitAutoData]
|
|
public async Task OrganizationDomainMaintenanceAsync_CallsDeleteExpiredAsync_WhenExpiredDomainsExist(
|
|
SutProvider<OrganizationDomainService> sutProvider)
|
|
{
|
|
var expiredDomains = new List<OrganizationDomain>
|
|
{
|
|
new()
|
|
{
|
|
Id = Guid.NewGuid(),
|
|
OrganizationId = Guid.NewGuid(),
|
|
CreationDate = DateTime.UtcNow,
|
|
DomainName = "test.com",
|
|
Txt = "btw+12345",
|
|
},
|
|
new()
|
|
{
|
|
Id = Guid.NewGuid(),
|
|
OrganizationId = Guid.NewGuid(),
|
|
CreationDate = DateTime.UtcNow,
|
|
DomainName = "test2.com",
|
|
Txt = "btw+6789"
|
|
}
|
|
};
|
|
sutProvider.GetDependency<IOrganizationDomainRepository>().GetExpiredOrganizationDomainsAsync()
|
|
.Returns(expiredDomains);
|
|
|
|
await sutProvider.Sut.OrganizationDomainMaintenanceAsync();
|
|
|
|
await sutProvider.GetDependency<IOrganizationDomainRepository>().ReceivedWithAnyArgs(1)
|
|
.DeleteExpiredAsync(7);
|
|
}
|
|
}
|