From b8eb008dd5927fb736e56699637f5f8549965eae Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 6 Dec 2023 18:20:54 +0100 Subject: refactor(hooks): replace useGithubApi with useGithubRepoMeta * use GraphQL API instead of REST (the inconvenient however is that we now need an authorization token...) * move fetcher in services * add tests * mock response using MSW --- .../handlers/repositories/repository.handler.ts | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/msw/handlers/repositories/repository.handler.ts (limited to 'tests/msw/handlers/repositories/repository.handler.ts') diff --git a/tests/msw/handlers/repositories/repository.handler.ts b/tests/msw/handlers/repositories/repository.handler.ts new file mode 100644 index 0000000..2c459c1 --- /dev/null +++ b/tests/msw/handlers/repositories/repository.handler.ts @@ -0,0 +1,32 @@ +import { type ExecutionResult, graphql } from 'graphql'; +import { HttpResponse } from 'msw'; +import type { + FetchGithubRepoMetaInput, + GithubRepositoryResponse, +} from '../../../../src/services/github'; +import { githubRepos } from '../../../fixtures'; +import { githubAPI } from '../../instances'; +import { githubSchema } from '../../schema'; + +export const repositoryHandler = githubAPI.query< + GithubRepositoryResponse, + FetchGithubRepoMetaInput +>('GithubRepository', async ({ query, variables }) => { + const pageParams = new URLSearchParams(window.location.search); + const isError = pageParams.get('error') === 'true'; + + if (isError) return HttpResponse.json({ data: { repository: null } }); + + const { data, errors } = (await graphql({ + schema: githubSchema, + source: query, + variableValues: variables, + rootValue: { + repository: githubRepos.find( + (repo) => repo.owner === variables.owner && repo.name === variables.name + ), + }, + })) as ExecutionResult; + + return HttpResponse.json({ data, errors }); +}); -- cgit v1.2.3