| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526 |
- /* tslint:disable:no-non-null-assertion */
- import { ROOT_COLLECTION_NAME } from '@vendure/common/lib/shared-constants';
- import {
- DefaultJobQueuePlugin,
- facetValueCollectionFilter,
- variantNameCollectionFilter,
- } 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 { testConfig, TEST_SETUP_TIMEOUT_MS } 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,
- GetProductCollectionsWithParent,
- 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';
- import { sortById } from './utils/test-order-utils';
- describe('Collection resolver', () => {
- const { server, adminClient } = createTestEnvironment({
- ...testConfig,
- plugins: [DefaultJobQueuePlugin],
- });
- let assets: GetAssetList.Items[];
- let facetValues: FacetValueFragment[];
- let electronicsCollection: Collection.Fragment;
- let computersCollection: Collection.Fragment;
- let pearCollection: Collection.Fragment;
- beforeAll(async () => {
- await server.init({
- 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')}"]`,
- },
- {
- name: 'containsAny',
- value: `false`,
- },
- ],
- },
- ],
- translations: [
- {
- languageCode: LanguageCode.en,
- name: 'Electronics',
- description: '',
- slug: 'electronics',
- },
- ],
- },
- },
- );
- 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: '',
- slug: 'computers',
- },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('computers')}"]`,
- },
- {
- name: 'containsAny',
- value: `false`,
- },
- ],
- },
- ],
- },
- },
- );
- 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: '', slug: 'pear' },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}"]`,
- },
- {
- name: 'containsAny',
- value: `false`,
- },
- ],
- },
- ],
- },
- },
- );
- pearCollection = result.createCollection;
- expect(pearCollection.parent!.name).toBe(computersCollection.name);
- });
- it('slug is normalized to be url-safe', async () => {
- const { createCollection } = await adminClient.query<
- CreateCollection.Mutation,
- CreateCollection.Variables
- >(CREATE_COLLECTION, {
- input: {
- translations: [
- {
- languageCode: LanguageCode.en,
- name: 'Accessories',
- description: '',
- slug: 'Accessories!',
- },
- {
- languageCode: LanguageCode.de,
- name: 'Zubehör',
- description: '',
- slug: 'Zubehör!',
- },
- ],
- filters: [],
- },
- });
- expect(createCollection.slug).toBe('accessories');
- expect(createCollection.translations.find(t => t.languageCode === LanguageCode.en)?.slug).toBe(
- 'accessories',
- );
- expect(createCollection.translations.find(t => t.languageCode === LanguageCode.de)?.slug).toBe(
- 'zubehor',
- );
- });
- it('create with duplicate slug is renamed to be unique', async () => {
- const { createCollection } = await adminClient.query<
- CreateCollection.Mutation,
- CreateCollection.Variables
- >(CREATE_COLLECTION, {
- input: {
- translations: [
- {
- languageCode: LanguageCode.en,
- name: 'Accessories',
- description: '',
- slug: 'Accessories',
- },
- {
- languageCode: LanguageCode.de,
- name: 'Zubehör',
- description: '',
- slug: 'Zubehör',
- },
- ],
- filters: [],
- },
- });
- expect(createCollection.translations.find(t => t.languageCode === LanguageCode.en)?.slug).toBe(
- 'accessories-2',
- );
- expect(createCollection.translations.find(t => t.languageCode === LanguageCode.de)?.slug).toBe(
- 'zubehor-2',
- );
- });
- });
- 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 ', slug: 'apple-stuff' },
- ],
- },
- });
- await awaitRunningJobs(adminClient);
- expect(updateCollection).toMatchSnapshot();
- pearCollection = updateCollection;
- });
- 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,
- },
- });
- await awaitRunningJobs(adminClient);
- 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: [],
- },
- });
- await awaitRunningJobs(adminClient);
- expect(updateCollection.assets).toEqual([]);
- expect(updateCollection.featuredAsset).toBeNull();
- });
- });
- describe('querying', () => {
- it('collection by id', 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('collection by slug', async () => {
- const result = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- slug: computersCollection.slug,
- },
- );
- if (!result.collection) {
- fail(`did not return the collection`);
- return;
- }
- expect(result.collection.id).toBe(computersCollection.id);
- });
- it(
- 'throws if neither id nor slug provided',
- assertThrowsWithMessage(async () => {
- await adminClient.query<GetCollection.Query, GetCollection.Variables>(GET_COLLECTION, {});
- }, 'Either the Collection id or slug must be provided'),
- );
- it(
- 'throws if id and slug do not refer to the same Product',
- assertThrowsWithMessage(async () => {
- await adminClient.query<GetCollection.Query, GetCollection.Variables>(GET_COLLECTION, {
- id: computersCollection.id,
- slug: pearCollection.slug,
- });
- }, 'The provided id and slug refer to different Collections'),
- );
- 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');
- });
- // Tests fix for https://github.com/vendure-ecommerce/vendure/issues/361
- it('parent field resolved by CollectionEntityResolver', async () => {
- const { product } = await adminClient.query<
- GetProductCollectionsWithParent.Query,
- GetProductCollectionsWithParent.Variables
- >(GET_PRODUCT_COLLECTIONS_WITH_PARENT, {
- id: 'T_1',
- });
- expect(product?.collections.length).toBe(3);
- expect(product?.collections.sort(sortById)).toEqual([
- {
- id: 'T_3',
- name: 'Electronics',
- parent: {
- id: 'T_1',
- name: '__root_collection__',
- },
- },
- {
- id: 'T_4',
- name: 'Computers',
- parent: {
- id: 'T_3',
- name: 'Electronics',
- },
- },
- {
- id: 'T_5',
- name: 'Pear',
- parent: {
- id: 'T_4',
- name: 'Computers',
- },
- },
- ]);
- });
- 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, slug: ROOT_COLLECTION_NAME },
- {
- id: electronicsCollection.id,
- name: electronicsCollection.name,
- slug: electronicsCollection.slug,
- },
- {
- id: computersCollection.id,
- name: computersCollection.name,
- slug: computersCollection.slug,
- },
- { id: pearCollection.id, name: pearCollection.name, slug: pearCollection.slug },
- ]);
- });
- 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, slug: 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();
- });
- // https://github.com/vendure-ecommerce/vendure/issues/642
- it('sorting on Collection.productVariants.price', async () => {
- const { collection } = await adminClient.query<GetCollection.Query, GetCollection.Variables>(
- GET_COLLECTION,
- {
- id: computersCollection.id,
- variantListOptions: {
- sort: {
- price: SortOrder.ASC,
- },
- },
- },
- );
- expect(collection!.productVariants.items.map(i => i.price)).toEqual([
- 3799,
- 5374,
- 6900,
- 7489,
- 7896,
- 9299,
- 13435,
- 14374,
- 16994,
- 93120,
- 94920,
- 108720,
- 109995,
- 129900,
- 139900,
- 219900,
- 229900,
- ]);
- });
- });
- 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 () => {
- 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',
- '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',
- },
- {
- name: 'term',
- value: 'laptop',
- },
- ],
- },
- ],
- translations: [
- {
- languageCode: LanguageCode.en,
- name: 'Delete Me Parent',
- description: '',
- slug: 'delete-me-parent',
- },
- ],
- assetIds: ['T_1'],
- },
- },
- );
- 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: '',
- slug: 'delete-me-child',
- },
- ],
- parentId: collectionToDeleteParent.id,
- assetIds: ['T_2'],
- },
- },
- );
- collectionToDeleteChild = result2.createCollection;
- await awaitRunningJobs(adminClient);
- });
- 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_8', name: 'Delete Me Parent' },
- { id: 'T_9', 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: '', slug: 'empty' },
- ],
- 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: '',
- slug: 'photo-and-pear',
- },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}", "${getFacetValueId(
- 'photo',
- )}"]`,
- },
- {
- name: 'containsAny',
- value: `false`,
- },
- ],
- },
- ],
- } 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: '',
- slug: 'photo-or-pear',
- },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}", "${getFacetValueId(
- 'photo',
- )}"]`,
- },
- {
- name: 'containsAny',
- value: `true`,
- },
- ],
- },
- ],
- } 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: '',
- slug: 'bell-or-pear',
- },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}", "${getFacetValueId('bell')}"]`,
- },
- {
- name: 'containsAny',
- value: `true`,
- },
- ],
- },
- ],
- } 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: '',
- slug: `${operator} ${term}`,
- },
- ],
- filters: [
- {
- code: variantNameCollectionFilter.code,
- arguments: [
- {
- name: 'operator',
- value: operator,
- },
- {
- name: 'term',
- value: term,
- },
- ],
- },
- ],
- },
- });
- await awaitRunningJobs(adminClient);
- 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(options: { sort: { id: ASC } }) {
- items {
- id
- name
- variants {
- id
- name
- }
- }
- }
- }
- `);
- 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 gamingPc240GB = products
- .find(p => p.name === 'Gaming PC')!
- .variants.find(v => v.name.includes('240GB'))!;
- await adminClient.query<UpdateProductVariants.Mutation, UpdateProductVariants.Variables>(
- UPDATE_PRODUCT_VARIANTS,
- {
- input: [
- {
- id: gamingPc240GB.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 gamingPc240GB = products
- .find(p => p.name === 'Gaming PC')!
- .variants.find(v => v.name.includes('240GB'))!;
- await adminClient.query<UpdateProductVariants.Mutation, UpdateProductVariants.Variables>(
- UPDATE_PRODUCT_VARIANTS,
- {
- input: [
- {
- id: gamingPc240GB.id,
- facetValueIds: [getFacetValueId('electronics'), 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('filter inheritance of nested collections (issue #158)', async () => {
- const a = 1;
- 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: '',
- slug: 'pear-electronics',
- },
- ],
- filters: [
- {
- code: facetValueCollectionFilter.code,
- arguments: [
- {
- name: 'facetValueIds',
- value: `["${getFacetValueId('pear')}"]`,
- },
- {
- name: 'containsAny',
- value: `false`,
- },
- ],
- },
- ],
- } 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_11', name: 'Photo AND Pear' },
- { id: 'T_12', name: 'Photo OR Pear' },
- { id: 'T_14', name: 'contains camera' },
- { id: 'T_16', name: 'endsWith camera' },
- { id: 'T_18', 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, $slug: String, $variantListOptions: ProductVariantListOptions) {
- collection(id: $id, slug: $slug) {
- ...Collection
- productVariants(options: $variantListOptions) {
- items {
- id
- name
- price
- }
- }
- }
- }
- ${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(options: { sort: { id: ASC } }) {
- 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
- slug
- }
- }
- }
- `;
- 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
- }
- }
- }
- `;
- const GET_PRODUCT_COLLECTIONS_WITH_PARENT = gql`
- query GetProductCollectionsWithParent($id: ID!) {
- product(id: $id) {
- id
- collections {
- id
- name
- parent {
- id
- name
- }
- }
- }
- }
- `;
|