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:
parent
118de63049
commit
754d425a60
3 changed files with 21 additions and 12 deletions
|
@ -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,
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "tokenType",
|
||||
"name": "tokenTypePath",
|
||||
"description": "The token type to get the JWT customizer for."
|
||||
}
|
||||
],
|
||||
|
|
|
@ -184,7 +184,7 @@ describe('admin console sign-in experience', () => {
|
|||
);
|
||||
expect(updatedClientCredentials).toMatchObject(newClientCredentialsJwtCustomizerPayload);
|
||||
await expect(getJwtCustomizer('client-credentials')).resolves.toMatchObject(
|
||||
clientCredentialsJwtCustomizerPayload
|
||||
newClientCredentialsJwtCustomizerPayload
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue