| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063 |
- import { LogicalOperator } from '@vendure/common/lib/generated-types';
- import { mergeConfig } 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 { ListQueryPlugin } from './fixtures/test-plugins/list-query-plugin';
- import { LanguageCode, SortOrder } from './graphql/generated-e2e-admin-types';
- import { assertThrowsWithMessage } from './utils/assert-throws-with-message';
- import { fixPostgresTimezone } from './utils/fix-pg-timezone';
- fixPostgresTimezone();
- describe('ListQueryBuilder', () => {
- const { server, adminClient, shopClient } = createTestEnvironment(
- mergeConfig(testConfig(), {
- apiOptions: {
- shopListQueryLimit: 10,
- adminListQueryLimit: 30,
- },
- plugins: [ListQueryPlugin],
- }),
- );
- beforeAll(async () => {
- await server.init({
- initialData,
- productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-minimal.csv'),
- customerCount: 1,
- });
- await adminClient.asSuperAdmin();
- }, TEST_SETUP_TIMEOUT_MS);
- afterAll(async () => {
- await server.destroy();
- });
- function getItemLabels(items: any[]): string[] {
- return items.map((x: any) => x.label).sort();
- }
- describe('pagination', () => {
- it('all en', async () => {
- const { testEntities } = await adminClient.query(
- GET_LIST,
- {
- options: {},
- },
- { languageCode: LanguageCode.en },
- );
- expect(testEntities.totalItems).toBe(6);
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'C', 'D', 'E', 'F']);
- expect(testEntities.items.map((i: any) => i.name)).toEqual([
- 'apple',
- 'bike',
- 'cake',
- 'dog',
- 'egg',
- 'baum', // if default en lang does not exist, use next available lang
- ]);
- });
- it('all de', async () => {
- const { testEntities } = await adminClient.query(
- GET_LIST,
- {
- options: {},
- },
- { languageCode: LanguageCode.de },
- );
- expect(testEntities.totalItems).toBe(6);
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'C', 'D', 'E', 'F']);
- expect(testEntities.items.map((i: any) => i.name)).toEqual([
- 'apfel',
- 'fahrrad',
- 'kuchen',
- 'hund',
- 'egg', // falls back to en translation when de doesn't exist
- 'baum',
- ]);
- });
- it('take', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- take: 2,
- },
- });
- expect(testEntities.totalItems).toBe(6);
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B']);
- });
- it('skip', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- skip: 2,
- },
- });
- expect(testEntities.totalItems).toBe(6);
- expect(getItemLabels(testEntities.items)).toEqual(['C', 'D', 'E', 'F']);
- });
- it('skip negative is ignored', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- skip: -1,
- },
- });
- expect(testEntities.totalItems).toBe(6);
- expect(testEntities.items.length).toBe(6);
- });
- it('take zero is ignored', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- take: 0,
- },
- });
- expect(testEntities.totalItems).toBe(6);
- expect(testEntities.items.length).toBe(6);
- });
- it('take negative is ignored', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- take: -1,
- },
- });
- expect(testEntities.totalItems).toBe(6);
- expect(testEntities.items.length).toBe(6);
- });
- it(
- 'take beyond adminListQueryLimit',
- assertThrowsWithMessage(async () => {
- await adminClient.query(GET_LIST, {
- options: {
- take: 50,
- },
- });
- }, 'Cannot take more than 30 results from a list query'),
- );
- it(
- 'take beyond shopListQueryLimit',
- assertThrowsWithMessage(async () => {
- await shopClient.query(GET_LIST, {
- options: {
- take: 50,
- },
- });
- }, 'Cannot take more than 10 results from a list query'),
- );
- });
- describe('string filtering', () => {
- it('eq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- label: {
- eq: 'B',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B']);
- });
- it('notEq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- label: {
- notEq: 'B',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', 'D', 'E', 'F']);
- });
- it('contains', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- contains: 'adip',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['C']);
- });
- it('notContains', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- notContains: 'te',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'E', 'F']);
- });
- it('in', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- label: {
- in: ['A', 'C'],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C']);
- });
- it('notIn', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- label: {
- notIn: ['A', 'C'],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'E', 'F']);
- });
- describe('regex', () => {
- it('simple substring', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: 'or',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'D']);
- });
- it('start of string', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: '^in',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['E']);
- });
- it('end of string', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: 'or$',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['D']);
- });
- it('alternation', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: 'dolor|tempor',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D']);
- });
- it('complex', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: '(dolor|tempor)|inc[i]?d[^a]d.*nt',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'E']);
- });
- });
- });
- describe('ID filtering', () => {
- it('eq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- eq: '13',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['D']);
- });
- it('notEq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- notEq: '13',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'C', 'E', 'F']);
- });
- it('in', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- in: ['10', '15'],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'F']);
- });
- it('notIn', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- notIn: ['10', '15'],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'C', 'D', 'E']);
- });
- describe('regex', () => {
- it('simple substring', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: 'or',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'D']);
- });
- it('start of string', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: '^in',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['E']);
- });
- it('end of string', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: 'or$',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['D']);
- });
- it('alternation', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: 'dolor|tempor',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D']);
- });
- it('complex', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- regex: '(dolor|tempor)|inc[i]?d[^a]d.*nt',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'E']);
- });
- });
- });
- describe('boolean filtering', () => {
- it('eq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- active: {
- eq: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['C', 'E', 'F']);
- });
- });
- describe('number filtering', () => {
- it('eq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- order: {
- eq: 1,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B']);
- });
- it('lt', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- order: {
- lt: 1,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A']);
- });
- it('lte', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- order: {
- lte: 1,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B']);
- });
- it('gt', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- order: {
- gt: 1,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['C', 'D', 'E', 'F']);
- });
- it('gte', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- order: {
- gte: 1,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'C', 'D', 'E', 'F']);
- });
- it('between', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- order: {
- between: {
- start: 2,
- end: 4,
- },
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['C', 'D', 'E']);
- });
- });
- describe('date filtering', () => {
- it('before', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- date: {
- before: '2020-01-20T10:00:00.000Z',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B']);
- });
- it('before on same date', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- date: {
- before: '2020-01-15T17:00:00.000Z',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B']);
- });
- it('after', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- date: {
- after: '2020-01-20T10:00:00.000Z',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['C', 'D', 'E', 'F']);
- });
- it('after on same date', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- date: {
- after: '2020-01-25T09:00:00.000Z',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['C', 'D', 'E', 'F']);
- });
- it('between', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- date: {
- between: {
- start: '2020-01-10T10:00:00.000Z',
- end: '2020-01-20T10:00:00.000Z',
- },
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B']);
- });
- });
- describe('multiple filters with filterOperator', () => {
- it('default AND', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- contains: 'Lorem',
- },
- active: {
- eq: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual([]);
- });
- it('explicit AND', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- contains: 'Lorem',
- },
- active: {
- eq: false,
- },
- },
- filterOperator: LogicalOperator.AND,
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual([]);
- });
- it('explicit OR', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- contains: 'Lorem',
- },
- active: {
- eq: false,
- },
- },
- filterOperator: LogicalOperator.OR,
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', 'E', 'F']);
- });
- it('explicit OR with 3 filters', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- description: {
- contains: 'eiusmod',
- },
- active: {
- eq: false,
- },
- order: {
- lt: 3,
- },
- },
- filterOperator: LogicalOperator.OR,
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'C', 'D', 'E', 'F']);
- });
- it('explicit OR with empty filters object', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {},
- filterOperator: LogicalOperator.OR,
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'C', 'D', 'E', 'F']);
- });
- });
- describe('sorting', () => {
- it('sort by string', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- label: SortOrder.DESC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.label)).toEqual(['F', 'E', 'D', 'C', 'B', 'A']);
- });
- it('sort by number', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- order: SortOrder.DESC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.label)).toEqual(['F', 'E', 'D', 'C', 'B', 'A']);
- });
- it('sort by date', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- date: SortOrder.DESC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.label)).toEqual(['F', 'E', 'D', 'C', 'B', 'A']);
- });
- it('sort by ID', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- id: SortOrder.DESC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.label)).toEqual(['F', 'E', 'D', 'C', 'B', 'A']);
- });
- it('sort by translated field en', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.name)).toEqual([
- 'apple',
- 'baum', // falling back to de here
- 'bike',
- 'cake',
- 'dog',
- 'egg',
- ]);
- });
- it('sort by translated field de', async () => {
- const { testEntities } = await adminClient.query(
- GET_LIST,
- {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- },
- },
- { languageCode: LanguageCode.de },
- );
- expect(testEntities.items.map((x: any) => x.name)).toEqual([
- 'apfel',
- 'baum',
- 'egg',
- 'fahrrad',
- 'hund',
- 'kuchen',
- ]);
- });
- it('sort by translated field en with take', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- take: 4,
- },
- });
- expect(testEntities.items.map((x: any) => x.name)).toEqual(['apple', 'baum', 'bike', 'cake']);
- });
- it('sort by translated field de with take', async () => {
- const { testEntities } = await adminClient.query(
- GET_LIST,
- {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- take: 4,
- },
- },
- { languageCode: LanguageCode.de },
- );
- expect(testEntities.items.map((x: any) => x.name)).toEqual(['apfel', 'baum', 'egg', 'fahrrad']);
- });
- });
- describe('calculated fields', () => {
- it('filter by simple calculated property', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- descriptionLength: {
- lt: 12,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B']);
- });
- it('filter by calculated property with join', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- price: {
- lt: 14,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'E']);
- });
- it('sort by simple calculated property', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- descriptionLength: SortOrder.ASC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.label)).toEqual(['B', 'A', 'E', 'D', 'C', 'F']);
- });
- it('sort by calculated property with join', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- price: SortOrder.ASC,
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.label)).toEqual(['B', 'A', 'E', 'D', 'C', 'F']);
- });
- });
- describe('multiple clauses', () => {
- it('sort by translated field en & filter', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- filter: {
- order: {
- gte: 1,
- },
- },
- },
- });
- expect(testEntities.items.map((x: any) => x.name)).toEqual([
- 'baum',
- 'bike',
- 'cake',
- 'dog',
- 'egg',
- ]);
- });
- it('sort by translated field de & filter', async () => {
- const { testEntities } = await adminClient.query(
- GET_LIST,
- {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- filter: {
- order: {
- gte: 1,
- },
- },
- },
- },
- { languageCode: LanguageCode.de },
- );
- expect(testEntities.items.map((x: any) => x.name)).toEqual([
- 'baum',
- 'egg',
- 'fahrrad',
- 'hund',
- 'kuchen',
- ]);
- });
- it('sort by translated field de & filter & pagination', async () => {
- const { testEntities } = await adminClient.query(
- GET_LIST,
- {
- options: {
- sort: {
- name: SortOrder.ASC,
- },
- filter: {
- order: {
- gte: 1,
- },
- },
- take: 2,
- skip: 1,
- },
- },
- { languageCode: LanguageCode.de },
- );
- expect(testEntities.items.map((x: any) => x.name)).toEqual(['egg', 'fahrrad']);
- });
- });
- // https://github.com/vendure-ecommerce/vendure/issues/1586
- it('using the getMany() of the resulting QueryBuilder', async () => {
- const { testEntitiesGetMany } = await adminClient.query(GET_ARRAY_LIST, {});
- expect(testEntitiesGetMany.sort((a: any, b: any) => a.id - b.id).map((x: any) => x.price)).toEqual([
- 11, 9, 22, 14, 13, 33,
- ]);
- });
- // https://github.com/vendure-ecommerce/vendure/issues/1611
- describe('translations handling', () => {
- const allTranslations = [
- [
- { languageCode: LanguageCode.en, name: 'apple' },
- { languageCode: LanguageCode.de, name: 'apfel' },
- ],
- [
- { languageCode: LanguageCode.en, name: 'bike' },
- { languageCode: LanguageCode.de, name: 'fahrrad' },
- ],
- ];
- function getTestEntityTranslations(testEntities: { items: any[] }) {
- // Explicitly sort the order of the translations as it was being non-deterministic on
- // the mysql CI tests.
- return testEntities.items.map((e: any) =>
- e.translations.sort((a: any, b: any) => (a.languageCode < b.languageCode ? 1 : -1)),
- );
- }
- it('returns all translations with default languageCode', async () => {
- const { testEntities } = await shopClient.query(GET_LIST_WITH_TRANSLATIONS, {
- options: {
- take: 2,
- sort: {
- order: SortOrder.ASC,
- },
- },
- });
- const testEntityTranslations = getTestEntityTranslations(testEntities);
- expect(testEntities.items.map((e: any) => e.name)).toEqual(['apple', 'bike']);
- expect(testEntityTranslations).toEqual(allTranslations);
- });
- it('returns all translations with non-default languageCode', async () => {
- const { testEntities } = await shopClient.query(
- GET_LIST_WITH_TRANSLATIONS,
- {
- options: {
- take: 2,
- sort: {
- order: SortOrder.ASC,
- },
- },
- },
- { languageCode: LanguageCode.de },
- );
- const testEntityTranslations = getTestEntityTranslations(testEntities);
- expect(testEntities.items.map((e: any) => e.name)).toEqual(['apfel', 'fahrrad']);
- expect(testEntityTranslations).toEqual(allTranslations);
- });
- });
- });
- const GET_LIST = gql`
- query GetTestEntities($options: TestEntityListOptions) {
- testEntities(options: $options) {
- totalItems
- items {
- id
- label
- name
- date
- }
- }
- }
- `;
- const GET_LIST_WITH_TRANSLATIONS = gql`
- query GetTestEntitiesWithTranslations($options: TestEntityListOptions) {
- testEntities(options: $options) {
- totalItems
- items {
- id
- label
- name
- date
- translations {
- languageCode
- name
- }
- }
- }
- }
- `;
- const GET_ARRAY_LIST = gql`
- query GetTestEntitiesArray($options: TestEntityListOptions) {
- testEntitiesGetMany(options: $options) {
- id
- label
- name
- date
- price
- }
- }
- `;
|