mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
83604cceb1
* Update ProviderInvoiceItem SQL configuration * Implement provider client invoice export * Add tests * Run dotnet format * Fixed SPROC backwards compatibility issue
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using Stripe;
|
|
|
|
namespace Bit.Billing.Test.Utilities;
|
|
|
|
public enum StripeEventType
|
|
{
|
|
ChargeSucceeded,
|
|
CustomerSubscriptionUpdated,
|
|
CustomerUpdated,
|
|
InvoiceCreated,
|
|
InvoiceFinalized,
|
|
InvoiceUpcoming,
|
|
PaymentMethodAttached
|
|
}
|
|
|
|
public static class StripeTestEvents
|
|
{
|
|
public static async Task<Event> GetAsync(StripeEventType eventType)
|
|
{
|
|
var fileName = eventType switch
|
|
{
|
|
StripeEventType.ChargeSucceeded => "charge.succeeded.json",
|
|
StripeEventType.CustomerSubscriptionUpdated => "customer.subscription.updated.json",
|
|
StripeEventType.CustomerUpdated => "customer.updated.json",
|
|
StripeEventType.InvoiceCreated => "invoice.created.json",
|
|
StripeEventType.InvoiceFinalized => "invoice.finalized.json",
|
|
StripeEventType.InvoiceUpcoming => "invoice.upcoming.json",
|
|
StripeEventType.PaymentMethodAttached => "payment_method.attached.json"
|
|
};
|
|
|
|
var resource = await EmbeddedResourceReader.ReadAsync("Events", fileName);
|
|
|
|
return EventUtility.ParseEvent(resource);
|
|
}
|
|
}
|