mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00
75 lines
2.5 KiB
C#
75 lines
2.5 KiB
C#
using AutoFixture;
|
|
using Bit.Api.AdminConsole.Models.Response.Helpers;
|
|
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Core.AdminConsole.Enums;
|
|
using Bit.Core.AdminConsole.OrganizationFeatures.OrganizationDomains.Interfaces;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Api.Test.AdminConsole.Models.Response.Helpers;
|
|
|
|
public class PolicyDetailResponsesTests
|
|
{
|
|
[Theory]
|
|
[InlineData(true, false)]
|
|
[InlineData(false, true)]
|
|
public async Task GetSingleOrgPolicyDetailResponseAsync_WhenIsSingleOrgTypeAndHasVerifiedDomains_ShouldReturnExpectedToggleState(
|
|
bool policyEnabled,
|
|
bool expectedCanToggle)
|
|
{
|
|
var fixture = new Fixture();
|
|
|
|
var policy = fixture.Build<Policy>()
|
|
.Without(p => p.Data)
|
|
.With(p => p.Type, PolicyType.SingleOrg)
|
|
.With(p => p.Enabled, policyEnabled)
|
|
.Create();
|
|
|
|
var querySub = Substitute.For<IOrganizationHasVerifiedDomainsQuery>();
|
|
querySub.HasVerifiedDomainsAsync(policy.OrganizationId)
|
|
.Returns(true);
|
|
|
|
var result = await policy.GetSingleOrgPolicyDetailResponseAsync(querySub);
|
|
|
|
Assert.Equal(expectedCanToggle, result.CanToggleState);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetSingleOrgPolicyDetailResponseAsync_WhenIsNotSingleOrgType_ThenShouldThrowArgumentException()
|
|
{
|
|
var fixture = new Fixture();
|
|
|
|
var policy = fixture.Build<Policy>()
|
|
.Without(p => p.Data)
|
|
.With(p => p.Type, PolicyType.TwoFactorAuthentication)
|
|
.Create();
|
|
|
|
var querySub = Substitute.For<IOrganizationHasVerifiedDomainsQuery>();
|
|
querySub.HasVerifiedDomainsAsync(policy.OrganizationId)
|
|
.Returns(true);
|
|
|
|
var action = async () => await policy.GetSingleOrgPolicyDetailResponseAsync(querySub);
|
|
|
|
await Assert.ThrowsAsync<ArgumentException>("policy", action);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetSingleOrgPolicyDetailResponseAsync_WhenIsSingleOrgTypeAndDoesNotHaveVerifiedDomains_ThenShouldBeAbleToToggle()
|
|
{
|
|
var fixture = new Fixture();
|
|
|
|
var policy = fixture.Build<Policy>()
|
|
.Without(p => p.Data)
|
|
.With(p => p.Type, PolicyType.SingleOrg)
|
|
.Create();
|
|
|
|
var querySub = Substitute.For<IOrganizationHasVerifiedDomainsQuery>();
|
|
querySub.HasVerifiedDomainsAsync(policy.OrganizationId)
|
|
.Returns(false);
|
|
|
|
var result = await policy.GetSingleOrgPolicyDetailResponseAsync(querySub);
|
|
|
|
Assert.True(result.CanToggleState);
|
|
}
|
|
}
|