From 29a1dec4de0aa7ba64ef068a83b1b8589fbc3ad0 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 28 Nov 2023 17:49:26 +0100 Subject: fix(services,types): make queries and types coherent for Topic * some nodes was missing in topicQuery * a node was mispelled in topicsListQuery * add tests for all topics fetchers --- tests/msw/handlers/topics/topics-slugs.handler.ts | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/msw/handlers/topics/topics-slugs.handler.ts (limited to 'tests/msw/handlers/topics/topics-slugs.handler.ts') diff --git a/tests/msw/handlers/topics/topics-slugs.handler.ts b/tests/msw/handlers/topics/topics-slugs.handler.ts new file mode 100644 index 0000000..960e411 --- /dev/null +++ b/tests/msw/handlers/topics/topics-slugs.handler.ts @@ -0,0 +1,26 @@ +import { type ExecutionResult, graphql as executeGraphql } from 'graphql'; +import { HttpResponse, graphql } from 'msw'; +import type { TopicsSlugsResponse } from '../../../../src/services/graphql'; +import { wpTopicsFixture } from '../../../fixtures'; +import { schema } from '../../schema'; + +export const topicsSlugsHandler = graphql.query< + TopicsSlugsResponse, + Record<'first', number> +>('TopicsSlugs', async ({ query, variables }) => { + const pageParams = new URLSearchParams(window.location.search); + const isError = pageParams.get('error') === 'true'; + + if (isError) return HttpResponse.json({ data: { topics: null } }); + + const { data, errors } = (await executeGraphql({ + schema, + source: query, + variableValues: variables, + rootValue: { + topics: { nodes: wpTopicsFixture }, + }, + })) as ExecutionResult; + + return HttpResponse.json({ data, errors }); +}); -- cgit v1.2.3