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 --- .../fetchers/topics/fetch-topics-list.test.ts | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/services/graphql/fetchers/topics/fetch-topics-list.test.ts (limited to 'src/services/graphql/fetchers/topics/fetch-topics-list.test.ts') diff --git a/src/services/graphql/fetchers/topics/fetch-topics-list.test.ts b/src/services/graphql/fetchers/topics/fetch-topics-list.test.ts new file mode 100644 index 0000000..b841974 --- /dev/null +++ b/src/services/graphql/fetchers/topics/fetch-topics-list.test.ts @@ -0,0 +1,26 @@ +import { afterEach, describe, expect, it } from '@jest/globals'; +import { wpTopicsFixture } from '../../../../../tests/fixtures'; +import { fetchTopicsList } from './fetch-topics-list'; + +describe('fetch-topics-list', () => { + afterEach(() => { + window.history.replaceState({}, '', '/'); + }); + + it('returns the WordPress topics using GraphQL', async () => { + const result = await fetchTopicsList({}); + + expect.assertions(1); + + expect(result.pageInfo.total).toBe(wpTopicsFixture.length); + }); + + it('rejects with an error when no topics are found', async () => { + window.history.replaceState({}, '', '/?error=true'); + expect.assertions(1); + + await expect(async () => + fetchTopicsList({ where: { title: 'inexistent-title' } }) + ).rejects.toEqual(new Error('No topics found.')); + }); +}); -- cgit v1.2.3