| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265 |
- /* tslint:disable:no-non-null-assertion */
- import { ROOT_COLLECTION_NAME } from '@vendure/common/lib/shared-constants';
- import {
- facetValueCollectionFilter,
- variantNameCollectionFilter,
- } from '@vendure/core/dist/config/collection/default-collection-filters';
- 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 { pick } from '../../common/lib/pick';
- import { COLLECTION_FRAGMENT, FACET_VALUE_FRAGMENT } from './graphql/fragments';
- import {
- Collection,
- CreateCollection,
- CreateCollectionInput,
- CreateCollectionSelectVariants,
- DeleteCollection,
- DeleteProduct,
- DeletionResult,
- FacetValueFragment,
- GetAssetList,
- GetCollection,
- GetCollectionBreadcrumbs,
- GetCollectionProducts,
- GetCollections,
- GetCollectionsForProducts,
- GetCollectionsWithAssets,
- GetFacetValues,
- GetProductCollections,
- GetProductsWithVariantIds,
- LanguageCode,
- MoveCollection,
- SortOrder,
- UpdateCollection,
- UpdateProduct,
- UpdateProductVariants,
- } from './graphql/generated-e2e-admin-types';
- import {
- CREATE_COLLECTION,
- DELETE_PRODUCT,
- GET_ASSET_LIST,
- UPDATE_COLLECTION,
- UPDATE_PRODUCT,
- UPDATE_PRODUCT_VARIANTS,
- } from './graphql/shared-definitions';
- import { assertThrowsWithMessage } from './utils/assert-throws-with-message';
- import { awaitRunningJobs } from './utils/await-running-jobs';
- describe('Collection resolver', () => {
- const { server, adminClient } = createTestEnvironment(testConfig);
- let assets: GetAssetList.Items[];
- let facetValues: FacetValueFragment[];
- let electronicsCollection: Collection.Fragment;
- let computersCollection: Collection.Fragment;
- let pearCollection: Collection.Fragment;
- beforeAll(async () => {
- await server.init({
- dataDir: path.join(__dirname, '__data__'),
- initialData,
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-collections.csv'),
- customerCount: 1,
- });
- await adminClient.asSuperAdmin();
- const assetsResult = await adminClient.query<GetAssetList.Query, GetAssetList.Variables>(
- GET_ASSET_LIST,
- {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- },
- },
- );
- assets = assetsResult.assets.items;
- const facetValuesResult = await adminClient.query<GetFacetValues.Query>(GET_FACET_VALUES);
- facetValues = facetValuesResult.facets.items.reduce(
- (values, facet) => [...values, ...facet.values],
- [] as FacetValueFragment[],
- );
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- /**
- * Test case for https://github.com/vendure-ecommerce/vendure/issues/97
- */
- it('collection breadcrumbs works after bootstrap', async () => {
- const result = await adminClient.query<GetCollectionBreadcrumbs.Query>(GET_COLLECTION_BREADCRUMBS, {
- id: 'T_1',
- });
- expect(result.collection!.breadcrumbs[0].name).toBe(ROOT_COLLECTION_NAME);
- });
- describe('createCollection', () => {
- it('creates a root collection', async () => {
- const result = await adminClient.query<CreateCollection.Mutation, CreateCollection.Variables>(
- CREATE_COLLECTION,
- {
- input: {
- assetIds: [assets[0].id, assets[1].id],
- featuredAssetId: assets[1].id,
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('electronics')}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `false`,
- type: 'boolean',
- },
- ],
- },
- ],
- translations: [
- { languageCode: LanguageCode.en, name: 'Electronics', description: '' },
- ],
- },
- },
- );
- electronicsCollection = result.createCollection;
- expect(electronicsCollection).toMatchSnapshot();
- expect(electronicsCollection.parent!.name).toBe(ROOT_COLLECTION_NAME);
- });
- it('creates a nested collection', async () => {
- const result = await adminClient.query<CreateCollection.Mutation, CreateCollection.Variables>(
- CREATE_COLLECTION,
- {
- input: {
- parentId: electronicsCollection.id,
- translations: [{ languageCode: LanguageCode.en, name: 'Computers', description: '' }],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('computers')}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `false`,
- type: 'boolean',
- },
- ],
- },
- ],
- },
- },
- );
- computersCollection = result.createCollection;
- expect(computersCollection.parent!.name).toBe(electronicsCollection.name);
- });
- it('creates a 2nd level nested collection', async () => {
- const result = await adminClient.query<CreateCollection.Mutation, CreateCollection.Variables>(
- CREATE_COLLECTION,
- {
- input: {
- parentId: computersCollection.id,
- translations: [{ languageCode: LanguageCode.en, name: 'Pear', description: '' }],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `false`,
- type: 'boolean',
- },
- ],
- },
- ],
- },
- },
- );
- pearCollection = result.createCollection;
- expect(pearCollection.parent!.name).toBe(computersCollection.name);
- });
- });
- describe('updateCollection', () => {
- it('updates with assets', async () => {
- const { updateCollection } = await adminClient.query<
- UpdateCollection.Mutation,
- UpdateCollection.Variables
- >(UPDATE_COLLECTION, {
- input: {
- id: pearCollection.id,
- assetIds: [assets[1].id, assets[2].id],
- featuredAssetId: assets[1].id,
- translations: [{ languageCode: LanguageCode.en, description: 'Apple stuff ' }],
- },
- });
- expect(updateCollection).toMatchSnapshot();
- });
- it('updating existing assets', async () => {
- const { updateCollection } = await adminClient.query<
- UpdateCollection.Mutation,
- UpdateCollection.Variables
- >(UPDATE_COLLECTION, {
- input: {
- id: pearCollection.id,
- assetIds: [assets[3].id, assets[0].id],
- featuredAssetId: assets[3].id,
- },
- });
- expect(updateCollection.assets.map(a => a.id)).toEqual([assets[3].id, assets[0].id]);
- });
- it('removes all assets', async () => {
- const { updateCollection } = await adminClient.query<
- UpdateCollection.Mutation,
- UpdateCollection.Variables
- >(UPDATE_COLLECTION, {
- input: {
- id: pearCollection.id,
- assetIds: [],
- },
- });
- expect(updateCollection.assets).toEqual([]);
- expect(updateCollection.featuredAsset).toBeNull();
- });
- });
- it('collection query', async () => {
- const result = await adminClient.query<GetCollection.Query, GetCollection.Variables>(GET_COLLECTION, {
- id: computersCollection.id,
- });
- if (!result.collection) {
- fail(`did not return the collection`);
- return;
- }
- expect(result.collection.id).toBe(computersCollection.id);
- });
- it('parent field', async () => {
- const result = await adminClient.query<GetCollection.Query, GetCollection.Variables>(GET_COLLECTION, {
- id: computersCollection.id,
- });
- if (!result.collection) {
- fail(`did not return the collection`);
- return;
- }
- expect(result.collection.parent!.name).toBe('Electronics');
- });
- it('children field', async () => {
- const result = await adminClient.query<GetCollection.Query, GetCollection.Variables>(GET_COLLECTION, {
- id: electronicsCollection.id,
- });
- if (!result.collection) {
- fail(`did not return the collection`);
- return;
- }
- expect(result.collection.children!.length).toBe(1);
- expect(result.collection.children![0].name).toBe('Computers');
- });
- it('breadcrumbs', async () => {
- const result = await adminClient.query<
- GetCollectionBreadcrumbs.Query,
- GetCollectionBreadcrumbs.Variables
- >(GET_COLLECTION_BREADCRUMBS, {
- id: pearCollection.id,
- });
- if (!result.collection) {
- fail(`did not return the collection`);
- return;
- }
- expect(result.collection.breadcrumbs).toEqual([
- { id: 'T_1', name: ROOT_COLLECTION_NAME },
- { id: electronicsCollection.id, name: electronicsCollection.name },
- { id: computersCollection.id, name: computersCollection.name },
- { id: pearCollection.id, name: pearCollection.name },
- ]);
- });
- it('breadcrumbs for root collection', async () => {
- const result = await adminClient.query<
- GetCollectionBreadcrumbs.Query,
- GetCollectionBreadcrumbs.Variables
- >(GET_COLLECTION_BREADCRUMBS, {
- id: 'T_1',
- });
- if (!result.collection) {
- fail(`did not return the collection`);
- return;
- }
- expect(result.collection.breadcrumbs).toEqual([{ id: 'T_1', name: ROOT_COLLECTION_NAME }]);
- });
- it('collections.assets', async () => {
- const { collections } = await adminClient.query<GetCollectionsWithAssets.Query>(gql`
- query GetCollectionsWithAssets {
- collections {
- items {
- assets {
- name
- }
- }
- }
- }
- `);
- expect(collections.items[0].assets).toBeDefined();
- });
- describe('moveCollection', () => {
- it('moves a collection to a new parent', async () => {
- const result = await adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(
- MOVE_COLLECTION,
- {
- input: {
- collectionId: pearCollection.id,
- parentId: electronicsCollection.id,
- index: 0,
- },
- },
- );
- expect(result.moveCollection.parent!.id).toBe(electronicsCollection.id);
- const positions = await getChildrenOf(electronicsCollection.id);
- expect(positions.map(i => i.id)).toEqual([pearCollection.id, computersCollection.id]);
- });
- it('re-evaluates Collection contents on move', async () => {
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, { id: pearCollection.id });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Instant Camera',
- ]);
- });
- it('alters the position in the current parent 1', async () => {
- await adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(MOVE_COLLECTION, {
- input: {
- collectionId: computersCollection.id,
- parentId: electronicsCollection.id,
- index: 0,
- },
- });
- const afterResult = await getChildrenOf(electronicsCollection.id);
- expect(afterResult.map(i => i.id)).toEqual([computersCollection.id, pearCollection.id]);
- });
- it('alters the position in the current parent 2', async () => {
- await adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(MOVE_COLLECTION, {
- input: {
- collectionId: pearCollection.id,
- parentId: electronicsCollection.id,
- index: 0,
- },
- });
- const afterResult = await getChildrenOf(electronicsCollection.id);
- expect(afterResult.map(i => i.id)).toEqual([pearCollection.id, computersCollection.id]);
- });
- it('corrects an out-of-bounds negative index value', async () => {
- await adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(MOVE_COLLECTION, {
- input: {
- collectionId: pearCollection.id,
- parentId: electronicsCollection.id,
- index: -3,
- },
- });
- const afterResult = await getChildrenOf(electronicsCollection.id);
- expect(afterResult.map(i => i.id)).toEqual([pearCollection.id, computersCollection.id]);
- });
- it('corrects an out-of-bounds positive index value', async () => {
- await adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(MOVE_COLLECTION, {
- input: {
- collectionId: pearCollection.id,
- parentId: electronicsCollection.id,
- index: 10,
- },
- });
- const afterResult = await getChildrenOf(electronicsCollection.id);
- expect(afterResult.map(i => i.id)).toEqual([computersCollection.id, pearCollection.id]);
- });
- it(
- 'throws if attempting to move into self',
- assertThrowsWithMessage(
- () =>
- adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(MOVE_COLLECTION, {
- input: {
- collectionId: pearCollection.id,
- parentId: pearCollection.id,
- index: 0,
- },
- }),
- `Cannot move a Collection into itself`,
- ),
- );
- it(
- 'throws if attempting to move into a decendant of self',
- assertThrowsWithMessage(
- () =>
- adminClient.query<MoveCollection.Mutation, MoveCollection.Variables>(MOVE_COLLECTION, {
- input: {
- collectionId: pearCollection.id,
- parentId: pearCollection.id,
- index: 0,
- },
- }),
- `Cannot move a Collection into itself`,
- ),
- );
- async function getChildrenOf(parentId: string): Promise<Array<{ name: string; id: string }>> {
- const result = await adminClient.query<GetCollections.Query>(GET_COLLECTIONS);
- return result.collections.items.filter(i => i.parent!.id === parentId);
- }
- });
- describe('deleteCollection', () => {
- let collectionToDeleteParent: CreateCollection.CreateCollection;
- let collectionToDeleteChild: CreateCollection.CreateCollection;
- let laptopProductId: string;
- beforeAll(async () => {
- const result1 = await adminClient.query<CreateCollection.Mutation, CreateCollection.Variables>(
- CREATE_COLLECTION,
- {
- input: {
- filters: [
- {
- code: variantNameCollectionFilter.code,
- arguments: [
- {
- name: 'operator',
- value: 'contains',
- type: 'string',
- },
- {
- name: 'term',
- value: 'laptop',
- type: 'string',
- },
- ],
- },
- ],
- translations: [
- { languageCode: LanguageCode.en, name: 'Delete Me Parent', description: '' },
- ],
- },
- },
- );
- collectionToDeleteParent = result1.createCollection;
- const result2 = await adminClient.query<CreateCollection.Mutation, CreateCollection.Variables>(
- CREATE_COLLECTION,
- {
- input: {
- filters: [],
- translations: [
- { languageCode: LanguageCode.en, name: 'Delete Me Child', description: '' },
- ],
- parentId: collectionToDeleteParent.id,
- },
- },
- );
- collectionToDeleteChild = result2.createCollection;
- });
- it(
- 'throws for invalid collection id',
- assertThrowsWithMessage(async () => {
- await adminClient.query<DeleteCollection.Mutation, DeleteCollection.Variables>(
- DELETE_COLLECTION,
- {
- id: 'T_999',
- },
- );
- }, "No Collection with the id '999' could be found"),
- );
- it('collection and product related prior to deletion', async () => {
- const { collection } = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: collectionToDeleteParent.id,
- });
- expect(collection!.productVariants.items.map(pick(['name']))).toEqual([
- { name: 'Laptop 13 inch 8GB' },
- { name: 'Laptop 15 inch 8GB' },
- { name: 'Laptop 13 inch 16GB' },
- { name: 'Laptop 15 inch 16GB' },
- ]);
- laptopProductId = collection!.productVariants.items[0].productId;
- const { product } = await adminClient.query<
- GetProductCollections.Query,
- GetProductCollections.Variables
- >(GET_PRODUCT_COLLECTIONS, {
- id: laptopProductId,
- });
- expect(product!.collections).toEqual([
- { id: 'T_3', name: 'Electronics' },
- { id: 'T_4', name: 'Computers' },
- { id: 'T_5', name: 'Pear' },
- { id: 'T_6', name: 'Delete Me Parent' },
- { id: 'T_7', name: 'Delete Me Child' },
- ]);
- });
- it('deleteCollection works', async () => {
- const { deleteCollection } = await adminClient.query<
- DeleteCollection.Mutation,
- DeleteCollection.Variables
- >(DELETE_COLLECTION, {
- id: collectionToDeleteParent.id,
- });
- expect(deleteCollection.result).toBe(DeletionResult.DELETED);
- });
- it('deleted parent collection is null', async () => {
- const { collection } = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- id: collectionToDeleteParent.id,
- },
- );
- expect(collection).toBeNull();
- });
- it('deleted child collection is null', async () => {
- const { collection } = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- id: collectionToDeleteChild.id,
- },
- );
- expect(collection).toBeNull();
- });
- it('product no longer lists collection', async () => {
- const { product } = await adminClient.query<
- GetProductCollections.Query,
- GetProductCollections.Variables
- >(GET_PRODUCT_COLLECTIONS, {
- id: laptopProductId,
- });
- expect(product!.collections).toEqual([
- { id: 'T_3', name: 'Electronics' },
- { id: 'T_4', name: 'Computers' },
- { id: 'T_5', name: 'Pear' },
- ]);
- });
- });
- describe('filters', () => {
- it('Collection with no filters has no productVariants', async () => {
- const result = await adminClient.query<
- CreateCollectionSelectVariants.Mutation,
- CreateCollectionSelectVariants.Variables
- >(CREATE_COLLECTION_SELECT_VARIANTS, {
- input: {
- translations: [{ languageCode: LanguageCode.en, name: 'Empty', description: '' }],
- filters: [],
- } as CreateCollectionInput,
- });
- expect(result.createCollection.productVariants.totalItems).toBe(0);
- });
- describe('facetValue filter', () => {
- it('electronics', async () => {
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: electronicsCollection.id,
- });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Gaming PC i7-8700 240GB SSD',
- 'Gaming PC R7-2700 240GB SSD',
- 'Gaming PC i7-8700 120GB SSD',
- 'Gaming PC R7-2700 120GB SSD',
- 'Hard Drive 1TB',
- 'Hard Drive 2TB',
- 'Hard Drive 3TB',
- 'Hard Drive 4TB',
- 'Hard Drive 6TB',
- 'Clacky Keyboard',
- 'USB Cable',
- 'Instant Camera',
- 'Camera Lens',
- 'Tripod',
- 'SLR Camera',
- ]);
- });
- it('computers', async () => {
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: computersCollection.id,
- });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Gaming PC i7-8700 240GB SSD',
- 'Gaming PC R7-2700 240GB SSD',
- 'Gaming PC i7-8700 120GB SSD',
- 'Gaming PC R7-2700 120GB SSD',
- 'Hard Drive 1TB',
- 'Hard Drive 2TB',
- 'Hard Drive 3TB',
- 'Hard Drive 4TB',
- 'Hard Drive 6TB',
- 'Clacky Keyboard',
- 'USB Cable',
- ]);
- });
- it('photo AND pear', async () => {
- const result = await adminClient.query<
- CreateCollectionSelectVariants.Mutation,
- CreateCollectionSelectVariants.Variables
- >(CREATE_COLLECTION_SELECT_VARIANTS, {
- input: {
- translations: [
- { languageCode: LanguageCode.en, name: 'Photo AND Pear', description: '' },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}", "${getFacetValueId(
- 'photo',
- )}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `false`,
- type: 'boolean',
- },
- ],
- },
- ],
- } as CreateCollectionInput,
- });
- await awaitRunningJobs(adminClient);
- const { collection } = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- id: result.createCollection.id,
- },
- );
- expect(collection!.productVariants.items.map(i => i.name)).toEqual(['Instant Camera']);
- });
- it('photo OR pear', async () => {
- const result = await adminClient.query<
- CreateCollectionSelectVariants.Mutation,
- CreateCollectionSelectVariants.Variables
- >(CREATE_COLLECTION_SELECT_VARIANTS, {
- input: {
- translations: [
- { languageCode: LanguageCode.en, name: 'Photo OR Pear', description: '' },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}", "${getFacetValueId(
- 'photo',
- )}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `true`,
- type: 'boolean',
- },
- ],
- },
- ],
- } as CreateCollectionInput,
- });
- await awaitRunningJobs(adminClient);
- const { collection } = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- id: result.createCollection.id,
- },
- );
- expect(collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Instant Camera',
- 'Camera Lens',
- 'Tripod',
- 'SLR Camera',
- 'Hat',
- ]);
- });
- it('bell OR pear in computers', async () => {
- const result = await adminClient.query<
- CreateCollectionSelectVariants.Mutation,
- CreateCollectionSelectVariants.Variables
- >(CREATE_COLLECTION_SELECT_VARIANTS, {
- input: {
- parentId: computersCollection.id,
- translations: [
- {
- languageCode: LanguageCode.en,
- name: 'Bell OR Pear Computers',
- description: '',
- },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}", "${getFacetValueId('bell')}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `true`,
- type: 'boolean',
- },
- ],
- },
- ],
- } as CreateCollectionInput,
- });
- await awaitRunningJobs(adminClient);
- const { collection } = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- id: result.createCollection.id,
- },
- );
- expect(collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- ]);
- });
- });
- describe('variantName filter', () => {
- async function createVariantNameFilteredCollection(
- operator: string,
- term: string,
- ): Promise<Collection.Fragment> {
- const { createCollection } = await adminClient.query<
- CreateCollection.Mutation,
- CreateCollection.Variables
- >(CREATE_COLLECTION, {
- input: {
- translations: [
- { languageCode: LanguageCode.en, name: `${operator} ${term}`, description: '' },
- ],
- filters: [
- {
- code: variantNameCollectionFilter.code,
- arguments: [
- {
- name: 'operator',
- value: operator,
- type: 'string',
- },
- {
- name: 'term',
- value: term,
- type: 'string',
- },
- ],
- },
- ],
- },
- });
- return createCollection;
- }
- it('contains operator', async () => {
- const collection = await createVariantNameFilteredCollection('contains', 'camera');
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: collection.id,
- });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Instant Camera',
- 'Camera Lens',
- 'SLR Camera',
- ]);
- });
- it('startsWith operator', async () => {
- const collection = await createVariantNameFilteredCollection('startsWith', 'camera');
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: collection.id,
- });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual(['Camera Lens']);
- });
- it('endsWith operator', async () => {
- const collection = await createVariantNameFilteredCollection('endsWith', 'camera');
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: collection.id,
- });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Instant Camera',
- 'SLR Camera',
- ]);
- });
- it('doesNotContain operator', async () => {
- const collection = await createVariantNameFilteredCollection('doesNotContain', 'camera');
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: collection.id,
- });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Gaming PC i7-8700 240GB SSD',
- 'Gaming PC R7-2700 240GB SSD',
- 'Gaming PC i7-8700 120GB SSD',
- 'Gaming PC R7-2700 120GB SSD',
- 'Hard Drive 1TB',
- 'Hard Drive 2TB',
- 'Hard Drive 3TB',
- 'Hard Drive 4TB',
- 'Hard Drive 6TB',
- 'Clacky Keyboard',
- 'USB Cable',
- 'Tripod',
- 'Hat',
- ]);
- });
- });
- describe('re-evaluation of contents on changes', () => {
- let products: GetProductsWithVariantIds.Items[];
- beforeAll(async () => {
- const result = await adminClient.query<GetProductsWithVariantIds.Query>(gql`
- query GetProductsWithVariantIds {
- products {
- items {
- id
- name
- variants {
- id
- }
- }
- }
- }
- `);
- products = result.products.items;
- });
- it('updates contents when Product is updated', async () => {
- await adminClient.query<UpdateProduct.Mutation, UpdateProduct.Variables>(UPDATE_PRODUCT, {
- input: {
- id: products[1].id,
- facetValueIds: [
- getFacetValueId('electronics'),
- getFacetValueId('computers'),
- getFacetValueId('pear'),
- ],
- },
- });
- await awaitRunningJobs(adminClient);
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, { id: pearCollection.id });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Instant Camera',
- ]);
- });
- it('updates contents when ProductVariant is updated', async () => {
- const gamingPcFirstVariant = products.find(p => p.name === 'Gaming PC')!.variants[0];
- await adminClient.query<UpdateProductVariants.Mutation, UpdateProductVariants.Variables>(
- UPDATE_PRODUCT_VARIANTS,
- {
- input: [
- {
- id: gamingPcFirstVariant.id,
- facetValueIds: [getFacetValueId('pear')],
- },
- ],
- },
- );
- await awaitRunningJobs(adminClient);
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, { id: pearCollection.id });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Gaming PC i7-8700 240GB SSD',
- 'Instant Camera',
- ]);
- });
- it('correctly filters when ProductVariant and Product both have matching FacetValue', async () => {
- const gamingPcFirstVariant = products.find(p => p.name === 'Gaming PC')!.variants[0];
- await adminClient.query<UpdateProductVariants.Mutation, UpdateProductVariants.Variables>(
- UPDATE_PRODUCT_VARIANTS,
- {
- input: [
- {
- id: gamingPcFirstVariant.id,
- facetValueIds: [getFacetValueId('electronics'), getFacetValueId('pear')],
- },
- ],
- },
- );
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, { id: pearCollection.id });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Gaming PC i7-8700 240GB SSD',
- 'Instant Camera',
- ]);
- });
- });
- it('filter inheritance of nested collections (issue #158)', async () => {
- const { createCollection: pearElectronics } = await adminClient.query<
- CreateCollectionSelectVariants.Mutation,
- CreateCollectionSelectVariants.Variables
- >(CREATE_COLLECTION_SELECT_VARIANTS, {
- input: {
- parentId: electronicsCollection.id,
- translations: [
- { languageCode: LanguageCode.en, name: 'pear electronics', description: '' },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}"]`,
- type: 'facetValueIds',
- },
- {
- name: 'containsAny',
- value: `false`,
- type: 'boolean',
- },
- ],
- },
- ],
- } as CreateCollectionInput,
- });
- await awaitRunningJobs(adminClient);
- const result = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, { id: pearElectronics.id });
- expect(result.collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Curvy Monitor 24 inch',
- 'Curvy Monitor 27 inch',
- 'Gaming PC i7-8700 240GB SSD',
- 'Instant Camera',
- // no "Hat"
- ]);
- });
- });
- describe('Product collections property', () => {
- it('returns all collections to which the Product belongs', async () => {
- const result = await adminClient.query<
- GetCollectionsForProducts.Query,
- GetCollectionsForProducts.Variables
- >(GET_COLLECTIONS_FOR_PRODUCTS, { term: 'camera' });
- expect(result.products.items[0].collections).toEqual([
- { id: 'T_3', name: 'Electronics' },
- { id: 'T_5', name: 'Pear' },
- { id: 'T_9', name: 'Photo AND Pear' },
- { id: 'T_10', name: 'Photo OR Pear' },
- { id: 'T_12', name: 'contains camera' },
- { id: 'T_14', name: 'endsWith camera' },
- { id: 'T_16', name: 'pear electronics' },
- ]);
- });
- });
- it('collection does not list deleted products', async () => {
- await adminClient.query<DeleteProduct.Mutation, DeleteProduct.Variables>(DELETE_PRODUCT, {
- id: 'T_2', // curvy monitor
- });
- const { collection } = await adminClient.query<
- GetCollectionProducts.Query,
- GetCollectionProducts.Variables
- >(GET_COLLECTION_PRODUCT_VARIANTS, {
- id: pearCollection.id,
- });
- expect(collection!.productVariants.items.map(i => i.name)).toEqual([
- 'Laptop 13 inch 8GB',
- 'Laptop 15 inch 8GB',
- 'Laptop 13 inch 16GB',
- 'Laptop 15 inch 16GB',
- 'Gaming PC i7-8700 240GB SSD',
- 'Instant Camera',
- ]);
- });
- function getFacetValueId(code: string): string {
- const match = facetValues.find(fv => fv.code === code);
- if (!match) {
- throw new Error(`Could not find a FacetValue with the code "${code}"`);
- }
- return match.id;
- }
- });
- export const GET_COLLECTION = gql`
- query GetCollection($id: ID!) {
- collection(id: $id) {
- ...Collection
- productVariants {
- items {
- id
- name
- }
- }
- }
- }
- ${COLLECTION_FRAGMENT}
- `;
- export const MOVE_COLLECTION = gql`
- mutation MoveCollection($input: MoveCollectionInput!) {
- moveCollection(input: $input) {
- ...Collection
- }
- }
- ${COLLECTION_FRAGMENT}
- `;
- const GET_FACET_VALUES = gql`
- query GetFacetValues {
- facets {
- items {
- values {
- ...FacetValue
- }
- }
- }
- }
- ${FACET_VALUE_FRAGMENT}
- `;
- const GET_COLLECTIONS = gql`
- query GetCollections {
- collections {
- items {
- id
- name
- position
- parent {
- id
- name
- }
- }
- }
- }
- `;
- const GET_COLLECTION_PRODUCT_VARIANTS = gql`
- query GetCollectionProducts($id: ID!) {
- collection(id: $id) {
- productVariants {
- items {
- id
- name
- facetValues {
- code
- }
- productId
- }
- }
- }
- }
- `;
- const CREATE_COLLECTION_SELECT_VARIANTS = gql`
- mutation CreateCollectionSelectVariants($input: CreateCollectionInput!) {
- createCollection(input: $input) {
- id
- productVariants {
- items {
- name
- }
- totalItems
- }
- }
- }
- `;
- const GET_COLLECTION_BREADCRUMBS = gql`
- query GetCollectionBreadcrumbs($id: ID!) {
- collection(id: $id) {
- breadcrumbs {
- id
- name
- }
- }
- }
- `;
- const GET_COLLECTIONS_FOR_PRODUCTS = gql`
- query GetCollectionsForProducts($term: String!) {
- products(options: { filter: { name: { contains: $term } } }) {
- items {
- id
- name
- collections {
- id
- name
- }
- }
- }
- }
- `;
- const DELETE_COLLECTION = gql`
- mutation DeleteCollection($id: ID!) {
- deleteCollection(id: $id) {
- result
- message
- }
- }
- `;
- const GET_PRODUCT_COLLECTIONS = gql`
- query GetProductCollections($id: ID!) {
- product(id: $id) {
- id
- collections {
- id
- name
- }
- }
- }
- `;
|