Files
remark42/frontend/packages/api/tests/clients/admin.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

106 lines
3.6 KiB
TypeScript

import { beforeEach, describe, expect } from 'vitest'
import { mockEndpoint } from '../test-utils'
import { BlockTTL, createAdminClient } from '../../clients/admin'
interface Context {
client: ReturnType<typeof createAdminClient>
}
describe<Context>('Admin Client', (adminClient) => {
beforeEach<Context>((ctx) => {
ctx.client = createAdminClient({ siteId: 'mysite', baseUrl: 'http://localhost/remark42' })
})
adminClient('should return list of blocked users', async ({ client }) => {
const data = [{ id: 1 }, { id: 2 }]
mockEndpoint('/remark42/api/v1/blocked', { body: data })
await expect(client.getBlockedUsers()).resolves.toEqual(data)
})
const ttlCases: [BlockTTL, string][] = [
['permanently', '0'],
['1440m', '1440m'],
['43200m', '43200m'],
]
ttlCases.forEach(([ttl, expected]) => {
adminClient(`should block user with ttl: ${ttl}`, async ({ client }) => {
const data = { block: true, site_id: 'remark42', user_id: '1' }
const ref = mockEndpoint('/remark42/api/v1/user/1', { method: 'put', body: data })
await expect(client.blockUser('1', ttl)).resolves.toEqual(data)
expect(ref.req.url.searchParams.get('ttl')).toBe(expected)
})
})
adminClient('should unblock user', async ({ client }) => {
const data = { block: false, site_id: 'remark42', user_id: '1' }
const ref = mockEndpoint('/remark42/api/v1/user/1', { method: 'put', body: data })
await expect(client.unblockUser('1')).resolves.toEqual(data)
expect(ref.req.url.searchParams.get('block')).toBe('0')
})
adminClient('should mark user as verified', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/verify/1', { method: 'put' })
await client.verifyUser('1')
expect(ref.req.url.searchParams.get('verified')).toBe('1')
})
adminClient('should mark user as unverified', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/verify/1', { method: 'put' })
await client.unverifyUser('1')
expect(ref.req.url.searchParams.get('verified')).toBe('0')
})
adminClient('should approve removing request', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/deleteme')
await client.approveRemovingRequest('token')
expect(ref.req.url.searchParams.get('token')).toBe('token')
})
adminClient('should pin comment', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/pin/1', { method: 'put' })
await client.pinComment('1')
expect(ref.req.url.searchParams.get('pinned')).toBe('1')
})
adminClient('should unpin comment', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/pin/1', { method: 'put' })
await client.unpinComment('1')
expect(ref.req.url.searchParams.get('pinned')).toBe('0')
})
adminClient('should remove comment', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/comment/1', { method: 'delete' })
const url = '/post/1'
await client.removeComment(url, '1')
expect(ref.req.url.searchParams.get('url')).toBe(url)
})
adminClient('should enable commenting on a page', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/readonly', { method: 'put' })
const url = '/post/1'
await client.enableCommenting(url)
expect(ref.req.url.searchParams.get('ro')).toBe('1')
expect(ref.req.url.searchParams.get('url')).toBe(url)
})
adminClient('should disable commenting on a page', async ({ client }) => {
const ref = mockEndpoint('/remark42/api/v1/readonly', { method: 'put' })
const url = '/post/1'
await client.disableCommenting('/post/1')
expect(ref.req.url.searchParams.get('ro')).toBe('0')
expect(ref.req.url.searchParams.get('url')).toBe(url)
})
})