| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- /* eslint-disable @typescript-eslint/no-non-null-assertion */
- import { createTestEnvironment, E2E_DEFAULT_CHANNEL_TOKEN } from '@vendure/testing';
- import path from 'path';
- import { afterAll, beforeAll, describe, expect, it } from 'vitest';
- import { initialData } from '../../../e2e-common/e2e-initial-data';
- import { testConfig, TEST_SETUP_TIMEOUT_MS } from '../../../e2e-common/test-config';
- import * as Codegen from './graphql/generated-e2e-admin-types';
- import { CurrencyCode, LanguageCode } from './graphql/generated-e2e-admin-types';
- import { RegisterMutation, RegisterMutationVariables } from './graphql/generated-e2e-shop-types';
- import {
- ADD_CUSTOMERS_TO_GROUP,
- CREATE_ADDRESS,
- CREATE_CHANNEL,
- CREATE_CUSTOMER,
- CREATE_CUSTOMER_GROUP,
- DELETE_CUSTOMER,
- GET_CUSTOMER_GROUP,
- GET_CUSTOMER_LIST,
- ME,
- REMOVE_CUSTOMERS_FROM_GROUP,
- UPDATE_ADDRESS,
- UPDATE_CUSTOMER,
- } from './graphql/shared-definitions';
- import { DELETE_ADDRESS, REGISTER_ACCOUNT } from './graphql/shop-definitions';
- import { assertThrowsWithMessage } from './utils/assert-throws-with-message';
- type CustomerListItem = Codegen.GetCustomerListQuery['customers']['items'][number];
- describe('ChannelAware Customers', () => {
- const { server, adminClient, shopClient } = createTestEnvironment(testConfig());
- const SECOND_CHANNEL_TOKEN = 'second_channel_token';
- let firstCustomer: CustomerListItem;
- let secondCustomer: CustomerListItem;
- let thirdCustomer: CustomerListItem;
- const numberOfCustomers = 3;
- let customerGroupId: string;
- beforeAll(async () => {
- await server.init({
- initialData,
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-minimal.csv'),
- customerCount: numberOfCustomers,
- });
- await adminClient.asSuperAdmin();
- const { customers } = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST, {
- options: { take: numberOfCustomers },
- });
- firstCustomer = customers.items[0];
- secondCustomer = customers.items[1];
- thirdCustomer = customers.items[2];
- await adminClient.query<Codegen.CreateChannelMutation, Codegen.CreateChannelMutationVariables>(
- CREATE_CHANNEL,
- {
- input: {
- code: 'second-channel',
- token: SECOND_CHANNEL_TOKEN,
- defaultLanguageCode: LanguageCode.en,
- currencyCode: CurrencyCode.GBP,
- pricesIncludeTax: true,
- defaultShippingZoneId: 'T_1',
- defaultTaxZoneId: 'T_1',
- },
- },
- );
- const { createCustomerGroup } = await adminClient.query<
- Codegen.CreateCustomerGroupMutation,
- Codegen.CreateCustomerGroupMutationVariables
- >(CREATE_CUSTOMER_GROUP, {
- input: {
- name: 'TestGroup',
- },
- });
- customerGroupId = createCustomerGroup.id;
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- describe('Address manipulation', () => {
- it(
- 'throws when updating address from customer from other channel',
- assertThrowsWithMessage(async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.UpdateAddressMutation,
- Codegen.UpdateAddressMutationVariables
- >(UPDATE_ADDRESS, {
- input: {
- id: 'T_1',
- streetLine1: 'Dummy street',
- },
- });
- }, 'No Address with the id "1" could be found'),
- );
- it(
- 'throws when creating address for customer from other channel',
- assertThrowsWithMessage(async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.CreateAddressMutation,
- Codegen.CreateAddressMutationVariables
- >(CREATE_ADDRESS, {
- id: firstCustomer.id,
- input: {
- streetLine1: 'Dummy street',
- countryCode: 'BE',
- },
- });
- }, 'No Customer with the id "1" could be found'),
- );
- it(
- 'throws when deleting address from customer from other channel',
- assertThrowsWithMessage(async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.DeleteCustomerAddressMutation,
- Codegen.DeleteCustomerAddressMutationVariables
- >(DELETE_ADDRESS, {
- id: 'T_1',
- });
- }, 'No Address with the id "1" could be found'),
- );
- });
- describe('Customer manipulation', () => {
- it(
- 'throws when deleting customer from other channel',
- assertThrowsWithMessage(async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.DeleteCustomerMutation,
- Codegen.DeleteCustomerMutationVariables
- >(DELETE_CUSTOMER, {
- id: firstCustomer.id,
- });
- }, 'No Customer with the id "1" could be found'),
- );
- it(
- 'throws when updating customer from other channel',
- assertThrowsWithMessage(async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.UpdateCustomerMutation,
- Codegen.UpdateCustomerMutationVariables
- >(UPDATE_CUSTOMER, {
- input: {
- id: firstCustomer.id,
- firstName: 'John',
- lastName: 'Doe',
- },
- });
- }, 'No Customer with the id "1" could be found'),
- );
- it('creates customers on current and default channel', async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<Codegen.CreateCustomerMutation, Codegen.CreateCustomerMutationVariables>(
- CREATE_CUSTOMER,
- {
- input: {
- firstName: 'John',
- lastName: 'Doe',
- emailAddress: 'john.doe@test.com',
- },
- },
- );
- const customersSecondChannel = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- adminClient.setChannelToken(E2E_DEFAULT_CHANNEL_TOKEN);
- const customersDefaultChannel = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customersSecondChannel.customers.totalItems).toBe(1);
- expect(customersDefaultChannel.customers.totalItems).toBe(numberOfCustomers + 1);
- });
- it('only shows customers from current channel', async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- const { customers } = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customers.totalItems).toBe(1);
- });
- it('shows all customers on default channel', async () => {
- adminClient.setChannelToken(E2E_DEFAULT_CHANNEL_TOKEN);
- const { customers } = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customers.totalItems).toBe(numberOfCustomers + 1);
- });
- it('brings customer to current channel when creating with existing emailAddress', async () => {
- adminClient.setChannelToken(E2E_DEFAULT_CHANNEL_TOKEN);
- let customersDefaultChannel = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- let customersSecondChannel = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customersDefaultChannel.customers.items.map(customer => customer.emailAddress)).toContain(
- firstCustomer.emailAddress,
- );
- expect(
- customersSecondChannel.customers.items.map(customer => customer.emailAddress),
- ).not.toContain(firstCustomer.emailAddress);
- await adminClient.query<Codegen.CreateCustomerMutation, Codegen.CreateCustomerMutationVariables>(
- CREATE_CUSTOMER,
- {
- input: {
- firstName: firstCustomer.firstName + '_new',
- lastName: firstCustomer.lastName + '_new',
- emailAddress: firstCustomer.emailAddress,
- },
- },
- );
- customersSecondChannel = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- adminClient.setChannelToken(E2E_DEFAULT_CHANNEL_TOKEN);
- customersDefaultChannel = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- const firstCustomerOnNewChannel = customersSecondChannel.customers.items.find(
- customer => customer.emailAddress === firstCustomer.emailAddress,
- );
- const firstCustomerOnDefaultChannel = customersDefaultChannel.customers.items.find(
- customer => customer.emailAddress === firstCustomer.emailAddress,
- );
- expect(firstCustomerOnNewChannel).not.toBeNull();
- expect(firstCustomerOnNewChannel?.emailAddress).toBe(firstCustomer.emailAddress);
- expect(firstCustomerOnNewChannel?.firstName).toBe(firstCustomer.firstName + '_new');
- expect(firstCustomerOnNewChannel?.lastName).toBe(firstCustomer.lastName + '_new');
- expect(firstCustomerOnDefaultChannel).not.toBeNull();
- expect(firstCustomerOnDefaultChannel?.emailAddress).toBe(firstCustomer.emailAddress);
- expect(firstCustomerOnDefaultChannel?.firstName).toBe(firstCustomer.firstName + '_new');
- expect(firstCustomerOnDefaultChannel?.lastName).toBe(firstCustomer.lastName + '_new');
- });
- });
- describe('Shop API', () => {
- it('assigns authenticated customers to the channels they visit', async () => {
- shopClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await shopClient.asUserWithCredentials(secondCustomer.emailAddress, 'test');
- await shopClient.query<Codegen.MeQuery>(ME);
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- const { customers } = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customers.totalItems).toBe(3);
- expect(customers.items.map(customer => customer.emailAddress)).toContain(
- secondCustomer.emailAddress,
- );
- });
- it('assigns newly registered customers to channel', async () => {
- shopClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await shopClient.asAnonymousUser();
- await shopClient.query<RegisterMutation, RegisterMutationVariables>(REGISTER_ACCOUNT, {
- input: {
- emailAddress: 'john.doe.2@test.com',
- },
- });
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- const { customers } = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customers.totalItems).toBe(4);
- expect(customers.items.map(customer => customer.emailAddress)).toContain('john.doe.2@test.com');
- });
- // https://github.com/vendure-ecommerce/vendure/issues/834
- it('handles concurrent assignments to a new channel', async () => {
- const THIRD_CHANNEL_TOKEN = 'third_channel_token';
- await adminClient.query<Codegen.CreateChannelMutation, Codegen.CreateChannelMutationVariables>(
- CREATE_CHANNEL,
- {
- input: {
- code: 'third-channel',
- token: THIRD_CHANNEL_TOKEN,
- defaultLanguageCode: LanguageCode.en,
- currencyCode: CurrencyCode.GBP,
- pricesIncludeTax: true,
- defaultShippingZoneId: 'T_1',
- defaultTaxZoneId: 'T_1',
- },
- },
- );
- await shopClient.asUserWithCredentials(secondCustomer.emailAddress, 'test');
- shopClient.setChannelToken(THIRD_CHANNEL_TOKEN);
- try {
- await Promise.all([
- shopClient.query<Codegen.MeQuery>(ME),
- shopClient.query<Codegen.MeQuery>(ME),
- ]);
- } catch (e: any) {
- fail('Threw: ' + (e.message as string));
- }
- adminClient.setChannelToken(THIRD_CHANNEL_TOKEN);
- const { customers } = await adminClient.query<
- Codegen.GetCustomerListQuery,
- Codegen.GetCustomerListQueryVariables
- >(GET_CUSTOMER_LIST);
- expect(customers.totalItems).toBe(1);
- expect(customers.items.map(customer => customer.emailAddress)).toContain(
- secondCustomer.emailAddress,
- );
- });
- });
- describe('Customergroup manipulation', () => {
- it('does not add a customer from another channel to customerGroup', async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.AddCustomersToGroupMutation,
- Codegen.AddCustomersToGroupMutationVariables
- >(ADD_CUSTOMERS_TO_GROUP, {
- groupId: customerGroupId,
- customerIds: [thirdCustomer.id],
- });
- adminClient.setChannelToken(E2E_DEFAULT_CHANNEL_TOKEN);
- const { customerGroup } = await adminClient.query<
- Codegen.GetCustomerGroupQuery,
- Codegen.GetCustomerGroupQueryVariables
- >(GET_CUSTOMER_GROUP, {
- id: customerGroupId,
- });
- expect(customerGroup!.customers.totalItems).toBe(0);
- });
- it('only shows customers from current channel in customerGroup', async () => {
- adminClient.setChannelToken(E2E_DEFAULT_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.AddCustomersToGroupMutation,
- Codegen.AddCustomersToGroupMutationVariables
- >(ADD_CUSTOMERS_TO_GROUP, {
- groupId: customerGroupId,
- customerIds: [secondCustomer.id, thirdCustomer.id],
- });
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- const { customerGroup } = await adminClient.query<
- Codegen.GetCustomerGroupQuery,
- Codegen.GetCustomerGroupQueryVariables
- >(GET_CUSTOMER_GROUP, {
- id: customerGroupId,
- });
- expect(customerGroup!.customers.totalItems).toBe(1);
- expect(customerGroup!.customers.items.map(customer => customer.id)).toContain(secondCustomer.id);
- });
- it('throws when deleting customer from other channel from customerGroup', async () => {
- adminClient.setChannelToken(SECOND_CHANNEL_TOKEN);
- await adminClient.query<
- Codegen.RemoveCustomersFromGroupMutation,
- Codegen.RemoveCustomersFromGroupMutationVariables
- >(REMOVE_CUSTOMERS_FROM_GROUP, {
- groupId: customerGroupId,
- customerIds: [thirdCustomer.id],
- });
- });
- });
- });
|