mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Tests
This commit is contained in:
parent
829e87ae65
commit
700c75e73a
@ -3,10 +3,13 @@ using Bit.Core.AdminConsole.Entities.Provider;
|
|||||||
using Bit.Core.Billing.Caches;
|
using Bit.Core.Billing.Caches;
|
||||||
using Bit.Core.Billing.Constants;
|
using Bit.Core.Billing.Constants;
|
||||||
using Bit.Core.Billing.Models;
|
using Bit.Core.Billing.Models;
|
||||||
|
using Bit.Core.Billing.Services;
|
||||||
|
using Bit.Core.Billing.Services.Contracts;
|
||||||
using Bit.Core.Billing.Services.Implementations;
|
using Bit.Core.Billing.Services.Implementations;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
using Bit.Core.Services;
|
using Bit.Core.Services;
|
||||||
using Bit.Core.Settings;
|
using Bit.Core.Settings;
|
||||||
|
using Bit.Core.Test.Billing.Stubs;
|
||||||
using Bit.Test.Common.AutoFixture;
|
using Bit.Test.Common.AutoFixture;
|
||||||
using Bit.Test.Common.AutoFixture.Attributes;
|
using Bit.Test.Common.AutoFixture.Attributes;
|
||||||
using Braintree;
|
using Braintree;
|
||||||
@ -1586,6 +1589,12 @@ public class SubscriberServiceTests
|
|||||||
TaxIds = new StripeList<TaxId> { Data = [new TaxId { Id = "tax_id_1", Type = "us_ein" }] }
|
TaxIds = new StripeList<TaxId> { Data = [new TaxId { Id = "tax_id_1", Type = "us_ein" }] }
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var subscription = new Subscription { Items = new StripeList<SubscriptionItem>() };
|
||||||
|
sutProvider.GetDependency<IStripeAdapter>().SubscriptionGetAsync(Arg.Any<string>())
|
||||||
|
.Returns(subscription);
|
||||||
|
sutProvider.GetDependency<IAutomaticTaxFactory>().CreateAsync(Arg.Any<AutomaticTaxFactoryParameters>())
|
||||||
|
.Returns(new FakeAutomaticTaxStrategy(true));
|
||||||
|
|
||||||
await sutProvider.Sut.UpdateTaxInformation(provider, taxInformation);
|
await sutProvider.Sut.UpdateTaxInformation(provider, taxInformation);
|
||||||
|
|
||||||
await stripeAdapter.Received(1).CustomerUpdateAsync(provider.GatewayCustomerId, Arg.Is<CustomerUpdateOptions>(
|
await stripeAdapter.Received(1).CustomerUpdateAsync(provider.GatewayCustomerId, Arg.Is<CustomerUpdateOptions>(
|
||||||
|
29
test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs
Normal file
29
test/Core.Test/Billing/Stubs/FakeAutomaticTaxStrategy.cs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
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 };
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user