| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475 |
- 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 { afterAll, beforeAll, describe, expect, it } from 'vitest';
- import { initialData } from '../../../e2e-common/e2e-initial-data';
- import { testConfig, TEST_SETUP_TIMEOUT_MS } from '../../../e2e-common/test-config';
- import { 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: 3,
- });
- 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']);
- });
- it('isNull true', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableString: {
- isNull: true,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'F']);
- });
- it('isNull false', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableString: {
- isNull: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', '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('ID filtering', () => {
- it('eq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- eq: 'T_13',
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['D']);
- });
- it('notEq', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- notEq: 'T_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: ['T_10', 'T_15'],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'F']);
- });
- it('in with empty set', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- in: [],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual([]);
- });
- it('notIn', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- notIn: ['T_10', 'T_15'],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'C', 'D', 'E']);
- });
- it('notIn with empty set', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- ownerId: {
- notIn: [],
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'B', 'C', 'D', 'E', 'F']);
- });
- it('isNull true', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableId: {
- isNull: true,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'F']);
- });
- it('isNull false', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableId: {
- isNull: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', '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']);
- });
- it('isNull true', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableBoolean: {
- isNull: true,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'F']);
- });
- it('isNull false', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableBoolean: {
- isNull: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', 'E']);
- });
- });
- 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']);
- });
- it('isNull true', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableNumber: {
- isNull: true,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'F']);
- });
- it('isNull false', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableNumber: {
- isNull: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', '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']);
- });
- it('isNull true', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableDate: {
- isNull: true,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['B', 'D', 'F']);
- });
- it('isNull false', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- nullableDate: {
- isNull: false,
- },
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', 'E']);
- });
- });
- 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('complex boolean logic with _and & _or', () => {
- it('single _and', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- _and: [
- {
- description: {
- contains: 'Lorem',
- },
- active: {
- eq: false,
- },
- },
- ],
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual([]);
- });
- it('single _or', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- _or: [
- {
- description: {
- contains: 'Lorem',
- },
- active: {
- eq: false,
- },
- },
- ],
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', 'E', 'F']);
- });
- it('_or with nested _and', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- _or: [
- {
- description: { contains: 'Lorem' },
- },
- {
- _and: [{ order: { gt: 3 } }, { order: { lt: 5 } }],
- },
- ],
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'E']);
- });
- it('_and with nested _or', async () => {
- const { testEntities } = await adminClient.query(GET_LIST, {
- options: {
- filter: {
- _and: [
- {
- description: { contains: 'e' },
- },
- {
- _or: [{ active: { eq: false } }, { ownerId: { eq: '10' } }],
- },
- ],
- },
- },
- });
- expect(getItemLabels(testEntities.items)).toEqual(['A', 'C', '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);
- });
- });
- describe('customPropertyMap', () => {
- it('filter by custom string field', async () => {
- const { testEntities } = await shopClient.query(GET_LIST_WITH_ORDERS, {
- options: {
- sort: {
- label: SortOrder.ASC,
- },
- filter: {
- customerLastName: { contains: 'zieme' },
- },
- },
- });
- expect(testEntities.items).toEqual([
- {
- id: 'T_1',
- label: 'A',
- name: 'apple',
- orderRelation: {
- customer: {
- firstName: 'Hayden',
- lastName: 'Zieme',
- },
- id: 'T_1',
- },
- },
- {
- id: 'T_4',
- label: 'D',
- name: 'dog',
- orderRelation: {
- customer: {
- firstName: 'Hayden',
- lastName: 'Zieme',
- },
- id: 'T_4',
- },
- },
- ]);
- });
- it('sort by custom string field', async () => {
- const { testEntities } = await shopClient.query(GET_LIST_WITH_ORDERS, {
- options: {
- sort: {
- customerLastName: SortOrder.ASC,
- },
- },
- });
- expect(testEntities.items.map((i: any) => i.orderRelation.customer)).toEqual([
- { firstName: 'Trevor', lastName: 'Donnelly' },
- { firstName: 'Trevor', lastName: 'Donnelly' },
- { firstName: 'Marques', lastName: 'Sawayn' },
- { firstName: 'Marques', lastName: 'Sawayn' },
- { firstName: 'Hayden', lastName: 'Zieme' },
- { firstName: 'Hayden', lastName: 'Zieme' },
- ]);
- });
- });
- describe('relations in customFields', () => {
- it('should resolve relations in customFields successfully', async () => {
- const { testEntities } = await shopClient.query(GET_LIST_WITH_CUSTOM_FIELD_RELATION, {
- options: {
- filter: {
- label: { eq: 'A' },
- },
- },
- });
- expect(testEntities.items).toEqual([
- {
- id: 'T_1',
- label: 'A',
- customFields: {
- relation: [{ id: 'T_1', data: 'A' }],
- },
- },
- ]);
- });
- it('should resolve multiple relations in customFields successfully', async () => {
- const { testEntities } = await shopClient.query(GET_LIST_WITH_MULTIPLE_CUSTOM_FIELD_RELATION, {
- options: {
- filter: {
- label: { eq: 'A' },
- },
- },
- });
- expect(testEntities.items).toEqual([
- {
- id: 'T_1',
- label: 'A',
- customFields: {
- relation: [{ id: 'T_1', data: 'A' }],
- otherRelation: [{ id: 'T_1', data: 'A' }],
- },
- },
- ]);
- });
- });
- });
- 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_LIST_WITH_ORDERS = gql`
- query GetTestEntitiesWithTranslations($options: TestEntityListOptions) {
- testEntities(options: $options) {
- totalItems
- items {
- id
- label
- name
- orderRelation {
- id
- customer {
- firstName
- lastName
- }
- }
- }
- }
- }
- `;
- const GET_ARRAY_LIST = gql`
- query GetTestEntitiesArray($options: TestEntityListOptions) {
- testEntitiesGetMany(options: $options) {
- id
- label
- name
- date
- price
- }
- }
- `;
- const GET_LIST_WITH_CUSTOM_FIELD_RELATION = gql`
- query GetTestWithCustomFieldRelation($options: TestEntityListOptions) {
- testEntities(options: $options) {
- items {
- id
- label
- customFields {
- relation {
- id
- data
- }
- }
- }
- }
- }
- `;
- const GET_LIST_WITH_MULTIPLE_CUSTOM_FIELD_RELATION = gql`
- query GetTestWithMultipleCustomFieldRelation($options: TestEntityListOptions) {
- testEntities(options: $options) {
- items {
- id
- label
- customFields {
- relation {
- id
- data
- }
- otherRelation {
- id
- data
- }
- }
- }
- }
- }
- `;
|