mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-03-13 10:30:18 +08:00
* feat(tests): add comprehensive unit tests for various utility functions and views - Implement tests for cache utility to ensure proper behavior with no cache and TTL keys. - Add tests for common utilities including string manipulation and path handling. - Introduce tests for directory import functionality to validate file imports and pattern matching. - Create tests for git hash retrieval to handle fallback scenarios. - Develop tests for deprecated got utility to verify response handling and retry logic. - Enhance got utility tests to include request hooks and search parameter handling. - Mock header generator tests to validate user agent handling. - Expand helpers tests to cover current path retrieval and duration parsing. - Implement tests for ofetch utility to ensure proper proxy handling and logging. - Add OpenTelemetry metric tests to validate metric serialization. - Create proxy tests to verify multi-proxy selection and failure handling. - Introduce request rewriter tests to validate fetch and get wrapper functionality. - Add timezone utility tests to handle various input types. - Implement view tests for Atom and RSS rendering to ensure correct output. - Create index view tests to validate debug information display based on configuration. * refactor: remove deprecated got implementation and associated tests * test: expand coverage for api, middleware, and utils
128 lines
4.1 KiB
TypeScript
128 lines
4.1 KiB
TypeScript
import { Hono } from 'hono';
|
|
import { describe, expect, it, vi } from 'vitest';
|
|
|
|
describe('registry dynamic loading', () => {
|
|
it('loads production namespaces from build', async () => {
|
|
const originalEnv = process.env.NODE_ENV;
|
|
process.env.NODE_ENV = 'production';
|
|
vi.resetModules();
|
|
|
|
const { namespaces } = await import('@/registry');
|
|
expect(Object.keys(namespaces).length).toBeGreaterThan(0);
|
|
|
|
process.env.NODE_ENV = originalEnv;
|
|
});
|
|
|
|
it('builds namespaces from directory import and resolves module handlers', async () => {
|
|
const originalEnv = process.env.NODE_ENV;
|
|
process.env.NODE_ENV = 'development';
|
|
|
|
const modules = {
|
|
'/nsEmpty/namespace.ts': {
|
|
namespace: {
|
|
name: 'Empty',
|
|
routes: null,
|
|
},
|
|
},
|
|
'/nsRoute/route-array.ts': {
|
|
route: {
|
|
path: ['/a', '/b'],
|
|
name: 'Array',
|
|
},
|
|
},
|
|
'/nsRoute/route-single.ts': {
|
|
route: {
|
|
path: '/single',
|
|
name: 'Single',
|
|
handler: () => ({
|
|
title: 'ok',
|
|
link: 'https://example.com',
|
|
item: [],
|
|
allowEmpty: true,
|
|
}),
|
|
},
|
|
},
|
|
'/nsModule/route-module.ts': {
|
|
route: {
|
|
path: '/module',
|
|
name: 'Module',
|
|
module: () =>
|
|
Promise.resolve({
|
|
route: {
|
|
handler: () => new Response('module'),
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
'/nsApi/api-array.ts': {
|
|
apiRoute: {
|
|
path: ['/a1', '/a2'],
|
|
name: 'ApiArray',
|
|
handler: () => ({ ok: true }),
|
|
},
|
|
},
|
|
'/nsApi/api-single.ts': {
|
|
apiRoute: {
|
|
path: '/single',
|
|
name: 'ApiSingle',
|
|
handler: () => ({ ok: true }),
|
|
},
|
|
},
|
|
'/nsApi/api-module.ts': {
|
|
apiRoute: {
|
|
path: '/module',
|
|
name: 'ApiModule',
|
|
module: () =>
|
|
Promise.resolve({
|
|
apiRoute: {
|
|
handler: () => ({ ok: true }),
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
'/test/api-index.ts': {
|
|
apiRoute: {
|
|
path: '/',
|
|
name: 'ApiIndex',
|
|
},
|
|
},
|
|
};
|
|
|
|
const directoryImportMock = vi.fn(() => modules);
|
|
vi.doMock('@/utils/directory-import', () => ({
|
|
directoryImport: directoryImportMock,
|
|
}));
|
|
vi.resetModules();
|
|
const { namespaces, default: registry } = await import('@/registry');
|
|
|
|
expect(directoryImportMock).toHaveBeenCalled();
|
|
expect(namespaces.nsRoute.routes['/single']).toBeDefined();
|
|
expect(namespaces.nsApi.apiRoutes['/single']).toBeDefined();
|
|
|
|
const app = new Hono();
|
|
app.use(async (ctx, next) => {
|
|
const response = await next();
|
|
const apiData = ctx.get('apiData');
|
|
if (apiData) {
|
|
return ctx.json(apiData);
|
|
}
|
|
const data = ctx.get('data');
|
|
if (data) {
|
|
return ctx.json(data);
|
|
}
|
|
return response;
|
|
});
|
|
app.route('/', registry);
|
|
|
|
const routeResponse = await app.request('/nsModule/module');
|
|
expect(await routeResponse.text()).toBe('module');
|
|
await app.request('/api/nsApi/module');
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
const apiTestResponse = await app.request('/api/test');
|
|
expect(await apiTestResponse.json()).toEqual({ code: 0 });
|
|
|
|
process.env.NODE_ENV = originalEnv;
|
|
});
|
|
});
|