| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- import { pick } from '@vendure/common/lib/pick';
- import { createTestEnvironment } from '@vendure/testing';
- import path from 'path';
- import { initialData } from '../../../e2e-common/e2e-initial-data';
- import { testConfig, TEST_SETUP_TIMEOUT_MS } from '../../../e2e-common/test-config';
- import {
- AddCustomersToGroup,
- CreateCustomerGroup,
- DeleteCustomerGroup,
- GetCustomerGroup,
- GetCustomerGroups,
- GetCustomerHistory,
- GetCustomerList,
- GetCustomerWithGroups,
- HistoryEntryType,
- RemoveCustomersFromGroup,
- UpdateCustomerGroup,
- } from './graphql/generated-e2e-admin-types';
- import { DeletionResult } from './graphql/generated-e2e-shop-types';
- import {
- ADD_CUSTOMERS_TO_GROUP,
- CREATE_CUSTOMER_GROUP,
- DELETE_CUSTOMER_GROUP,
- GET_CUSTOMER_GROUP,
- GET_CUSTOMER_GROUPS,
- GET_CUSTOMER_HISTORY,
- GET_CUSTOMER_LIST,
- GET_CUSTOMER_WITH_GROUPS,
- REMOVE_CUSTOMERS_FROM_GROUP,
- UPDATE_CUSTOMER_GROUP,
- } from './graphql/shared-definitions';
- import { assertThrowsWithMessage } from './utils/assert-throws-with-message';
- import { sortById } from './utils/test-order-utils';
- describe('CustomerGroup resolver', () => {
- const { server, adminClient, shopClient } = createTestEnvironment(testConfig());
- let customers: GetCustomerList.Items[];
- beforeAll(async () => {
- await server.init({
- initialData,
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-minimal.csv'),
- customerCount: 5,
- });
- await adminClient.asSuperAdmin();
- const result = await adminClient.query<GetCustomerList.Query>(GET_CUSTOMER_LIST);
- customers = result.customers.items;
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- it('create', async () => {
- const { createCustomerGroup } = await adminClient.query<
- CreateCustomerGroup.Mutation,
- CreateCustomerGroup.Variables
- >(CREATE_CUSTOMER_GROUP, {
- input: {
- name: 'group 1',
- customerIds: [customers[0].id, customers[1].id],
- },
- });
- expect(createCustomerGroup.name).toBe('group 1');
- expect(createCustomerGroup.customers.items.sort(sortById)).toEqual([
- { id: customers[0].id },
- { id: customers[1].id },
- ]);
- });
- it('history entry for CUSTOMER_ADDED_TO_GROUP after group created', async () => {
- const { customer } = await adminClient.query<GetCustomerHistory.Query, GetCustomerHistory.Variables>(
- GET_CUSTOMER_HISTORY,
- {
- id: customers[0].id,
- options: {
- skip: 3,
- },
- },
- );
- expect(customer?.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.CUSTOMER_ADDED_TO_GROUP,
- data: {
- groupName: 'group 1',
- },
- },
- ]);
- });
- it('customerGroups', async () => {
- const { customerGroups } = await adminClient.query<
- GetCustomerGroups.Query,
- GetCustomerGroups.Variables
- >(GET_CUSTOMER_GROUPS, {
- options: {},
- });
- expect(customerGroups.totalItems).toBe(1);
- expect(customerGroups.items[0].name).toBe('group 1');
- });
- it('customerGroup with customer list options', async () => {
- const { customerGroup } = await adminClient.query<GetCustomerGroup.Query, GetCustomerGroup.Variables>(
- GET_CUSTOMER_GROUP,
- {
- id: 'T_1',
- options: {
- take: 1,
- },
- },
- );
- expect(customerGroup?.id).toBe('T_1');
- expect(customerGroup?.name).toBe('group 1');
- expect(customerGroup?.customers.items.length).toBe(1);
- expect(customerGroup?.customers.totalItems).toBe(2);
- });
- it('update', async () => {
- const { updateCustomerGroup } = await adminClient.query<
- UpdateCustomerGroup.Mutation,
- UpdateCustomerGroup.Variables
- >(UPDATE_CUSTOMER_GROUP, {
- input: {
- id: 'T_1',
- name: 'group 1 updated',
- },
- });
- expect(updateCustomerGroup.name).toBe('group 1 updated');
- });
- it('addCustomersToGroup with existing customer', async () => {
- const { addCustomersToGroup } = await adminClient.query<
- AddCustomersToGroup.Mutation,
- AddCustomersToGroup.Variables
- >(ADD_CUSTOMERS_TO_GROUP, {
- groupId: 'T_1',
- customerIds: [customers[0].id],
- });
- expect(addCustomersToGroup.customers.items.sort(sortById)).toEqual([
- { id: customers[0].id },
- { id: customers[1].id },
- ]);
- });
- it('addCustomersToGroup with new customers', async () => {
- const { addCustomersToGroup } = await adminClient.query<
- AddCustomersToGroup.Mutation,
- AddCustomersToGroup.Variables
- >(ADD_CUSTOMERS_TO_GROUP, {
- groupId: 'T_1',
- customerIds: [customers[2].id, customers[3].id],
- });
- expect(addCustomersToGroup.customers.items.sort(sortById)).toEqual([
- { id: customers[0].id },
- { id: customers[1].id },
- { id: customers[2].id },
- { id: customers[3].id },
- ]);
- });
- it('history entry for CUSTOMER_ADDED_TO_GROUP not duplicated', async () => {
- const { customer } = await adminClient.query<GetCustomerHistory.Query, GetCustomerHistory.Variables>(
- GET_CUSTOMER_HISTORY,
- {
- id: customers[0].id,
- options: {
- filter: {
- type: { eq: HistoryEntryType.CUSTOMER_ADDED_TO_GROUP },
- },
- },
- },
- );
- expect(customer?.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.CUSTOMER_ADDED_TO_GROUP,
- data: {
- groupName: 'group 1',
- },
- },
- ]);
- });
- it('history entry for CUSTOMER_ADDED_TO_GROUP after customer added', async () => {
- const { customer } = await adminClient.query<GetCustomerHistory.Query, GetCustomerHistory.Variables>(
- GET_CUSTOMER_HISTORY,
- {
- id: customers[2].id,
- options: {
- skip: 3,
- },
- },
- );
- expect(customer?.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.CUSTOMER_ADDED_TO_GROUP,
- data: {
- groupName: 'group 1 updated',
- },
- },
- ]);
- });
- it('customer.groups field resolver', async () => {
- const { customer } = await adminClient.query<
- GetCustomerWithGroups.Query,
- GetCustomerWithGroups.Variables
- >(GET_CUSTOMER_WITH_GROUPS, {
- id: customers[0].id,
- });
- expect(customer?.groups).toEqual([{ id: 'T_1', name: 'group 1 updated' }]);
- });
- it(
- 'removeCustomersFromGroup with invalid customerId',
- assertThrowsWithMessage(async () => {
- await adminClient.query<RemoveCustomersFromGroup.Mutation, RemoveCustomersFromGroup.Variables>(
- REMOVE_CUSTOMERS_FROM_GROUP,
- {
- groupId: 'T_1',
- customerIds: [customers[4].id],
- },
- );
- }, `Customer does not belong to this CustomerGroup`),
- );
- it('removeCustomersFromGroup with valid customerIds', async () => {
- const { removeCustomersFromGroup } = await adminClient.query<
- RemoveCustomersFromGroup.Mutation,
- RemoveCustomersFromGroup.Variables
- >(REMOVE_CUSTOMERS_FROM_GROUP, {
- groupId: 'T_1',
- customerIds: [customers[1].id, customers[3].id],
- });
- expect(removeCustomersFromGroup.customers.items.sort(sortById)).toEqual([
- { id: customers[0].id },
- { id: customers[2].id },
- ]);
- });
- it('history entry for CUSTOMER_REMOVED_FROM_GROUP', async () => {
- const { customer } = await adminClient.query<GetCustomerHistory.Query, GetCustomerHistory.Variables>(
- GET_CUSTOMER_HISTORY,
- {
- id: customers[1].id,
- options: {
- skip: 4,
- },
- },
- );
- expect(customer?.history.items.map(pick(['type', 'data']))).toEqual([
- {
- type: HistoryEntryType.CUSTOMER_REMOVED_FROM_GROUP,
- data: {
- groupName: 'group 1 updated',
- },
- },
- ]);
- });
- it('deleteCustomerGroup', async () => {
- const { deleteCustomerGroup } = await adminClient.query<
- DeleteCustomerGroup.Mutation,
- DeleteCustomerGroup.Variables
- >(DELETE_CUSTOMER_GROUP, {
- id: 'T_1',
- });
- expect(deleteCustomerGroup.message).toBeNull();
- expect(deleteCustomerGroup.result).toBe(DeletionResult.DELETED);
- const { customerGroups } = await adminClient.query<GetCustomerGroups.Query>(GET_CUSTOMER_GROUPS);
- expect(customerGroups.totalItems).toBe(0);
- });
- });
|