| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- import { pick } from '@vendure/common/lib/pick';
- import { PromotionAction, PromotionCondition, PromotionOrderAction } from '@vendure/core';
- import { createTestEnvironment } from '@vendure/testing';
- import gql from 'graphql-tag';
- import path from 'path';
- import { initialData } from '../../../e2e-common/e2e-initial-data';
- import { TEST_SETUP_TIMEOUT_MS, testConfig } from '../../../e2e-common/test-config';
- import { PROMOTION_FRAGMENT } from './graphql/fragments';
- import {
- CreatePromotion,
- DeletePromotion,
- DeletionResult,
- GetAdjustmentOperations,
- GetPromotion,
- GetPromotionList,
- LanguageCode,
- Promotion,
- UpdatePromotion,
- } from './graphql/generated-e2e-admin-types';
- import { CREATE_PROMOTION } from './graphql/shared-definitions';
- import { assertThrowsWithMessage } from './utils/assert-throws-with-message';
- // tslint:disable:no-non-null-assertion
- describe('Promotion resolver', () => {
- const promoCondition = generateTestCondition('promo_condition');
- const promoCondition2 = generateTestCondition('promo_condition2');
- const promoAction = generateTestAction('promo_action');
- const { server, adminClient, shopClient } = createTestEnvironment({
- ...testConfig,
- promotionOptions: {
- promotionConditions: [promoCondition, promoCondition2],
- promotionActions: [promoAction],
- },
- });
- const snapshotProps: Array<keyof Promotion.Fragment> = [
- 'name',
- 'actions',
- 'conditions',
- 'enabled',
- 'couponCode',
- 'startsAt',
- 'endsAt',
- ];
- let promotion: Promotion.Fragment;
- beforeAll(async () => {
- await server.init({
- dataDir: path.join(__dirname, '__data__'),
- initialData,
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-minimal.csv'),
- customerCount: 1,
- });
- await adminClient.asSuperAdmin();
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- it('createPromotion', async () => {
- const result = await adminClient.query<CreatePromotion.Mutation, CreatePromotion.Variables>(
- CREATE_PROMOTION,
- {
- input: {
- name: 'test promotion',
- enabled: true,
- couponCode: 'TEST123',
- startsAt: new Date('2019-10-30T00:00:00.000Z'),
- endsAt: new Date('2019-12-01T00:00:00.000Z'),
- conditions: [
- {
- code: promoCondition.code,
- arguments: [{ name: 'arg', value: '500', type: 'int' }],
- },
- ],
- actions: [
- {
- code: promoAction.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: '["T_1"]',
- type: 'facetValueIds',
- },
- ],
- },
- ],
- },
- },
- );
- promotion = result.createPromotion;
- expect(pick(promotion, snapshotProps)).toMatchSnapshot();
- });
- it(
- 'createPromotion throws with empty conditions and no couponCode',
- assertThrowsWithMessage(async () => {
- await adminClient.query<CreatePromotion.Mutation, CreatePromotion.Variables>(CREATE_PROMOTION, {
- input: {
- name: 'bad promotion',
- enabled: true,
- conditions: [],
- actions: [
- {
- code: promoAction.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: '["T_1"]',
- type: 'facetValueIds',
- },
- ],
- },
- ],
- },
- });
- }, 'A Promotion must have either at least one condition or a coupon code set'),
- );
- it('updatePromotion', async () => {
- const result = await adminClient.query<UpdatePromotion.Mutation, UpdatePromotion.Variables>(
- UPDATE_PROMOTION,
- {
- input: {
- id: promotion.id,
- couponCode: 'TEST1235',
- startsAt: new Date('2019-05-30T22:00:00.000Z'),
- endsAt: new Date('2019-06-01T22:00:00.000Z'),
- conditions: [
- {
- code: promoCondition.code,
- arguments: [{ name: 'arg', value: '90', type: 'int' }],
- },
- {
- code: promoCondition2.code,
- arguments: [{ name: 'arg', value: '10', type: 'int' }],
- },
- ],
- },
- },
- );
- expect(pick(result.updatePromotion, snapshotProps)).toMatchSnapshot();
- });
- it(
- 'updatePromotion throws with empty conditions and no couponCode',
- assertThrowsWithMessage(async () => {
- await adminClient.query<UpdatePromotion.Mutation, UpdatePromotion.Variables>(UPDATE_PROMOTION, {
- input: {
- id: promotion.id,
- couponCode: '',
- conditions: [],
- },
- });
- }, 'A Promotion must have either at least one condition or a coupon code set'),
- );
- it('promotion', async () => {
- const result = await adminClient.query<GetPromotion.Query, GetPromotion.Variables>(GET_PROMOTION, {
- id: promotion.id,
- });
- expect(result.promotion!.name).toBe(promotion.name);
- });
- it('promotions', async () => {
- const result = await adminClient.query<GetPromotionList.Query, GetPromotionList.Variables>(
- GET_PROMOTION_LIST,
- {},
- );
- expect(result.promotions.totalItems).toBe(1);
- expect(result.promotions.items[0].name).toBe('test promotion');
- });
- it('adjustmentOperations', async () => {
- const result = await adminClient.query<
- GetAdjustmentOperations.Query,
- GetAdjustmentOperations.Variables
- >(GET_ADJUSTMENT_OPERATIONS);
- expect(result.promotionActions).toMatchSnapshot();
- expect(result.promotionConditions).toMatchSnapshot();
- });
- describe('deletion', () => {
- let allPromotions: GetPromotionList.Items[];
- let promotionToDelete: GetPromotionList.Items;
- beforeAll(async () => {
- const result = await adminClient.query<GetPromotionList.Query>(GET_PROMOTION_LIST);
- allPromotions = result.promotions.items;
- });
- it('deletes a promotion', async () => {
- promotionToDelete = allPromotions[0];
- const result = await adminClient.query<DeletePromotion.Mutation, DeletePromotion.Variables>(
- DELETE_PROMOTION,
- { id: promotionToDelete.id },
- );
- expect(result.deletePromotion).toEqual({ result: DeletionResult.DELETED });
- });
- it('cannot get a deleted promotion', async () => {
- const result = await adminClient.query<GetPromotion.Query, GetPromotion.Variables>(
- GET_PROMOTION,
- {
- id: promotionToDelete.id,
- },
- );
- expect(result.promotion).toBe(null);
- });
- it('deleted promotion omitted from list', async () => {
- const result = await adminClient.query<GetPromotionList.Query>(GET_PROMOTION_LIST);
- expect(result.promotions.items.length).toBe(allPromotions.length - 1);
- expect(result.promotions.items.map(c => c.id).includes(promotionToDelete.id)).toBe(false);
- });
- it(
- 'updatePromotion throws for deleted promotion',
- assertThrowsWithMessage(
- () =>
- adminClient.query<UpdatePromotion.Mutation, UpdatePromotion.Variables>(UPDATE_PROMOTION, {
- input: {
- id: promotionToDelete.id,
- enabled: false,
- },
- }),
- `No Promotion with the id '1' could be found`,
- ),
- );
- });
- });
- function generateTestCondition(code: string): PromotionCondition<any> {
- return new PromotionCondition({
- code,
- description: [{ languageCode: LanguageCode.en, value: `description for ${code}` }],
- args: { arg: { type: 'int' } },
- check: (order, args) => true,
- });
- }
- function generateTestAction(code: string): PromotionAction<any> {
- return new PromotionOrderAction({
- code,
- description: [{ languageCode: LanguageCode.en, value: `description for ${code}` }],
- args: { facetValueIds: { type: 'facetValueIds' } },
- execute: (order, args) => {
- return 42;
- },
- });
- }
- const DELETE_PROMOTION = gql`
- mutation DeletePromotion($id: ID!) {
- deletePromotion(id: $id) {
- result
- }
- }
- `;
- export const GET_PROMOTION_LIST = gql`
- query GetPromotionList($options: PromotionListOptions) {
- promotions(options: $options) {
- items {
- ...Promotion
- }
- totalItems
- }
- }
- ${PROMOTION_FRAGMENT}
- `;
- export const GET_PROMOTION = gql`
- query GetPromotion($id: ID!) {
- promotion(id: $id) {
- ...Promotion
- }
- }
- ${PROMOTION_FRAGMENT}
- `;
- export const UPDATE_PROMOTION = gql`
- mutation UpdatePromotion($input: UpdatePromotionInput!) {
- updatePromotion(input: $input) {
- ...Promotion
- }
- }
- ${PROMOTION_FRAGMENT}
- `;
- export const CONFIGURABLE_DEF_FRAGMENT = gql`
- fragment ConfigurableOperationDef on ConfigurableOperationDefinition {
- args {
- name
- type
- config
- }
- code
- description
- }
- `;
- export const GET_ADJUSTMENT_OPERATIONS = gql`
- query GetAdjustmentOperations {
- promotionActions {
- ...ConfigurableOperationDef
- }
- promotionConditions {
- ...ConfigurableOperationDef
- }
- }
- ${CONFIGURABLE_DEF_FRAGMENT}
- `;
|