From f564d181bc428e25a02bf1d98c4449a6b3eb8e9e Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 28 Nov 2023 16:18:03 +0100 Subject: fix(services,types): make coherent Thematic type and query * some nodes was queried but missing in the Thematic type and vice versa, it is now fixed * add tests for all thematics fetchers --- .../handlers/thematics/thematics-list.handler.ts | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 tests/msw/handlers/thematics/thematics-list.handler.ts (limited to 'tests/msw/handlers/thematics/thematics-list.handler.ts') diff --git a/tests/msw/handlers/thematics/thematics-list.handler.ts b/tests/msw/handlers/thematics/thematics-list.handler.ts new file mode 100644 index 0000000..f206247 --- /dev/null +++ b/tests/msw/handlers/thematics/thematics-list.handler.ts @@ -0,0 +1,44 @@ +import { type ExecutionResult, graphql as executeGraphql } from 'graphql'; +import { HttpResponse, graphql } from 'msw'; +import type { + FetchThematicsListInput, + ThematicsListResponse, +} from '../../../../src/services/graphql'; +import { wpThematicsFixture } from '../../../fixtures'; +import { getConnection } from '../../../utils/graphql'; +import { schema } from '../../schema'; + +export const thematicsListHandler = graphql.query< + ThematicsListResponse, + FetchThematicsListInput +>('ThematicsList', async ({ query, variables }) => { + const pageParams = new URLSearchParams(window.location.search); + const isError = pageParams.get('error') === 'true'; + + if (isError) return HttpResponse.json({ data: { thematics: null } }); + + const { data, errors } = (await executeGraphql({ + schema, + source: query, + variableValues: variables, + rootValue: { + thematics({ after, first, where }: typeof variables) { + const { search, title } = where ?? {}; + const filteredThematicsByTitle = title + ? wpThematicsFixture.filter((thematic) => + thematic.title.includes(title) + ) + : wpThematicsFixture; + const filteredThematics = search + ? filteredThematicsByTitle.filter((thematic) => + thematic.title.includes(search) + ) + : filteredThematicsByTitle; + + return getConnection({ after, data: filteredThematics, first }); + }, + }, + })) as ExecutionResult; + + return HttpResponse.json({ data, errors }); +}); -- cgit v1.2.3