mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
721d2969d4
* Renamed ProductType to ProductTierType * Renamed Product properties to ProductTier * Moved ProductTierType to Bit.Core.Billing.Enums namespace from Bit.Core.Enums * Moved PlanType enum to Bit.Core.Billing.Enums * Moved StaticStore to Bit.Core.Billing.Models.StaticStore namespace * Added ProductType enum * dotnet format
107 lines
3.7 KiB
C#
107 lines
3.7 KiB
C#
using Bit.Core.Billing.Enums;
|
|
using Bit.Core.Models.Business;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Stripe;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Models.Business;
|
|
|
|
public class StorageSubscriptionUpdateTests
|
|
{
|
|
[Theory]
|
|
[BitAutoData(PlanType.EnterpriseMonthly2019)]
|
|
[BitAutoData(PlanType.EnterpriseMonthly2020)]
|
|
[BitAutoData(PlanType.EnterpriseMonthly)]
|
|
[BitAutoData(PlanType.EnterpriseAnnually2019)]
|
|
[BitAutoData(PlanType.EnterpriseAnnually2020)]
|
|
[BitAutoData(PlanType.EnterpriseAnnually)]
|
|
[BitAutoData(PlanType.TeamsMonthly2019)]
|
|
[BitAutoData(PlanType.TeamsMonthly2020)]
|
|
[BitAutoData(PlanType.TeamsMonthly)]
|
|
[BitAutoData(PlanType.TeamsAnnually2019)]
|
|
[BitAutoData(PlanType.TeamsAnnually2020)]
|
|
[BitAutoData(PlanType.TeamsAnnually)]
|
|
[BitAutoData(PlanType.TeamsStarter)]
|
|
|
|
public void UpgradeItemsOptions_ReturnsCorrectOptions(PlanType planType)
|
|
{
|
|
var plan = StaticStore.GetPlan(planType);
|
|
var subscription = new Subscription
|
|
{
|
|
Items = new StripeList<SubscriptionItem>
|
|
{
|
|
Data = new List<SubscriptionItem>
|
|
{
|
|
new ()
|
|
{
|
|
Id = "subscription_item",
|
|
Price = new Price { Id = plan.PasswordManager.StripeStoragePlanId },
|
|
Quantity = 1
|
|
}
|
|
}
|
|
}
|
|
};
|
|
var update = new StorageSubscriptionUpdate("plan_id", 100);
|
|
|
|
var options = update.UpgradeItemsOptions(subscription);
|
|
|
|
Assert.Single(options);
|
|
Assert.Equal("plan_id", options[0].Plan);
|
|
Assert.Equal(100, options[0].Quantity);
|
|
Assert.Null(options[0].Deleted);
|
|
}
|
|
|
|
[Fact]
|
|
public void RevertItemsOptions_ThrowsExceptionIfPrevStorageIsNull()
|
|
{
|
|
var subscription = new Subscription();
|
|
var update = new StorageSubscriptionUpdate("plan_id", 100);
|
|
|
|
Assert.Throws<Exception>(() => update.RevertItemsOptions(subscription));
|
|
}
|
|
|
|
[Theory]
|
|
[BitAutoData(PlanType.EnterpriseMonthly2019)]
|
|
[BitAutoData(PlanType.EnterpriseMonthly2020)]
|
|
[BitAutoData(PlanType.EnterpriseMonthly)]
|
|
[BitAutoData(PlanType.EnterpriseAnnually2019)]
|
|
[BitAutoData(PlanType.EnterpriseAnnually2020)]
|
|
[BitAutoData(PlanType.EnterpriseAnnually)]
|
|
[BitAutoData(PlanType.TeamsMonthly2019)]
|
|
[BitAutoData(PlanType.TeamsMonthly2020)]
|
|
[BitAutoData(PlanType.TeamsMonthly)]
|
|
[BitAutoData(PlanType.TeamsAnnually2019)]
|
|
[BitAutoData(PlanType.TeamsAnnually2020)]
|
|
[BitAutoData(PlanType.TeamsAnnually)]
|
|
[BitAutoData(PlanType.TeamsStarter)]
|
|
public void RevertItemsOptions_ReturnsCorrectOptions(PlanType planType)
|
|
{
|
|
var plan = StaticStore.GetPlan(planType);
|
|
var subscription = new Subscription
|
|
{
|
|
Items = new StripeList<SubscriptionItem>
|
|
{
|
|
Data = new List<SubscriptionItem>
|
|
{
|
|
new ()
|
|
{
|
|
Id = "subscription_item",
|
|
Price = new Price { Id = plan.PasswordManager.StripeStoragePlanId },
|
|
Quantity = 100
|
|
}
|
|
}
|
|
}
|
|
};
|
|
var update = new StorageSubscriptionUpdate(plan.PasswordManager.StripeStoragePlanId, 100);
|
|
update.UpgradeItemsOptions(subscription);
|
|
|
|
var options = update.RevertItemsOptions(subscription);
|
|
|
|
Assert.Single(options);
|
|
Assert.Equal(plan.PasswordManager.StripeStoragePlanId, options[0].Plan);
|
|
Assert.Equal(100, options[0].Quantity);
|
|
Assert.Null(options[0].Deleted);
|
|
}
|
|
}
|