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

* Pm 19147 2 (#5544) * Pm 19147 2 (#5544) * Unit tests for tax strategies `GetUpdateOptions` * Only allow automatic tax flag to be updated for complete subscription updates such as plan changes, not when upgrading additional storage, seats, etc * unit tests for factory * Fix build * Automatic tax for tax estimation * Fix stub * Fix stub * "customer.tax_ids" isn't expanded in some flows. * Fix SubscriberServiceTests.cs * BusinessUseAutomaticTaxStrategy > SetUpdateOptions tests * Fix ProviderBillingServiceTests.cs
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using Bit.Core.Billing.Services;
|
|
using Stripe;
|
|
|
|
namespace Bit.Core.Test.Billing.Stubs;
|
|
|
|
/// <param name="isAutomaticTaxEnabled">
|
|
/// Whether the subscription options will have automatic tax enabled or not.
|
|
/// </param>
|
|
public class FakeAutomaticTaxStrategy(
|
|
bool isAutomaticTaxEnabled) : IAutomaticTaxStrategy
|
|
{
|
|
public SubscriptionUpdateOptions? GetUpdateOptions(Subscription subscription)
|
|
{
|
|
return new SubscriptionUpdateOptions
|
|
{
|
|
AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled }
|
|
};
|
|
}
|
|
|
|
public void SetCreateOptions(SubscriptionCreateOptions options, Customer customer)
|
|
{
|
|
options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled };
|
|
}
|
|
|
|
public void SetUpdateOptions(SubscriptionUpdateOptions options, Subscription subscription)
|
|
{
|
|
options.AutomaticTax = new SubscriptionAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled };
|
|
}
|
|
|
|
public void SetInvoiceCreatePreviewOptions(InvoiceCreatePreviewOptions options)
|
|
{
|
|
options.AutomaticTax = new InvoiceAutomaticTaxOptions { Enabled = isAutomaticTaxEnabled };
|
|
|
|
}
|
|
}
|