mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(core): do not titlize tags of .well-known APIs (#1412)
This commit is contained in:
parent
6a83732185
commit
5559fb10c3
2 changed files with 19 additions and 4 deletions
|
@ -68,15 +68,20 @@ describe('GET /swagger.json', () => {
|
|||
});
|
||||
|
||||
it('should generate the tags', async () => {
|
||||
const response = await mockSwaggerRequest.get('/swagger.json');
|
||||
const testTagRouter = new Router();
|
||||
testTagRouter.get('/mock', () => ({}));
|
||||
testTagRouter.put('/.well-known', () => ({}));
|
||||
const swaggerRequest = createSwaggerRequest([testTagRouter]);
|
||||
|
||||
const response = await swaggerRequest.get('/swagger.json');
|
||||
expect(response.body.paths).toMatchObject(
|
||||
expect.objectContaining({
|
||||
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
||||
'/api/mock': expect.objectContaining({
|
||||
get: expect.objectContaining({ tags: ['Mock'] }),
|
||||
}),
|
||||
'/api/test': expect.objectContaining({
|
||||
put: expect.objectContaining({ tags: ['Test'] }),
|
||||
'/api/.well-known': expect.objectContaining({
|
||||
put: expect.objectContaining({ tags: ['.well-known'] }),
|
||||
}),
|
||||
/* eslint-enable @typescript-eslint/no-unsafe-assignment */
|
||||
})
|
||||
|
|
|
@ -62,6 +62,16 @@ const buildParameters = (
|
|||
}));
|
||||
};
|
||||
|
||||
function buildTag(path: string) {
|
||||
const root = path.split('/')[1];
|
||||
|
||||
if (root?.startsWith('.')) {
|
||||
return root;
|
||||
}
|
||||
|
||||
return toTitle(root ?? 'General');
|
||||
}
|
||||
|
||||
const buildOperation = (stack: IMiddleware[], path: string): OpenAPIV3.OperationObject => {
|
||||
const guard = stack.find((function_): function_ is WithGuardConfig<IMiddleware> =>
|
||||
isGuardMiddleware(function_)
|
||||
|
@ -85,7 +95,7 @@ const buildOperation = (stack: IMiddleware[], path: string): OpenAPIV3.Operation
|
|||
];
|
||||
|
||||
return {
|
||||
tags: [toTitle(path.split('/')[1] ?? 'General')],
|
||||
tags: [buildTag(path)],
|
||||
parameters: [...pathParameters, ...queryParameters],
|
||||
requestBody,
|
||||
responses: {
|
||||
|
|
Loading…
Add table
Reference in a new issue