| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648 |
- import { OrderStatus } from '@mollie/api-client';
- import {
- ChannelService,
- EventBus,
- LanguageCode,
- Logger,
- mergeConfig,
- OrderPlacedEvent,
- OrderService,
- RequestContext,
- } from '@vendure/core';
- import {
- SettlePaymentMutation,
- SettlePaymentMutationVariables,
- } from '@vendure/core/e2e/graphql/generated-e2e-admin-types';
- import { SETTLE_PAYMENT } from '@vendure/core/e2e/graphql/shared-definitions';
- import {
- createTestEnvironment,
- E2E_DEFAULT_CHANNEL_TOKEN,
- SimpleGraphQLClient,
- TestServer,
- } from '@vendure/testing';
- import nock from 'nock';
- import fetch from 'node-fetch';
- import path from 'path';
- import { afterAll, afterEach, beforeAll, describe, expect, it, vi } from 'vitest';
- import { initialData } from '../../../e2e-common/e2e-initial-data';
- import { TEST_SETUP_TIMEOUT_MS, testConfig } from '../../../e2e-common/test-config';
- import { UPDATE_PRODUCT_VARIANTS } from '../../core/e2e/graphql/shared-definitions';
- import { MolliePlugin } from '../src/mollie';
- import { molliePaymentHandler } from '../src/mollie/mollie.handler';
- import { mollieMockData } from './fixtures/mollie-mock-data';
- import { CREATE_PAYMENT_METHOD, GET_CUSTOMER_LIST, GET_ORDER_PAYMENTS } from './graphql/admin-queries';
- import {
- CreatePaymentMethodMutation,
- CreatePaymentMethodMutationVariables,
- GetCustomerListQuery,
- GetCustomerListQueryVariables,
- } from './graphql/generated-admin-types';
- import {
- AddItemToOrderMutation,
- AddItemToOrderMutationVariables,
- AdjustOrderLineMutation,
- AdjustOrderLineMutationVariables,
- GetOrderByCodeQuery,
- GetOrderByCodeQueryVariables,
- TestOrderFragmentFragment,
- } from './graphql/generated-shop-types';
- import {
- ADD_ITEM_TO_ORDER,
- ADJUST_ORDER_LINE,
- APPLY_COUPON_CODE,
- GET_ORDER_BY_CODE,
- } from './graphql/shop-queries';
- import {
- addManualPayment,
- CREATE_MOLLIE_PAYMENT_INTENT,
- createFixedDiscountCoupon,
- createFreeShippingCoupon,
- GET_MOLLIE_PAYMENT_METHODS,
- refundOrderLine,
- setShipping,
- testPaymentEligibilityChecker,
- } from './payment-helpers';
- let shopClient: SimpleGraphQLClient;
- let adminClient: SimpleGraphQLClient;
- let server: TestServer;
- let started = false;
- let customers: GetCustomerListQuery['customers']['items'];
- let order: TestOrderFragmentFragment;
- let serverPort: number;
- const SURCHARGE_AMOUNT = -20000;
- describe('Mollie payments', () => {
- beforeAll(async () => {
- const devConfig = mergeConfig(testConfig(), {
- plugins: [MolliePlugin.init({ vendureHost: mollieMockData.host })],
- paymentOptions: {
- paymentMethodEligibilityCheckers: [testPaymentEligibilityChecker],
- },
- });
- const env = createTestEnvironment(devConfig);
- serverPort = devConfig.apiOptions.port;
- shopClient = env.shopClient;
- adminClient = env.adminClient;
- server = env.server;
- await server.init({
- initialData,
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-minimal.csv'),
- customerCount: 2,
- });
- started = true;
- await adminClient.asSuperAdmin();
- ({
- customers: { items: customers },
- } = await adminClient.query<GetCustomerListQuery, GetCustomerListQueryVariables>(GET_CUSTOMER_LIST, {
- options: {
- take: 2,
- },
- }));
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- afterEach(() => {
- nock.cleanAll();
- });
- it('Should start successfully', () => {
- expect(started).toEqual(true);
- expect(customers).toHaveLength(2);
- });
- it('Should create a Mollie paymentMethod', async () => {
- const { createPaymentMethod } = await adminClient.query<
- CreatePaymentMethodMutation,
- CreatePaymentMethodMutationVariables
- >(CREATE_PAYMENT_METHOD, {
- input: {
- code: mollieMockData.methodCode,
- enabled: true,
- checker: {
- code: testPaymentEligibilityChecker.code,
- arguments: [],
- },
- handler: {
- code: molliePaymentHandler.code,
- arguments: [
- { name: 'redirectUrl', value: mollieMockData.redirectUrl },
- { name: 'apiKey', value: mollieMockData.apiKey },
- { name: 'autoCapture', value: 'false' },
- ],
- },
- translations: [
- {
- languageCode: LanguageCode.en,
- name: 'Mollie payment test',
- description: 'This is a Mollie test payment method',
- },
- ],
- },
- });
- expect(createPaymentMethod.code).toBe(mollieMockData.methodCode);
- });
- describe('Payment intent creation', () => {
- it('Should prepare an order', async () => {
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- const { addItemToOrder } = await shopClient.query<
- AddItemToOrderMutation,
- AddItemToOrderMutationVariables
- >(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_5',
- quantity: 10,
- });
- order = addItemToOrder as TestOrderFragmentFragment;
- // Add surcharge
- const ctx = new RequestContext({
- apiType: 'admin',
- isAuthorized: true,
- authorizedAsOwnerOnly: false,
- channel: await server.app.get(ChannelService).getDefaultChannel(),
- });
- await server.app.get(OrderService).addSurchargeToOrder(ctx, order.id.replace('T_', ''), {
- description: 'Negative test surcharge',
- listPrice: SURCHARGE_AMOUNT,
- });
- expect(order.code).toBeDefined();
- });
- it('Should fail to create payment intent without shippingmethod', async () => {
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- const { createMolliePaymentIntent: result } = await shopClient.query(
- CREATE_MOLLIE_PAYMENT_INTENT,
- {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- },
- },
- );
- expect(result.errorCode).toBe('ORDER_PAYMENT_STATE_ERROR');
- });
- it('Should fail to get payment url when items are out of stock', async () => {
- let { updateProductVariants } = await adminClient.query(UPDATE_PRODUCT_VARIANTS, {
- input: {
- id: 'T_5',
- trackInventory: 'TRUE',
- outOfStockThreshold: 0,
- stockOnHand: 1,
- },
- });
- expect(updateProductVariants[0].stockOnHand).toBe(1);
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- await setShipping(shopClient);
- const { createMolliePaymentIntent: result } = await shopClient.query(
- CREATE_MOLLIE_PAYMENT_INTENT,
- {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- },
- },
- );
- expect(result.message).toContain('insufficient stock of Pinelab stickers');
- // Set stock back to not tracking
- ({ updateProductVariants } = await adminClient.query(UPDATE_PRODUCT_VARIANTS, {
- input: {
- id: 'T_5',
- trackInventory: 'FALSE',
- },
- }));
- expect(updateProductVariants[0].trackInventory).toBe('FALSE');
- });
- it('Should get payment url without Mollie method', async () => {
- let mollieRequest: any | undefined;
- nock('https://api.mollie.com/')
- .post('/v2/payments', body => {
- mollieRequest = body;
- return true;
- })
- .reply(200, mollieMockData.molliePaymentResponse);
- const { createMolliePaymentIntent } = await shopClient.query(CREATE_MOLLIE_PAYMENT_INTENT, {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- redirectUrl: 'given-storefront-redirect-url',
- locale: 'nl_NL',
- },
- });
- expect(createMolliePaymentIntent).toEqual({
- url: 'https://www.mollie.com/checkout/select-method/mock-payment',
- });
- expect(mollieRequest?.description).toEqual(order.code);
- expect(mollieRequest?.redirectUrl).toEqual('given-storefront-redirect-url');
- expect(mollieRequest?.locale).toEqual('nl_NL');
- expect(mollieRequest?.captureMode).toEqual('automatic'); // Default should be automatic
- expect(mollieRequest?.webhookUrl).toEqual(
- `${mollieMockData.host}/payments/mollie/${E2E_DEFAULT_CHANNEL_TOKEN}/1`,
- );
- expect(mollieRequest?.amount?.value).toBe('1009.88');
- expect(mollieRequest?.amount?.currency).toBe('USD');
- expect(mollieRequest.lines[0].vatAmount.value).toEqual('199.98');
- const totalLineAmount =
- mollieRequest?.lines?.reduce(
- (sum: number, line: any) => sum + Number(line.totalAmount.value),
- 0,
- ) ?? 0;
- // Sum of lines should equal order total
- expect(mollieRequest.amount.value).toEqual(totalLineAmount.toFixed(2));
- });
- it('Should use fallback redirect appended with order code, when no redirect is given', async () => {
- let mollieRequest: any | undefined;
- nock('https://api.mollie.com/')
- .post('/v2/payments', body => {
- mollieRequest = body;
- return true;
- })
- .reply(200, mollieMockData.molliePaymentResponse);
- await shopClient.query(CREATE_MOLLIE_PAYMENT_INTENT, {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- },
- });
- expect(mollieRequest?.redirectUrl).toEqual(`${mollieMockData.redirectUrl}/${order.code}`);
- });
- it('Should get payment url with Mollie method', async () => {
- nock('https://api.mollie.com/')
- .post('/v2/payments')
- .reply(200, mollieMockData.molliePaymentResponse);
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- await setShipping(shopClient);
- const { createMolliePaymentIntent } = await shopClient.query(CREATE_MOLLIE_PAYMENT_INTENT, {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- molliePaymentMethodCode: 'ideal',
- },
- });
- expect(createMolliePaymentIntent).toEqual({
- url: 'https://www.mollie.com/checkout/select-method/mock-payment',
- });
- });
- it('Should not allow creating intent if payment method is not eligible', async () => {
- // Set quantity to 9, which is not allowe by our test eligibility checker
- await shopClient.query<AdjustOrderLineMutation, AdjustOrderLineMutationVariables>(
- ADJUST_ORDER_LINE,
- {
- orderLineId: order.lines[0].id,
- quantity: 9,
- },
- );
- let mollieRequest: any | undefined;
- nock('https://api.mollie.com/')
- .post('/v2/payments', body => {
- mollieRequest = body;
- return true;
- })
- .reply(200, mollieMockData.molliePaymentResponse);
- const { createMolliePaymentIntent } = await shopClient.query(CREATE_MOLLIE_PAYMENT_INTENT, {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- redirectUrl: 'given-storefront-redirect-url',
- },
- });
- expect(createMolliePaymentIntent.errorCode).toBe('INELIGIBLE_PAYMENT_METHOD_ERROR');
- expect(createMolliePaymentIntent.message).toContain('is not eligible for order');
- });
- it('Should get payment url with deducted amount if a payment is already made', async () => {
- // Change quantity back to 10
- await shopClient.query<AdjustOrderLineMutation, AdjustOrderLineMutationVariables>(
- ADJUST_ORDER_LINE,
- {
- orderLineId: order.lines[0].id,
- quantity: 10,
- },
- );
- let mollieRequest: any | undefined;
- nock('https://api.mollie.com/')
- .post('/v2/payments', body => {
- mollieRequest = body;
- return true;
- })
- .reply(200, mollieMockData.molliePaymentResponse);
- await addManualPayment(server, 1, 10000);
- await shopClient.query(CREATE_MOLLIE_PAYMENT_INTENT, {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- },
- });
- expect(mollieRequest?.amount?.value).toBe('909.88'); // minus 100,00 from manual payment
- const totalLineAmount =
- mollieRequest?.lines?.reduce(
- (sum: number, line: any) => sum + Number(line.totalAmount.value),
- 0,
- ) ?? 0;
- // This is the line that deducts the amount from payment that was already made
- const priceDeductionLine = mollieRequest.lines?.find((line: any) => line.totalAmount.value < 0);
- expect(priceDeductionLine?.type).toBe('store_credit');
- // Sum of lines should equal order total
- expect(mollieRequest.amount.value).toEqual(totalLineAmount.toFixed(2));
- });
- it('Should create intent as admin', async () => {
- nock('https://api.mollie.com/')
- .post('/v2/payments')
- .reply(200, mollieMockData.molliePaymentResponse);
- // Admin API passes order ID, and no payment method code
- const { createMolliePaymentIntent: intent } = await adminClient.query(
- CREATE_MOLLIE_PAYMENT_INTENT,
- {
- input: {
- orderId: '1',
- },
- },
- );
- expect(intent.url).toBe(mollieMockData.molliePaymentResponse._links.checkout.href);
- });
- it('Should get available paymentMethods', async () => {
- nock('https://api.mollie.com/')
- .get('/v2/methods?resource=orders')
- .reply(200, mollieMockData.molliePaymentMethodsResponse);
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- const { molliePaymentMethods } = await shopClient.query(GET_MOLLIE_PAYMENT_METHODS, {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- },
- });
- const method = molliePaymentMethods[0];
- expect(method.code).toEqual('ideal');
- expect(method.minimumAmount).toBeDefined();
- expect(method.maximumAmount).toBeDefined();
- expect(method.image).toBeDefined();
- });
- it('Transitions to PaymentSettled for orders with a total of $0', async () => {
- await shopClient.asUserWithCredentials(customers[1].emailAddress, 'test');
- const { addItemToOrder } = await shopClient.query(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_1',
- quantity: 1,
- });
- await setShipping(shopClient);
- // Discount the order so it has a total of $0
- await createFixedDiscountCoupon(adminClient, 156880, 'DISCOUNT_ORDER');
- await createFreeShippingCoupon(adminClient, 'FREE_SHIPPING');
- await shopClient.query(APPLY_COUPON_CODE, { couponCode: 'DISCOUNT_ORDER' });
- await shopClient.query(APPLY_COUPON_CODE, { couponCode: 'FREE_SHIPPING' });
- // Create payment intent
- const { createMolliePaymentIntent: intent } = await shopClient.query(
- CREATE_MOLLIE_PAYMENT_INTENT,
- {
- input: {
- paymentMethodCode: mollieMockData.methodCode,
- redirectUrl: 'https://my-storefront.io/order-confirmation',
- },
- },
- );
- const { orderByCode } = await shopClient.query(GET_ORDER_BY_CODE, { code: addItemToOrder.code });
- expect(intent.url).toBe('https://my-storefront.io/order-confirmation');
- expect(orderByCode.totalWithTax).toBe(0);
- expect(orderByCode.state).toBe('PaymentSettled');
- });
- });
- describe('Handle standard payment methods', () => {
- it('Should transition to ArrangingPayment when partially paid', async () => {
- nock('https://api.mollie.com/')
- .get(`/v2/payments/${mollieMockData.molliePaymentResponse.id}`)
- .reply(200, {
- ...mollieMockData.molliePaymentResponse,
- // Mollie says: Only 20.00 was paid
- amount: { value: '20.00', currency: 'EUR' },
- description: order.code,
- status: OrderStatus.paid,
- });
- await fetch(`http://localhost:${serverPort}/payments/mollie/${E2E_DEFAULT_CHANNEL_TOKEN}/1`, {
- method: 'post',
- body: JSON.stringify({ id: mollieMockData.molliePaymentResponse.id }),
- headers: { 'Content-Type': 'application/json' },
- });
- const { order: adminOrder } = await adminClient.query(GET_ORDER_PAYMENTS, { id: order?.id });
- expect(adminOrder.state).toBe('ArrangingPayment');
- });
- let orderPlacedEvent: OrderPlacedEvent | undefined;
- it('Should place order after paying outstanding amount', async () => {
- server.app
- .get(EventBus)
- .ofType(OrderPlacedEvent)
- .subscribe(event => {
- orderPlacedEvent = event;
- });
- nock('https://api.mollie.com/')
- .get(`/v2/payments/${mollieMockData.molliePaymentResponse.id}`)
- .reply(200, {
- ...mollieMockData.molliePaymentResponse,
- // Add a payment of remaining 1089.90
- amount: { value: '1089.90', currency: 'EUR' }, // 1109.90 minus the previously paid 20.00 = 1089.90
- description: order.code,
- status: OrderStatus.paid,
- });
- await fetch(`http://localhost:${serverPort}/payments/mollie/${E2E_DEFAULT_CHANNEL_TOKEN}/1`, {
- method: 'post',
- body: JSON.stringify({ id: mollieMockData.molliePaymentResponse.id }),
- headers: { 'Content-Type': 'application/json' },
- });
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- const { orderByCode } = await shopClient.query<GetOrderByCodeQuery, GetOrderByCodeQueryVariables>(
- GET_ORDER_BY_CODE,
- {
- code: order.code,
- },
- );
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- order = orderByCode!;
- expect(order.state).toBe('PaymentSettled');
- });
- it('Should log error when order is paid again with a another payment', async () => {
- const errorLogSpy = vi.spyOn(Logger, 'error');
- nock('https://api.mollie.com/')
- .get(`/v2/payments/tr_newMockId`)
- .reply(200, {
- ...mollieMockData.molliePaymentResponse,
- id: 'tr_newMockId',
- amount: { value: '100', currency: 'EUR' }, // Try to pay another 100
- description: order.code,
- status: OrderStatus.paid,
- });
- await fetch(`http://localhost:${serverPort}/payments/mollie/${E2E_DEFAULT_CHANNEL_TOKEN}/1`, {
- method: 'post',
- body: JSON.stringify({ id: 'tr_newMockId' }),
- headers: { 'Content-Type': 'application/json' },
- });
- const logMessage = errorLogSpy.mock.calls?.[0]?.[0];
- expect(logMessage).toBe(
- `Order '${order.code}' is already paid. Mollie payment 'tr_newMockId' should be refunded.`,
- );
- });
- it('Should have preserved original languageCode ', () => {
- // We've set the languageCode to 'nl' in the mock response's metadata
- expect(orderPlacedEvent?.ctx.languageCode).toBe('nl');
- });
- it('Resulting events should have a ctx.req ', () => {
- // We've set the languageCode to 'nl' in the mock response's metadata
- expect(orderPlacedEvent?.ctx?.req).toBeDefined();
- });
- it('Should have Mollie metadata on payment', async () => {
- const {
- order: { payments },
- } = await adminClient.query(GET_ORDER_PAYMENTS, { id: order.id });
- const metadata = payments[1].metadata;
- expect(metadata.mode).toBe(mollieMockData.molliePaymentResponse.mode);
- expect(metadata.profileId).toBe(mollieMockData.molliePaymentResponse.profileId);
- expect(metadata.authorizedAt).toEqual(mollieMockData.molliePaymentResponse.authorizedAt);
- expect(metadata.paidAt).toEqual(mollieMockData.molliePaymentResponse.paidAt);
- });
- it('Should fail to refund', async () => {
- nock('https://api.mollie.com/')
- .get(`/v2/payments/${mollieMockData.molliePaymentResponse.id}`)
- .reply(200, mollieMockData.molliePaymentResponse);
- nock('https://api.mollie.com/')
- .post('/v2/payments/tr_mockPayment/refunds')
- .reply(200, { status: 'failed', resource: 'payment' });
- const refund = await refundOrderLine(
- adminClient,
- order.lines[0].id,
- 1,
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- order!.payments![1].id,
- SURCHARGE_AMOUNT,
- );
- expect(refund.state).toBe('Failed');
- });
- it('Should successfully refund the Mollie payment', async () => {
- let mollieRequest: any;
- nock('https://api.mollie.com/')
- .get(`/v2/payments/${mollieMockData.molliePaymentResponse.id}`)
- .reply(200, mollieMockData.molliePaymentResponse);
- nock('https://api.mollie.com/')
- .post('/v2/payments/tr_mockPayment/refunds', body => {
- mollieRequest = body;
- return true;
- })
- .reply(200, { status: 'pending', resource: 'payment' });
- const refund = await refundOrderLine(
- adminClient,
- order.lines[0].id,
- 10,
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- order.payments!.find(p => p.amount === 108990)!.id,
- SURCHARGE_AMOUNT,
- );
- expect(mollieRequest?.amount.value).toBe('999.90'); // Only refund mollie amount, not the gift card
- expect(refund.total).toBe(99990);
- expect(refund.state).toBe('Settled');
- });
- });
- describe('Handle pay-later with manual capture', () => {
- it('Should prepare a new order', async () => {
- await shopClient.asUserWithCredentials(customers[0].emailAddress, 'test');
- const { addItemToOrder } = await shopClient.query<
- AddItemToOrderMutation,
- AddItemToOrderMutationVariables
- >(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_1',
- quantity: 2,
- });
- order = addItemToOrder as TestOrderFragmentFragment;
- await setShipping(shopClient);
- expect(order.code).toBeDefined();
- });
- it('Should create payment intent with immediateCapture = false', async () => {
- let mollieRequest: any;
- nock('https://api.mollie.com/')
- .post('/v2/payments', body => {
- mollieRequest = body;
- return true;
- })
- .reply(200, mollieMockData.molliePaymentResponse);
- await shopClient.query(CREATE_MOLLIE_PAYMENT_INTENT, {
- input: {
- immediateCapture: false,
- },
- });
- expect(mollieRequest.captureMode).toBe('manual');
- });
- it('Should authorize payment with immediateCapture = false', async () => {
- nock('https://api.mollie.com/')
- .get(`/v2/payments/${mollieMockData.molliePaymentResponse.id}`)
- .reply(200, {
- ...mollieMockData.molliePaymentResponse,
- amount: { value: '3127.60', currency: 'EUR' },
- description: order.code,
- status: OrderStatus.authorized,
- });
- await fetch(`http://localhost:${serverPort}/payments/mollie/${E2E_DEFAULT_CHANNEL_TOKEN}/1`, {
- method: 'post',
- body: JSON.stringify({ id: mollieMockData.molliePaymentResponse.id }),
- headers: { 'Content-Type': 'application/json' },
- });
- const { orderByCode } = await shopClient.query<GetOrderByCodeQuery, GetOrderByCodeQueryVariables>(
- GET_ORDER_BY_CODE,
- {
- code: order.code,
- },
- );
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- order = orderByCode!;
- expect(order.state).toBe('PaymentAuthorized');
- });
- it('Should settle payment via settlePayment mutation', async () => {
- // Mock the getOrder Mollie call
- nock('https://api.mollie.com/')
- .get(`/v2/payments/${mollieMockData.molliePaymentResponse.id}`)
- .reply(200, {
- ...mollieMockData.molliePaymentResponse,
- description: order.code,
- status: OrderStatus.authorized,
- amount: { value: '3127.60', currency: 'EUR' },
- });
- // Mock the createCapture call
- let createCaptureRequest: any;
- nock('https://api.mollie.com/')
- .post(`/v2/payments/tr_mockPayment/captures`, body => {
- createCaptureRequest = body;
- return true;
- })
- .reply(200, { status: 'pending', id: 'cpt_mockCapture', resource: 'capture' });
- // Mock the getCapture call
- nock('https://api.mollie.com/')
- .get(`/v2/payments/tr_mockPayment/captures/cpt_mockCapture`)
- .reply(200, { status: 'succeeded', id: 'cpt_mockCapture', resource: 'capture' });
- await adminClient.query<SettlePaymentMutation, SettlePaymentMutationVariables>(SETTLE_PAYMENT, {
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- id: order.payments![0].id,
- });
- const { orderByCode } = await shopClient.query<GetOrderByCodeQuery, GetOrderByCodeQueryVariables>(
- GET_ORDER_BY_CODE,
- {
- code: order.code,
- },
- );
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
- order = orderByCode!;
- expect(createCaptureRequest.amount.value).toBe('3127.60'); // Full amount
- expect(order.state).toBe('PaymentSettled');
- });
- });
- });
|