Files
remark42/frontend/packages/api/tests/lib/fetcher.test.ts
T
Dmitry Verkhoturov f5ccfaa0e1 Update frontend dependencies to latest, bump pnpm to 10, clear all npm audit alerts
pnpm 8.15.9 -> 10.10.0 (packageManager + lockfile regenerated to v9). Frontend
CI (ci-frontend.yml, ci-frontend-api.yml, release.yml) and the production
Dockerfile bumped from node 16 + pnpm 8 to node 20 + pnpm 10 (pnpm 10 requires
node 18+). pnpm audit: no known vulnerabilities (was 63 alerts).

packages/api: bumped to latest including the major test stack - vitest 4, jsdom
29, @vitest/coverage-v8 4, @typescript-eslint 8.62, typescript 5.9, prettier
3.9, @types/node 26, and msw 1 -> 2. Migrated tests/test-utils.ts to the msw 2
http/HttpResponse API (capturing a compatible request shape) and made test base
URLs absolute so node 20's native fetch is intercepted; added the jsdom base
URL. type-check:api, lint:api and coverage:api (45 tests) all pass.

apps/remark42: safe in-major bumps (webpack 5.108, postcss, mini-css-extract,
html-webpack-plugin, ts-loader, webpack-dev-server 5.2.5, core-js, clsx 2,
lodash-es 4.18, dotenv 17, @types/*). Transitive vulns patched via
pnpm.overrides. type-check, lint, build, jest coverage (299 tests) and
translations all pass.

pnpm 10's stricter layout required a few pins to keep the app's preact-compat
setup compiling: preact 10.6.2 (override), react-intl 6.0.5 and
@testing-library/preact 3.2.2 (newer types break the build), tsconfig paths for
preact, @types/minimatch 5.1.2 (6.x is an empty stub) and cheerio 1.0.0-rc.12
(1.2 is ESM and breaks jest 28). Held: react/react-dom (preact compat alias),
babel 7, eslint 8, stylelint 14, jest 28, typescript 4.7 (app),
redux/react-redux - majors that change the bundle or need a config migration.

Build output verified against a clean master build: apps/remark42 output is
functionally identical (the only diffs are webpack module-id numbering and
css-module class tokens from the webpack/css-loader bump; all HTML, CSS values
and translations byte-identical).
2026-06-30 19:47:25 +01:00

118 lines
3.7 KiB
TypeScript

import { beforeEach, describe, expect } from 'vitest'
import { mockEndpoint } from '../test-utils'
import { JWT_HEADER, XSRF_COOKIE, XSRF_HEADER } from '../../consts'
import { Client, createFetcher } from '../../lib/fetcher'
interface Context {
client: Client
}
describe<Context>('Fetcher', (fetcher) => {
beforeEach<Context>((ctx) => {
ctx.client = createFetcher('remark42', 'http://localhost')
})
fetcher('get', async ({ client }) => {
const ref = mockEndpoint('/test')
await client.get('/test')
expect(ref.req.method).toBe('GET')
})
fetcher('post', async ({ client }) => {
const ref = mockEndpoint('/test', { method: 'post' })
await client.post('/test')
expect(ref.req.method).toBe('POST')
})
fetcher('put', async ({ client }) => {
const ref = mockEndpoint('/test', { method: 'put' })
await client.put('/test')
expect(ref.req.method).toBe('PUT')
})
fetcher('delete', async ({ client }) => {
const ref = mockEndpoint('/test', { method: 'delete' })
await client.delete('/test')
expect(ref.req.method).toBe('DELETE')
})
fetcher('should send json', async ({ client }) => {
const data = { name: 'test' }
const ref = mockEndpoint('/test', { method: 'post', body: data })
await expect(client.post('/test', {}, data)).resolves.toStrictEqual(data)
await expect(ref.req.json()).resolves.toStrictEqual(data)
expect(ref.req.headers.get('Content-Type')).toBe('application/json')
})
fetcher('should send text', async ({ client }) => {
const data = 'text'
const ref = mockEndpoint('/test', { method: 'post', body: data })
await expect(client.post('/test', {}, data)).resolves.toBe(data)
await expect(ref.req.text()).resolves.toBe(data)
expect(ref.req.headers.get('Content-Type')).toMatch('text/plain')
})
fetcher('should send query', async ({ client }) => {
const ref = mockEndpoint('/test')
await expect(client.get('/test', { x: 1, p: 2 })).resolves.toBe('')
expect(ref.req.url.searchParams.get('x')).toBe('1')
expect(ref.req.url.searchParams.get('p')).toBe('2')
})
fetcher('should sort query params', async ({ client }) => {
const ref = mockEndpoint('/test')
await expect(client.get('/test', { x: 1, p: 2 })).resolves.toBe('')
expect(ref.req.url.search).toBe('?p=2&site=remark42&x=1')
})
fetcher(
'should set active token and then clean it on unauthorized response',
async ({ client }) => {
let ref = mockEndpoint('/user', { headers: { [JWT_HEADER]: 'token' } })
// token should be saved
await client.get('/user')
// the first call should be without token
expect(ref.req.headers.get(JWT_HEADER)).toBe(null)
// the second call should be with token
await client.get('/user')
// check if the second call was with token
expect(ref.req.headers.get(JWT_HEADER)).toBe('token')
// unauthorized response should clean token
ref = mockEndpoint('/user', { status: 401 })
// the third call should be with token but token should be cleaned after it
await expect(client.get('/user')).rejects.toBe('Unauthorized')
// the fourth call should be without token
await expect(client.get('/user')).rejects.toBe('Unauthorized')
// check if the fourth call was with token
expect(ref.req.headers.get(JWT_HEADER)).toBe(null)
}
)
fetcher('should add XSRF header if we have it in cookies', async ({ client }) => {
const ref = mockEndpoint('/user')
Object.defineProperty(document, 'cookie', {
writable: true,
value: `${XSRF_COOKIE}=token`,
})
await client.get('/user')
expect(ref.req.headers.get(XSRF_HEADER)).toBe('token')
})
fetcher('should throw error on api response with status code 400', async ({ client }) => {
mockEndpoint('/user', { status: 400 })
await expect(client.get('/user')).rejects.toBe('')
})
})