aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/handlers/topics
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-11-28 17:49:26 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-28 18:04:24 +0100
commit29a1dec4de0aa7ba64ef068a83b1b8589fbc3ad0 (patch)
tree8db871542e878e9fdf589bccd1be7b5ed1378f72 /tests/msw/handlers/topics
parentf564d181bc428e25a02bf1d98c4449a6b3eb8e9e (diff)
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
Diffstat (limited to 'tests/msw/handlers/topics')
-rw-r--r--tests/msw/handlers/topics/index.ts11
-rw-r--r--tests/msw/handlers/topics/topic.handler.ts21
-rw-r--r--tests/msw/handlers/topics/topics-count.handler.ts43
-rw-r--r--tests/msw/handlers/topics/topics-list.handler.ts42
-rw-r--r--tests/msw/handlers/topics/topics-slugs.handler.ts26
5 files changed, 143 insertions, 0 deletions
diff --git a/tests/msw/handlers/topics/index.ts b/tests/msw/handlers/topics/index.ts
new file mode 100644
index 0000000..e29694b
--- /dev/null
+++ b/tests/msw/handlers/topics/index.ts
@@ -0,0 +1,11 @@
+import { topicHandler } from './topic.handler';
+import { topicsCountHandler } from './topics-count.handler';
+import { topicsListHandler } from './topics-list.handler';
+import { topicsSlugsHandler } from './topics-slugs.handler';
+
+export const topicsHandlers = [
+ topicHandler,
+ topicsCountHandler,
+ topicsListHandler,
+ topicsSlugsHandler,
+];
diff --git a/tests/msw/handlers/topics/topic.handler.ts b/tests/msw/handlers/topics/topic.handler.ts
new file mode 100644
index 0000000..5df00ea
--- /dev/null
+++ b/tests/msw/handlers/topics/topic.handler.ts
@@ -0,0 +1,21 @@
+import { type ExecutionResult, graphql as executeGraphql } from 'graphql';
+import { HttpResponse, graphql } from 'msw';
+import type { TopicResponse } from '../../../../src/services/graphql';
+import { wpTopicsFixture } from '../../../fixtures';
+import { schema } from '../../schema';
+
+export const topicHandler = graphql.query<
+ TopicResponse,
+ Record<'slug', string>
+>('Topic', async ({ query, variables }) => {
+ const { data, errors } = (await executeGraphql({
+ schema,
+ source: query,
+ variableValues: variables,
+ rootValue: {
+ topic: wpTopicsFixture.find((wpTopic) => wpTopic.slug === variables.slug),
+ },
+ })) as ExecutionResult<TopicResponse>;
+
+ return HttpResponse.json({ data, errors });
+});
diff --git a/tests/msw/handlers/topics/topics-count.handler.ts b/tests/msw/handlers/topics/topics-count.handler.ts
new file mode 100644
index 0000000..7e3dab9
--- /dev/null
+++ b/tests/msw/handlers/topics/topics-count.handler.ts
@@ -0,0 +1,43 @@
+import { type ExecutionResult, graphql as executeGraphql } from 'graphql';
+import { HttpResponse, graphql } from 'msw';
+import type { TopicsCountResponse } from '../../../../src/services/graphql';
+import type { GraphQLPostWhere } from '../../../../src/types';
+import { wpTopicsFixture } from '../../../fixtures';
+import { getConnection } from '../../../utils/graphql';
+import { schema } from '../../schema';
+
+export const topicsCountHandler = graphql.query<
+ TopicsCountResponse,
+ GraphQLPostWhere
+>('TopicsCount', 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({ search, title }: typeof variables) {
+ const filteredTopicsByTitle = title
+ ? wpTopicsFixture.filter((topic) => topic.title.includes(title))
+ : wpTopicsFixture;
+ const filteredTopics = search
+ ? filteredTopicsByTitle.filter((topic) =>
+ topic.title.includes(search)
+ )
+ : filteredTopicsByTitle;
+
+ return getConnection({
+ after: null,
+ data: filteredTopics,
+ first: undefined,
+ });
+ },
+ },
+ })) as ExecutionResult<TopicsCountResponse>;
+
+ return HttpResponse.json({ data, errors });
+});
diff --git a/tests/msw/handlers/topics/topics-list.handler.ts b/tests/msw/handlers/topics/topics-list.handler.ts
new file mode 100644
index 0000000..5e3e31a
--- /dev/null
+++ b/tests/msw/handlers/topics/topics-list.handler.ts
@@ -0,0 +1,42 @@
+import { type ExecutionResult, graphql as executeGraphql } from 'graphql';
+import { HttpResponse, graphql } from 'msw';
+import type {
+ FetchTopicsListInput,
+ TopicsListResponse,
+} from '../../../../src/services/graphql';
+import { wpTopicsFixture } from '../../../fixtures';
+import { getConnection } from '../../../utils/graphql';
+import { schema } from '../../schema';
+
+export const topicsListHandler = graphql.query<
+ TopicsListResponse,
+ FetchTopicsListInput
+>('TopicsList', 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({ after, first, where }: typeof variables) {
+ const { search, title } = where ?? {};
+ const filteredTopicsByTitle = title
+ ? wpTopicsFixture.filter((topic) => topic.title.includes(title))
+ : wpTopicsFixture;
+ const filteredTopics = search
+ ? filteredTopicsByTitle.filter((topic) =>
+ topic.title.includes(search)
+ )
+ : filteredTopicsByTitle;
+
+ return getConnection({ after, data: filteredTopics, first });
+ },
+ },
+ })) as ExecutionResult<TopicsListResponse>;
+
+ return HttpResponse.json({ data, errors });
+});
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<TopicsSlugsResponse>;
+
+ return HttpResponse.json({ data, errors });
+});