0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

chore(core,test): update tests and refactor getJwtCustomizer query

This commit is contained in:
Darcy Ye 2024-03-06 13:10:15 +08:00
parent 118de63049
commit 754d425a60
No known key found for this signature in database
GPG key ID: B46F4C07EDEFC610
3 changed files with 21 additions and 12 deletions

View file

@ -1,5 +1,5 @@
import {
type jwtCustomizerConfigGuard,
jwtCustomizerConfigGuard,
LogtoTenantConfigKey,
LogtoConfigs,
type AdminConsoleData,
@ -12,7 +12,9 @@ import {
import { convertToIdentifiers } from '@logto/shared';
import type { CommonQueryMethods } from 'slonik';
import { sql } from 'slonik';
import type { z } from 'zod';
import { z } from 'zod';
import RequestError from '#src/errors/RequestError/index.js';
const { table, fields } = convertToIdentifiers(LogtoConfigs);
@ -67,14 +69,21 @@ export const createLogtoConfigQueries = (pool: CommonQueryMethods) => {
`
);
const getJwtCustomizer = async <T extends LogtoJwtTokenKey>(key: T) =>
pool.one<{ value: JwtCustomizerType[T] }>(
sql`
select ${fields.value}
from ${table}
where ${fields.key} = ${key}
`
);
const getJwtCustomizer = async <T extends LogtoJwtTokenKey>(key: T) => {
const { rows } = await getRowsByKeys([key]);
// If the record does not exist (`rows` is empty)
if (rows.length === 0) {
throw new RequestError({
code: 'entity.not_exists',
name: table,
id: key,
status: 404,
});
}
return z.object({ value: jwtCustomizerConfigGuard[key] }).parse(rows[0]);
};
return {
getAdminConsoleConfig,

View file

@ -156,7 +156,7 @@
"parameters": [
{
"in": "path",
"name": "tokenType",
"name": "tokenTypePath",
"description": "The token type to get the JWT customizer for."
}
],

View file

@ -184,7 +184,7 @@ describe('admin console sign-in experience', () => {
);
expect(updatedClientCredentials).toMatchObject(newClientCredentialsJwtCustomizerPayload);
await expect(getJwtCustomizer('client-credentials')).resolves.toMatchObject(
clientCredentialsJwtCustomizerPayload
newClientCredentialsJwtCustomizerPayload
);
});
});