mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* Remove gRPC and convert PricingClient to HttpClient wrapper * Add PlanType.GetProductTier extension Many instances of StaticStore use are just to get the ProductTierType of a PlanType, but this can be derived from the PlanType itself without having to fetch the entire plan. * Remove invocations of the StaticStore in non-Test code * Deprecate StaticStore entry points * Run dotnet format * Matt's feedback * Run dotnet format * Rui's feedback * Run dotnet format * Replacements since approval * Run dotnet format
72 lines
2.2 KiB
C#
72 lines
2.2 KiB
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Core.Billing.Enums;
|
|
using Bit.Core.Exceptions;
|
|
using Bit.Core.Models.Business;
|
|
using Bit.Core.Models.StaticStore;
|
|
using Bit.Core.Test.AutoFixture.OrganizationFixtures;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Models.Business;
|
|
|
|
[SecretsManagerOrganizationCustomize]
|
|
public class SecretsManagerSubscriptionUpdateTests
|
|
{
|
|
private static TheoryData<Plan> ToPlanTheory(List<PlanType> types)
|
|
{
|
|
var theoryData = new TheoryData<Plan>();
|
|
var plans = types.Select(StaticStore.GetPlan).ToArray();
|
|
theoryData.AddRange(plans);
|
|
return theoryData;
|
|
}
|
|
|
|
public static TheoryData<Plan> NonSmPlans =>
|
|
ToPlanTheory([PlanType.Custom, PlanType.FamiliesAnnually, PlanType.FamiliesAnnually2019]);
|
|
|
|
public static TheoryData<Plan> SmPlans => ToPlanTheory([
|
|
PlanType.EnterpriseAnnually2019,
|
|
PlanType.EnterpriseAnnually,
|
|
PlanType.TeamsMonthly2019,
|
|
PlanType.TeamsAnnually2020,
|
|
PlanType.TeamsMonthly,
|
|
PlanType.TeamsAnnually2019,
|
|
PlanType.TeamsAnnually2020,
|
|
PlanType.TeamsAnnually,
|
|
PlanType.TeamsStarter
|
|
]);
|
|
|
|
[Theory]
|
|
[BitMemberAutoData(nameof(NonSmPlans))]
|
|
public Task UpdateSubscriptionAsync_WithNonSecretsManagerPlanType_ThrowsBadRequestException(
|
|
Plan plan,
|
|
Organization organization)
|
|
{
|
|
// Arrange
|
|
organization.PlanType = plan.Type;
|
|
|
|
// Act
|
|
var exception = Assert.Throws<NotFoundException>(() => new SecretsManagerSubscriptionUpdate(organization, plan, false));
|
|
|
|
// Assert
|
|
Assert.Contains("Invalid Secrets Manager plan", exception.Message, StringComparison.InvariantCultureIgnoreCase);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
[Theory]
|
|
[BitMemberAutoData(nameof(SmPlans))]
|
|
public void UpdateSubscription_WithNonSecretsManagerPlanType_DoesNotThrowException(
|
|
Plan plan,
|
|
Organization organization)
|
|
{
|
|
// Arrange
|
|
organization.PlanType = plan.Type;
|
|
|
|
// Act
|
|
var ex = Record.Exception(() => new SecretsManagerSubscriptionUpdate(organization, plan, false));
|
|
|
|
// Assert
|
|
Assert.Null(ex);
|
|
}
|
|
}
|