mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
[PM-19575] Allow enabling Single Org policy when the organization has claimed domains. (#5565)
This commit is contained in:
parent
fd781415c4
commit
f90bcd44de
@ -13,7 +13,17 @@ public static class PolicyDetailResponses
|
|||||||
{
|
{
|
||||||
throw new ArgumentException($"'{nameof(policy)}' must be of type '{nameof(PolicyType.SingleOrg)}'.", nameof(policy));
|
throw new ArgumentException($"'{nameof(policy)}' must be of type '{nameof(PolicyType.SingleOrg)}'.", nameof(policy));
|
||||||
}
|
}
|
||||||
|
return new PolicyDetailResponseModel(policy, await CanToggleState());
|
||||||
|
|
||||||
return new PolicyDetailResponseModel(policy, !await hasVerifiedDomainsQuery.HasVerifiedDomainsAsync(policy.OrganizationId));
|
async Task<bool> CanToggleState()
|
||||||
|
{
|
||||||
|
if (!await hasVerifiedDomainsQuery.HasVerifiedDomainsAsync(policy.OrganizationId))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return !policy.Enabled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -10,14 +10,19 @@ namespace Bit.Api.Test.AdminConsole.Models.Response.Helpers;
|
|||||||
|
|
||||||
public class PolicyDetailResponsesTests
|
public class PolicyDetailResponsesTests
|
||||||
{
|
{
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task GetSingleOrgPolicyDetailResponseAsync_GivenPolicyEntity_WhenIsSingleOrgTypeAndHasVerifiedDomains_ThenShouldNotBeAbleToToggle()
|
[InlineData(true, false)]
|
||||||
|
[InlineData(false, true)]
|
||||||
|
public async Task GetSingleOrgPolicyDetailResponseAsync_WhenIsSingleOrgTypeAndHasVerifiedDomains_ShouldReturnExpectedToggleState(
|
||||||
|
bool policyEnabled,
|
||||||
|
bool expectedCanToggle)
|
||||||
{
|
{
|
||||||
var fixture = new Fixture();
|
var fixture = new Fixture();
|
||||||
|
|
||||||
var policy = fixture.Build<Policy>()
|
var policy = fixture.Build<Policy>()
|
||||||
.Without(p => p.Data)
|
.Without(p => p.Data)
|
||||||
.With(p => p.Type, PolicyType.SingleOrg)
|
.With(p => p.Type, PolicyType.SingleOrg)
|
||||||
|
.With(p => p.Enabled, policyEnabled)
|
||||||
.Create();
|
.Create();
|
||||||
|
|
||||||
var querySub = Substitute.For<IOrganizationHasVerifiedDomainsQuery>();
|
var querySub = Substitute.For<IOrganizationHasVerifiedDomainsQuery>();
|
||||||
@ -26,11 +31,11 @@ public class PolicyDetailResponsesTests
|
|||||||
|
|
||||||
var result = await policy.GetSingleOrgPolicyDetailResponseAsync(querySub);
|
var result = await policy.GetSingleOrgPolicyDetailResponseAsync(querySub);
|
||||||
|
|
||||||
Assert.False(result.CanToggleState);
|
Assert.Equal(expectedCanToggle, result.CanToggleState);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public async Task GetSingleOrgPolicyDetailResponseAsync_GivenPolicyEntity_WhenIsNotSingleOrgType_ThenShouldThrowArgumentException()
|
public async Task GetSingleOrgPolicyDetailResponseAsync_WhenIsNotSingleOrgType_ThenShouldThrowArgumentException()
|
||||||
{
|
{
|
||||||
var fixture = new Fixture();
|
var fixture = new Fixture();
|
||||||
|
|
||||||
@ -49,7 +54,7 @@ public class PolicyDetailResponsesTests
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public async Task GetSingleOrgPolicyDetailResponseAsync_GivenPolicyEntity_WhenIsSingleOrgTypeAndDoesNotHaveVerifiedDomains_ThenShouldBeAbleToToggle()
|
public async Task GetSingleOrgPolicyDetailResponseAsync_WhenIsSingleOrgTypeAndDoesNotHaveVerifiedDomains_ThenShouldBeAbleToToggle()
|
||||||
{
|
{
|
||||||
var fixture = new Fixture();
|
var fixture = new Fixture();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user