| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281 |
- /* tslint:disable:no-non-null-assertion */
- import gql from 'graphql-tag';
- import path from 'path';
- import { HistoryEntryType, StockMovementType } from '../../common/lib/generated-types';
- import { pick } from '../../common/lib/pick';
- import { ID } from '../../common/lib/shared-types';
- import { PaymentMethodHandler } from '../src/config/payment-method/payment-method-handler';
- import { TEST_SETUP_TIMEOUT_MS } from './config/test-config';
- import { ORDER_FRAGMENT, ORDER_WITH_LINES_FRAGMENT } from './graphql/fragments';
- import {
- AddNoteToOrder,
- CancelOrder,
- CreateFulfillment,
- GetCustomerList,
- GetOrder,
- GetOrderFulfillmentItems,
- GetOrderFulfillments,
- GetOrderHistory,
- GetOrderList,
- GetOrderListFulfillments,
- GetProductWithVariants,
- GetStockMovement,
- OrderItemFragment,
- RefundOrder,
- SettlePayment,
- SettleRefund,
- UpdateProductVariants,
- } from './graphql/generated-e2e-admin-types';
- import {
- AddItemToOrder,
- AddPaymentToOrder,
- GetShippingMethods,
- SetShippingAddress,
- SetShippingMethod,
- TransitionToState,
- } from './graphql/generated-e2e-shop-types';
- import { GET_CUSTOMER_LIST, GET_PRODUCT_WITH_VARIANTS, GET_STOCK_MOVEMENT, UPDATE_PRODUCT_VARIANTS } from './graphql/shared-definitions';
- import {
- ADD_ITEM_TO_ORDER,
- ADD_PAYMENT,
- GET_ELIGIBLE_SHIPPING_METHODS,
- SET_SHIPPING_ADDRESS,
- SET_SHIPPING_METHOD,
- TRANSITION_TO_STATE,
- } from './graphql/shop-definitions';
- import { TestAdminClient, TestShopClient } from './test-client';
- import { TestServer } from './test-server';
- import { assertThrowsWithMessage } from './utils/assert-throws-with-message';
- describe('Orders resolver', () => {
- const adminClient = new TestAdminClient();
- const shopClient = new TestShopClient();
- const server = new TestServer();
- let customers: GetCustomerList.Items[];
- const password = 'test';
- beforeAll(async () => {
- const token = await server.init(
- {
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-full.csv'),
- customerCount: 2,
- },
- {
- paymentOptions: {
- paymentMethodHandlers: [
- twoStagePaymentMethod,
- failsToSettlePaymentMethod,
- singleStageRefundablePaymentMethod,
- ],
- },
- },
- );
- await adminClient.init();
- // Create a couple of orders to be queried
- const result = await adminClient.query<GetCustomerList.Query, GetCustomerList.Variables>(
- GET_CUSTOMER_LIST,
- {
- options: {
- take: 2,
- },
- },
- );
- customers = result.customers.items;
- await shopClient.asUserWithCredentials(customers[0].emailAddress, password);
- await shopClient.query<AddItemToOrder.Mutation, AddItemToOrder.Variables>(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_1',
- quantity: 1,
- });
- await shopClient.query<AddItemToOrder.Mutation, AddItemToOrder.Variables>(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_2',
- quantity: 1,
- });
- await shopClient.asUserWithCredentials(customers[1].emailAddress, password);
- await shopClient.query<AddItemToOrder.Mutation, AddItemToOrder.Variables>(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_2',
- quantity: 1,
- });
- await shopClient.query<AddItemToOrder.Mutation, AddItemToOrder.Variables>(ADD_ITEM_TO_ORDER, {
- productVariantId: 'T_3',
- quantity: 3,
- });
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- it('orders', async () => {
- const result = await adminClient.query<GetOrderList.Query>(GET_ORDERS_LIST);
- expect(result.orders.items.map(o => o.id)).toEqual(['T_1', 'T_2']);
- });
- it('order', async () => {
- const result = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, { id: 'T_2' });
- expect(result.order!.id).toBe('T_2');
- });
- it('order history initially empty', async () => {
- const { order } = await adminClient.query<GetOrderHistory.Query, GetOrderHistory.Variables>(GET_ORDER_HISTORY, { id: 'T_1' });
- expect(order!.history.totalItems).toBe(0);
- expect(order!.history.items).toEqual([]);
- });
- describe('payments', () => {
- it('settlePayment fails', async () => {
- await shopClient.asUserWithCredentials(customers[0].emailAddress, password);
- await proceedToArrangingPayment(shopClient);
- const { addPaymentToOrder } = await shopClient.query<
- AddPaymentToOrder.Mutation,
- AddPaymentToOrder.Variables
- >(ADD_PAYMENT, {
- input: {
- method: failsToSettlePaymentMethod.code,
- metadata: {
- baz: 'quux',
- },
- },
- });
- const order = addPaymentToOrder!;
- expect(order.state).toBe('PaymentAuthorized');
- const payment = order.payments![0];
- const { settlePayment } = await adminClient.query<
- SettlePayment.Mutation,
- SettlePayment.Variables
- >(SETTLE_PAYMENT, {
- id: payment.id,
- });
- expect(settlePayment!.id).toBe(payment.id);
- expect(settlePayment!.state).toBe('Authorized');
- const result = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: order.id,
- });
- expect(result.order!.state).toBe('PaymentAuthorized');
- });
- it('settlePayment succeeds', async () => {
- await shopClient.asUserWithCredentials(customers[1].emailAddress, password);
- await proceedToArrangingPayment(shopClient);
- const { addPaymentToOrder } = await shopClient.query<
- AddPaymentToOrder.Mutation,
- AddPaymentToOrder.Variables
- >(ADD_PAYMENT, {
- input: {
- method: twoStagePaymentMethod.code,
- metadata: {
- baz: 'quux',
- },
- },
- });
- const order = addPaymentToOrder!;
- expect(order.state).toBe('PaymentAuthorized');
- const payment = order.payments![0];
- const { settlePayment } = await adminClient.query<
- SettlePayment.Mutation,
- SettlePayment.Variables
- >(SETTLE_PAYMENT, {
- id: payment.id,
- });
- expect(settlePayment!.id).toBe(payment.id);
- expect(settlePayment!.state).toBe('Settled');
- // further metadata is combined into existing object
- expect(settlePayment!.metadata).toEqual({
- baz: 'quux',
- moreData: 42,
- });
- const result = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: order.id,
- });
- expect(result.order!.state).toBe('PaymentSettled');
- expect(result.order!.payments![0].state).toBe('Settled');
- });
- it('order history contains expected entries', async () => {
- const { order } = await adminClient.query<GetOrderHistory.Query, GetOrderHistory.Variables>(GET_ORDER_HISTORY, { id: 'T_2' });
- expect(order!.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'AddingItems',
- to: 'ArrangingPayment',
- },
- },
- {
- type: HistoryEntryType.ORDER_PAYMENT_TRANSITION, data: {
- paymentId: 'T_2',
- from: 'Created',
- to: 'Authorized',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'ArrangingPayment',
- to: 'PaymentAuthorized',
- },
- },
- {
- type: HistoryEntryType.ORDER_PAYMENT_TRANSITION, data: {
- paymentId: 'T_2',
- from: 'Authorized',
- to: 'Settled',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'PaymentAuthorized',
- to: 'PaymentSettled',
- },
- },
- ]);
- });
- });
- describe('fulfillment', () => {
- it(
- 'throws if Order is not in "PaymentSettled" state',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_1',
- });
- expect(order!.state).toBe('PaymentAuthorized');
- await adminClient.query<CreateFulfillment.Mutation, CreateFulfillment.Variables>(
- CREATE_FULFILLMENT,
- {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: l.quantity })),
- method: 'Test',
- },
- },
- );
- }, 'One or more OrderItems belong to an Order which is in an invalid state'),
- );
- it(
- 'throws if lines is empty',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(order!.state).toBe('PaymentSettled');
- await adminClient.query<CreateFulfillment.Mutation, CreateFulfillment.Variables>(
- CREATE_FULFILLMENT,
- {
- input: {
- lines: [],
- method: 'Test',
- },
- },
- );
- }, 'Nothing to fulfill'),
- );
- it(
- 'throws if all quantities are zero',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(order!.state).toBe('PaymentSettled');
- await adminClient.query<CreateFulfillment.Mutation, CreateFulfillment.Variables>(
- CREATE_FULFILLMENT,
- {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 0 })),
- method: 'Test',
- },
- },
- );
- }, 'Nothing to fulfill'),
- );
- it('creates a partial fulfillment', async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(order!.state).toBe('PaymentSettled');
- const lines = order!.lines;
- const { fulfillOrder } = await adminClient.query<
- CreateFulfillment.Mutation,
- CreateFulfillment.Variables
- >(CREATE_FULFILLMENT, {
- input: {
- lines: lines.map(l => ({ orderLineId: l.id, quantity: 1 })),
- method: 'Test1',
- trackingCode: '111',
- },
- });
- expect(fulfillOrder!.method).toBe('Test1');
- expect(fulfillOrder!.trackingCode).toBe('111');
- expect(fulfillOrder!.orderItems).toEqual([
- { id: lines[0].items[0].id },
- { id: lines[1].items[0].id },
- ]);
- const result = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(result.order!.state).toBe('PartiallyFulfilled');
- expect(result.order!.lines[0].items[0].fulfillment!.id).toBe(fulfillOrder!.id);
- expect(result.order!.lines[1].items[2].fulfillment!.id).toBe(fulfillOrder!.id);
- expect(result.order!.lines[1].items[1].fulfillment).toBeNull();
- expect(result.order!.lines[1].items[0].fulfillment).toBeNull();
- });
- it('creates a second partial fulfillment', async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(order!.state).toBe('PartiallyFulfilled');
- const lines = order!.lines;
- const { fulfillOrder } = await adminClient.query<
- CreateFulfillment.Mutation,
- CreateFulfillment.Variables
- >(CREATE_FULFILLMENT, {
- input: {
- lines: [{ orderLineId: lines[1].id, quantity: 1 }],
- method: 'Test2',
- trackingCode: '222',
- },
- });
- const result = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- // expect(result.order!.lines).toEqual({});
- expect(result.order!.state).toBe('PartiallyFulfilled');
- expect(result.order!.lines[1].items[2].fulfillment).not.toBeNull();
- expect(result.order!.lines[1].items[1].fulfillment).not.toBeNull();
- expect(result.order!.lines[1].items[0].fulfillment).toBeNull();
- });
- it(
- 'throws if an OrderItem already part of a Fulfillment',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(order!.state).toBe('PartiallyFulfilled');
- await adminClient.query<CreateFulfillment.Mutation, CreateFulfillment.Variables>(
- CREATE_FULFILLMENT,
- {
- input: {
- method: 'Test',
- lines: [
- {
- orderLineId: order!.lines[0].id,
- quantity: 1,
- },
- ],
- },
- },
- );
- }, 'One or more OrderItems have already been fulfilled'),
- );
- it('completes fulfillment', async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(order!.state).toBe('PartiallyFulfilled');
- const orderItems = order!.lines.reduce(
- (items, line) => [...items, ...line.items],
- [] as OrderItemFragment[],
- );
- const { fulfillOrder } = await adminClient.query<
- CreateFulfillment.Mutation,
- CreateFulfillment.Variables
- >(CREATE_FULFILLMENT, {
- input: {
- lines: [
- {
- orderLineId: order!.lines[1].id,
- quantity: 1,
- },
- ],
- method: 'Test3',
- trackingCode: '333',
- },
- });
- expect(fulfillOrder!.method).toBe('Test3');
- expect(fulfillOrder!.trackingCode).toBe('333');
- expect(fulfillOrder!.orderItems).toEqual([{ id: orderItems[1].id }]);
- const result = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: 'T_2',
- });
- expect(result.order!.state).toBe('Fulfilled');
- });
- it('order history contains expected entries', async () => {
- const { order } = await adminClient.query<GetOrderHistory.Query, GetOrderHistory.Variables>(GET_ORDER_HISTORY, {
- id: 'T_2',
- options: {
- skip: 5,
- },
- });
- expect(order!.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.ORDER_FULLFILLMENT, data: {
- fulfillmentId: 'T_1',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'PaymentSettled',
- to: 'PartiallyFulfilled',
- },
- },
- {
- type: HistoryEntryType.ORDER_FULLFILLMENT, data: {
- fulfillmentId: 'T_2',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'PartiallyFulfilled',
- to: 'PartiallyFulfilled',
- },
- },
- {
- type: HistoryEntryType.ORDER_FULLFILLMENT, data: {
- fulfillmentId: 'T_3',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'PartiallyFulfilled',
- to: 'Fulfilled',
- },
- },
- ]);
- });
- it('order.fullfillments resolver for single order', async () => {
- const { order } = await adminClient.query<
- GetOrderFulfillments.Query,
- GetOrderFulfillments.Variables
- >(GET_ORDER_FULFILLMENTS, {
- id: 'T_2',
- });
- expect(order!.fulfillments).toEqual([
- { id: 'T_1', method: 'Test1' },
- { id: 'T_2', method: 'Test2' },
- { id: 'T_3', method: 'Test3' },
- ]);
- });
- it('order.fullfillments resolver for order list', async () => {
- const { orders } = await adminClient.query<GetOrderListFulfillments.Query>(
- GET_ORDER_LIST_FULFILLMENTS,
- );
- expect(orders.items[0].fulfillments).toEqual([]);
- expect(orders.items[1].fulfillments).toEqual([
- { id: 'T_1', method: 'Test1' },
- { id: 'T_2', method: 'Test2' },
- { id: 'T_3', method: 'Test3' },
- ]);
- });
- it('order.fullfillments.orderItems resolver', async () => {
- const { order } = await adminClient.query<
- GetOrderFulfillmentItems.Query,
- GetOrderFulfillmentItems.Variables
- >(GET_ORDER_FULFILLMENT_ITEMS, {
- id: 'T_2',
- });
- expect(order!.fulfillments![0].orderItems).toEqual([{ id: 'T_3' }, { id: 'T_4' }]);
- expect(order!.fulfillments![1].orderItems).toEqual([{ id: 'T_5' }]);
- });
- });
- describe('cancellation', () => {
- let orderId: string;
- let product: GetProductWithVariants.Product;
- let productVariantId: string;
- beforeAll(async () => {
- const result = await adminClient.query<
- GetProductWithVariants.Query,
- GetProductWithVariants.Variables
- >(GET_PRODUCT_WITH_VARIANTS, {
- id: 'T_3',
- });
- product = result.product!;
- productVariantId = product.variants[0].id;
- // Set the ProductVariant to trackInventory
- const { updateProductVariants } = await adminClient.query<
- UpdateProductVariants.Mutation,
- UpdateProductVariants.Variables
- >(UPDATE_PRODUCT_VARIANTS, {
- input: [
- {
- id: productVariantId,
- trackInventory: true,
- },
- ],
- });
- // Add the ProductVariant to the Order
- await shopClient.asUserWithCredentials(customers[0].emailAddress, password);
- const { addItemToOrder } = await shopClient.query<
- AddItemToOrder.Mutation,
- AddItemToOrder.Variables
- >(ADD_ITEM_TO_ORDER, {
- productVariantId,
- quantity: 2,
- });
- orderId = addItemToOrder!.id;
- });
- it(
- 'cannot cancel from AddingItems state',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- expect(order!.state).toBe('AddingItems');
- await adminClient.query<CancelOrder.Mutation, CancelOrder.Variables>(CANCEL_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 1 })),
- },
- });
- }, 'Cannot cancel OrderLines from an Order in the "AddingItems" state'),
- );
- it(
- 'cannot cancel from ArrangingPayment state',
- assertThrowsWithMessage(async () => {
- await proceedToArrangingPayment(shopClient);
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- expect(order!.state).toBe('ArrangingPayment');
- await adminClient.query<CancelOrder.Mutation, CancelOrder.Variables>(CANCEL_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 1 })),
- },
- });
- }, 'Cannot cancel OrderLines from an Order in the "ArrangingPayment" state'),
- );
- it(
- 'throws if lines are ampty',
- assertThrowsWithMessage(async () => {
- const { addPaymentToOrder } = await shopClient.query<
- AddPaymentToOrder.Mutation,
- AddPaymentToOrder.Variables
- >(ADD_PAYMENT, {
- input: {
- method: twoStagePaymentMethod.code,
- metadata: {
- baz: 'quux',
- },
- },
- });
- expect(addPaymentToOrder!.state).toBe('PaymentAuthorized');
- await adminClient.query<CancelOrder.Mutation, CancelOrder.Variables>(CANCEL_ORDER, {
- input: {
- lines: [],
- },
- });
- }, 'Nothing to cancel',
- ),
- );
- it(
- 'throws if all quantities zero',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- await adminClient.query<CancelOrder.Mutation, CancelOrder.Variables>(CANCEL_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 0 })),
- },
- });
- }, 'Nothing to cancel',
- ),
- );
- it('partial cancellation', async () => {
- const result1 = await adminClient.query<GetStockMovement.Query, GetStockMovement.Variables>(
- GET_STOCK_MOVEMENT,
- {
- id: product.id,
- },
- );
- const variant1 = result1.product!.variants[0];
- expect(variant1.stockOnHand).toBe(98);
- expect(variant1.stockMovements.items.map(pick(['type', 'quantity']))).toEqual([
- { type: StockMovementType.ADJUSTMENT, quantity: 100 },
- { type: StockMovementType.SALE, quantity: -2 },
- ]);
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- const { cancelOrder } = await adminClient.query<CancelOrder.Mutation, CancelOrder.Variables>(CANCEL_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 1 })),
- reason: 'cancel reason 1',
- },
- });
- expect(cancelOrder.lines[0].quantity).toBe(1);
- expect(cancelOrder.lines[0].items).toEqual([
- { id: 'T_7', cancelled: true },
- { id: 'T_8', cancelled: false },
- ]);
- const { order: order2 } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- expect(order2!.state).toBe('PaymentAuthorized');
- expect(order2!.lines[0].quantity).toBe(1);
- const result2 = await adminClient.query<GetStockMovement.Query, GetStockMovement.Variables>(
- GET_STOCK_MOVEMENT,
- {
- id: product.id,
- },
- );
- const variant2 = result2.product!.variants[0];
- expect(variant2.stockOnHand).toBe(99);
- expect(variant2.stockMovements.items.map(pick(['type', 'quantity']))).toEqual([
- { type: StockMovementType.ADJUSTMENT, quantity: 100 },
- { type: StockMovementType.SALE, quantity: -2 },
- { type: StockMovementType.CANCELLATION, quantity: 1 },
- ]);
- });
- it('complete cancellation', async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- await adminClient.query<CancelOrder.Mutation, CancelOrder.Variables>(CANCEL_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 1 })),
- reason: 'cancel reason 2',
- },
- });
- const { order: order2 } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- expect(order2!.state).toBe('Cancelled');
- const result = await adminClient.query<GetStockMovement.Query, GetStockMovement.Variables>(
- GET_STOCK_MOVEMENT,
- {
- id: product.id,
- },
- );
- const variant2 = result.product!.variants[0];
- expect(variant2.stockOnHand).toBe(100);
- expect(variant2.stockMovements.items.map(pick(['type', 'quantity']))).toEqual([
- { type: StockMovementType.ADJUSTMENT, quantity: 100 },
- { type: StockMovementType.SALE, quantity: -2 },
- { type: StockMovementType.CANCELLATION, quantity: 1 },
- { type: StockMovementType.CANCELLATION, quantity: 1 },
- ]);
- });
- it('order history contains expected entries', async () => {
- const { order } = await adminClient.query<GetOrderHistory.Query, GetOrderHistory.Variables>(GET_ORDER_HISTORY, {
- id: orderId,
- options: {
- skip: 0,
- },
- });
- expect(order!.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'AddingItems',
- to: 'ArrangingPayment',
- },
- },
- {
- type: HistoryEntryType.ORDER_PAYMENT_TRANSITION, data: {
- paymentId: 'T_3',
- from: 'Created',
- to: 'Authorized',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'ArrangingPayment',
- to: 'PaymentAuthorized',
- },
- },
- {
- type: HistoryEntryType.ORDER_CANCELLATION, data: {
- orderItemIds: ['T_7'],
- reason: 'cancel reason 1',
- },
- },
- {
- type: HistoryEntryType.ORDER_CANCELLATION, data: {
- orderItemIds: ['T_8'],
- reason: 'cancel reason 2',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'PaymentAuthorized',
- to: 'Cancelled',
- },
- },
- ]);
- });
- });
- describe('refunds', () => {
- let orderId: string;
- let product: GetProductWithVariants.Product;
- let productVariantId: string;
- let paymentId: string;
- let refundId: string;
- beforeAll(async () => {
- const result = await adminClient.query<
- GetProductWithVariants.Query,
- GetProductWithVariants.Variables
- >(GET_PRODUCT_WITH_VARIANTS, {
- id: 'T_3',
- });
- product = result.product!;
- productVariantId = product.variants[0].id;
- // Set the ProductVariant to trackInventory
- const { updateProductVariants } = await adminClient.query<
- UpdateProductVariants.Mutation,
- UpdateProductVariants.Variables
- >(UPDATE_PRODUCT_VARIANTS, {
- input: [
- {
- id: productVariantId,
- trackInventory: true,
- },
- ],
- });
- // Add the ProductVariant to the Order
- await shopClient.asUserWithCredentials(customers[0].emailAddress, password);
- const { addItemToOrder } = await shopClient.query<
- AddItemToOrder.Mutation,
- AddItemToOrder.Variables
- >(ADD_ITEM_TO_ORDER, {
- productVariantId,
- quantity: 2,
- });
- orderId = addItemToOrder!.id;
- });
- it(
- 'cannot refund from PaymentAuthorized state',
- assertThrowsWithMessage(async () => {
- await proceedToArrangingPayment(shopClient);
- const { addPaymentToOrder } = await shopClient.query<
- AddPaymentToOrder.Mutation,
- AddPaymentToOrder.Variables
- >(ADD_PAYMENT, {
- input: {
- method: twoStagePaymentMethod.code,
- metadata: {
- baz: 'quux',
- },
- },
- });
- expect(addPaymentToOrder!.state).toBe('PaymentAuthorized');
- paymentId = addPaymentToOrder!.payments![0].id;
- await adminClient.query<RefundOrder.Mutation, RefundOrder.Variables>(REFUND_ORDER, {
- input: {
- lines: addPaymentToOrder!.lines.map(l => ({ orderLineId: l.id, quantity: 1 })),
- shipping: 0,
- adjustment: 0,
- paymentId,
- },
- });
- }, 'Cannot refund an Order in the "PaymentAuthorized" state'),
- );
- it(
- 'throws if no lines and no shipping',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- const { settlePayment } = await adminClient.query<
- SettlePayment.Mutation,
- SettlePayment.Variables
- >(SETTLE_PAYMENT, {
- id: order!.payments![0].id,
- });
- expect(settlePayment!.state).toBe('Settled');
- await adminClient.query<RefundOrder.Mutation, RefundOrder.Variables>(REFUND_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: 0 })),
- shipping: 0,
- adjustment: 0,
- paymentId,
- },
- });
- }, 'Nothing to refund',
- ),
- );
- it(
- 'throws if paymentId not valid',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- const { refundOrder } = await adminClient.query<RefundOrder.Mutation, RefundOrder.Variables>(REFUND_ORDER, {
- input: {
- lines: [],
- shipping: 100,
- adjustment: 0,
- paymentId: 'T_999',
- },
- });
- }, 'No Payment with the id \'999\' could be found',
- ),
- );
- it(
- 'throws if payment and order lines do not belong to the same Order',
- assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- const { refundOrder } = await adminClient.query<RefundOrder.Mutation, RefundOrder.Variables>(REFUND_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: l.quantity })),
- shipping: 100,
- adjustment: 0,
- paymentId: 'T_1',
- },
- });
- }, 'The Payment and OrderLines do not belong to the same Order',
- ),
- );
- it('creates a Refund to be manually settled', async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- const { refundOrder } = await adminClient.query<RefundOrder.Mutation, RefundOrder.Variables>(REFUND_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: l.quantity })),
- shipping: order!.shipping,
- adjustment: 0,
- reason: 'foo',
- paymentId,
- },
- });
- expect(refundOrder.shipping).toBe(order!.shipping);
- expect(refundOrder.items).toBe(order!.subTotal);
- expect(refundOrder.total).toBe(order!.total);
- expect(refundOrder.transactionId).toBe(null);
- expect(refundOrder.state).toBe('Pending');
- refundId = refundOrder.id;
- });
- it('throws if attempting to refund the same item more than once', assertThrowsWithMessage(async () => {
- const { order } = await adminClient.query<GetOrder.Query, GetOrder.Variables>(GET_ORDER, {
- id: orderId,
- });
- const { refundOrder } = await adminClient.query<RefundOrder.Mutation, RefundOrder.Variables>(REFUND_ORDER, {
- input: {
- lines: order!.lines.map(l => ({ orderLineId: l.id, quantity: l.quantity })),
- shipping: order!.shipping,
- adjustment: 0,
- paymentId,
- },
- });
- },
- 'Cannot refund an OrderItem which has already been refunded',
- ),
- );
- it('manually settle a Refund', async () => {
- const { settleRefund } = await adminClient.query<SettleRefund.Mutation, SettleRefund.Variables>(SETTLE_REFUND, {
- input: {
- id: refundId,
- transactionId: 'aaabbb',
- },
- });
- expect(settleRefund.state).toBe('Settled');
- expect(settleRefund.transactionId).toBe('aaabbb');
- });
- it('order history contains expected entries', async () => {
- const { order } = await adminClient.query<GetOrderHistory.Query, GetOrderHistory.Variables>(GET_ORDER_HISTORY, {
- id: orderId,
- options: {
- skip: 0,
- },
- });
- expect(order!.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'AddingItems',
- to: 'ArrangingPayment',
- },
- },
- {
- type: HistoryEntryType.ORDER_PAYMENT_TRANSITION, data: {
- paymentId: 'T_4',
- from: 'Created',
- to: 'Authorized',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'ArrangingPayment',
- to: 'PaymentAuthorized',
- },
- },
- {
- type: HistoryEntryType.ORDER_PAYMENT_TRANSITION, data: {
- paymentId: 'T_4',
- from: 'Authorized',
- to: 'Settled',
- },
- },
- {
- type: HistoryEntryType.ORDER_STATE_TRANSITION, data: {
- from: 'PaymentAuthorized',
- to: 'PaymentSettled',
- },
- },
- {
- type: HistoryEntryType.ORDER_REFUND_TRANSITION, data: {
- refundId: 'T_1',
- reason: 'foo',
- from: 'Pending',
- to: 'Settled',
- },
- },
- ]);
- });
- });
- it('addNoteToOrder', async () => {
- const { addNoteToOrder } = await adminClient.query<AddNoteToOrder.Mutation, AddNoteToOrder.Variables>(ADD_NOTE_TO_ORDER, {
- input: {
- id: 'T_4',
- note: 'A test note',
- },
- });
- expect(addNoteToOrder.id).toBe('T_4');
- const { order } = await adminClient.query<GetOrderHistory.Query, GetOrderHistory.Variables>(GET_ORDER_HISTORY, {
- id: 'T_4',
- options: {
- skip: 6,
- },
- });
- expect(order!.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.ORDER_NOTE, data: {
- note: 'A test note',
- },
- },
- ]);
- });
- });
- /**
- * A two-stage (authorize, capture) payment method, with no createRefund method.
- */
- const twoStagePaymentMethod = new PaymentMethodHandler({
- code: 'authorize-only-payment-method',
- description: 'Test Payment Method',
- args: {},
- createPayment: (order, args, metadata) => {
- return {
- amount: order.total,
- state: 'Authorized',
- transactionId: '12345',
- metadata,
- };
- },
- settlePayment: () => {
- return {
- success: true,
- metadata: {
- moreData: 42,
- },
- };
- },
- });
- /**
- * A payment method which includes a createRefund method.
- */
- const singleStageRefundablePaymentMethod = new PaymentMethodHandler({
- code: 'single-stage-refundable-payment-method',
- description: 'Test Payment Method',
- args: {},
- createPayment: (order, args, metadata) => {
- return {
- amount: order.total,
- state: 'Settled',
- transactionId: '12345',
- metadata,
- };
- },
- settlePayment: () => {
- return { success: true };
- },
- createRefund: (input, total, order, payment, args) => {
- return {
- amount: total,
- state: 'Settled',
- transactionId: 'abc123',
- };
- },
- });
- /**
- * A payment method where calling `settlePayment` always fails.
- */
- const failsToSettlePaymentMethod = new PaymentMethodHandler({
- code: 'fails-to-settle-payment-method',
- description: 'Test Payment Method',
- args: {},
- createPayment: (order, args, metadata) => {
- return {
- amount: order.total,
- state: 'Authorized',
- transactionId: '12345',
- metadata,
- };
- },
- settlePayment: () => {
- return {
- success: false,
- errorMessage: 'Something went horribly wrong',
- };
- },
- });
- async function proceedToArrangingPayment(shopClient: TestShopClient): Promise<ID> {
- await shopClient.query<SetShippingAddress.Mutation, SetShippingAddress.Variables>(SET_SHIPPING_ADDRESS, {
- input: {
- fullName: 'name',
- streetLine1: '12 the street',
- city: 'foo',
- postalCode: '123456',
- countryCode: 'US',
- },
- });
- const { eligibleShippingMethods } = await shopClient.query<GetShippingMethods.Query>(
- GET_ELIGIBLE_SHIPPING_METHODS,
- );
- await shopClient.query<SetShippingMethod.Mutation, SetShippingMethod.Variables>(SET_SHIPPING_METHOD, {
- id: eligibleShippingMethods[1].id,
- });
- const { transitionOrderToState } = await shopClient.query<
- TransitionToState.Mutation,
- TransitionToState.Variables
- >(TRANSITION_TO_STATE, { state: 'ArrangingPayment' });
- return transitionOrderToState!.id;
- }
- export const GET_ORDERS_LIST = gql`
- query GetOrderList($options: OrderListOptions) {
- orders(options: $options) {
- items {
- ...Order
- }
- totalItems
- }
- }
- ${ORDER_FRAGMENT}
- `;
- export const GET_ORDER = gql`
- query GetOrder($id: ID!) {
- order(id: $id) {
- ...OrderWithLines
- }
- }
- ${ORDER_WITH_LINES_FRAGMENT}
- `;
- export const SETTLE_PAYMENT = gql`
- mutation SettlePayment($id: ID!) {
- settlePayment(id: $id) {
- id
- state
- metadata
- }
- }
- `;
- export const CREATE_FULFILLMENT = gql`
- mutation CreateFulfillment($input: FulfillOrderInput!) {
- fulfillOrder(input: $input) {
- id
- method
- trackingCode
- orderItems {
- id
- }
- }
- }
- `;
- export const GET_ORDER_FULFILLMENTS = gql`
- query GetOrderFulfillments($id: ID!) {
- order(id: $id) {
- id
- fulfillments {
- id
- method
- }
- }
- }
- `;
- export const GET_ORDER_LIST_FULFILLMENTS = gql`
- query GetOrderListFulfillments {
- orders {
- items {
- id
- fulfillments {
- id
- method
- }
- }
- }
- }
- `;
- export const GET_ORDER_FULFILLMENT_ITEMS = gql`
- query GetOrderFulfillmentItems($id: ID!) {
- order(id: $id) {
- id
- fulfillments {
- id
- orderItems {
- id
- }
- }
- }
- }
- `;
- export const CANCEL_ORDER = gql`
- mutation CancelOrder($input: CancelOrderInput!) {
- cancelOrder(input: $input) {
- id
- lines {
- quantity
- items {
- id
- cancelled
- }
- }
- }
- }
- `;
- export const REFUND_ORDER = gql`
- mutation RefundOrder($input: RefundOrderInput!) {
- refundOrder(input: $input) {
- id
- state
- items
- transactionId
- shipping
- total
- metadata
- }
- }
- `;
- export const SETTLE_REFUND = gql`
- mutation SettleRefund($input: SettleRefundInput!) {
- settleRefund(input: $input) {
- id
- state
- items
- transactionId
- shipping
- total
- metadata
- }
- }
- `;
- export const GET_ORDER_HISTORY = gql`
- query GetOrderHistory($id: ID!, $options: HistoryEntryListOptions) {
- order(id: $id) {
- id
- history(options: $options) {
- totalItems
- items {
- id
- type
- administrator {
- id
- }
- data
- }
- }
- }
- }
- `;
- export const ADD_NOTE_TO_ORDER = gql`
- mutation AddNoteToOrder($input: AddNoteToOrderInput!) {
- addNoteToOrder(input: $input) {
- id
- }
- }
- `;
|