From 2e674f9fbc6c1d2c9163746d3de7f7f7f13ed9ad Mon Sep 17 00:00:00 2001 From: woodser Date: Tue, 4 Feb 2025 20:33:05 -0500 Subject: [PATCH] test paysafe --- src/HavenoClient.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/HavenoClient.test.ts b/src/HavenoClient.test.ts index a924d287..d0ffdbd1 100644 --- a/src/HavenoClient.test.ts +++ b/src/HavenoClient.test.ts @@ -4325,7 +4325,7 @@ function getValidFormInput(form: PaymentAccountForm, fieldId: PaymentAccountForm case PaymentAccountFormField.FieldId.INTERMEDIARY_SWIFT_CODE: return "10987654321"; // TODO: use real swift code case PaymentAccountFormField.FieldId.MOBILE_NR: - throw new Error("Not implemented"); + return "876-512-7813"; case PaymentAccountFormField.FieldId.NATIONAL_ACCOUNT_ID: throw new Error("Not implemented"); case PaymentAccountFormField.FieldId.PAYID: @@ -4464,7 +4464,7 @@ function getInvalidFormInput(form: PaymentAccountForm, fieldId: PaymentAccountFo case PaymentAccountFormField.FieldId.INTERMEDIARY_SWIFT_CODE: return "A"; case PaymentAccountFormField.FieldId.MOBILE_NR: - throw new Error("Not implemented"); + return "A"; case PaymentAccountFormField.FieldId.NATIONAL_ACCOUNT_ID: throw new Error("Not implemented"); case PaymentAccountFormField.FieldId.PAYID: @@ -4613,6 +4613,10 @@ function testPaymentAccount(account: PaymentAccount, form: PaymentAccountForm) { expect(account.getTradeCurrenciesList().length).toEqual(1); expect(account.getTradeCurrenciesList()[0].getCode()).toEqual("USD"); break; + case PaymentAccountForm.FormId.PAYSAFE: + expect(account.getPaymentAccountPayload()!.getPaysafeAccountPayload()!.getEmail()).toEqual(getFormField(form, PaymentAccountFormField.FieldId.EMAIL).getValue()); + expect(account.getTradeCurrenciesList().map(currency => currency.getCode()).join(",")).toEqual(getFormField(form, PaymentAccountFormField.FieldId.TRADE_CURRENCIES).getValue()); + break; default: throw new Error("Unhandled payment method type: " + form.getId()); }