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
138 lines
4.5 KiB
TypeScript
138 lines
4.5 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
|
|
describe('pkg', () => {
|
|
beforeEach(() => {
|
|
vi.resetModules();
|
|
});
|
|
|
|
afterEach(() => {
|
|
delete process.env.IS_PACKAGE;
|
|
delete process.env.UA;
|
|
});
|
|
|
|
it('requires init before request', async () => {
|
|
const { request } = await import('./pkg');
|
|
await expect(request('/test/1')).rejects.toThrow('RSSHub not initialized. Please call init() first.');
|
|
});
|
|
|
|
it('config', async () => {
|
|
const { init } = await import('./pkg');
|
|
await init({
|
|
UA: 'mock',
|
|
});
|
|
const { config } = await import('./config');
|
|
expect(config.ua).toBe('mock');
|
|
});
|
|
|
|
it('request', async () => {
|
|
const { init, request } = await import('./pkg');
|
|
await init();
|
|
const data = await request('/test/1');
|
|
expect(data).toMatchObject({
|
|
atomlink: 'http://localhost/test/1',
|
|
title: 'Test 1',
|
|
itunes_author: null,
|
|
link: 'https://github.com/DIYgod/RSSHub',
|
|
item: [
|
|
{
|
|
title: 'Title1',
|
|
description: 'Description1',
|
|
pubDate: 'Mon, 31 Dec 2018 15:59:50 GMT',
|
|
link: 'https://github.com/DIYgod/RSSHub/issues/1',
|
|
author: 'DIYgod1',
|
|
},
|
|
{
|
|
title: 'Title2',
|
|
description: 'Description2',
|
|
pubDate: 'Mon, 31 Dec 2018 15:59:40 GMT',
|
|
link: 'https://github.com/DIYgod/RSSHub/issues/2',
|
|
author: 'DIYgod2',
|
|
},
|
|
{
|
|
title: 'Title3',
|
|
description: 'Description3',
|
|
pubDate: 'Mon, 31 Dec 2018 15:59:30 GMT',
|
|
link: 'https://github.com/DIYgod/RSSHub/issues/3',
|
|
author: 'DIYgod3',
|
|
},
|
|
{
|
|
title: 'Title4',
|
|
description: 'Description4',
|
|
pubDate: 'Mon, 31 Dec 2018 15:59:20 GMT',
|
|
link: 'https://github.com/DIYgod/RSSHub/issues/4',
|
|
author: 'DIYgod4',
|
|
},
|
|
{
|
|
title: 'Title5',
|
|
description: 'Description5',
|
|
pubDate: 'Mon, 31 Dec 2018 15:59:10 GMT',
|
|
link: 'https://github.com/DIYgod/RSSHub/issues/5',
|
|
author: 'DIYgod5',
|
|
},
|
|
],
|
|
allowEmpty: false,
|
|
});
|
|
});
|
|
|
|
it('error', async () => {
|
|
try {
|
|
const { init, request } = await import('./pkg');
|
|
await init();
|
|
await request('/test/error');
|
|
} catch (error) {
|
|
expect(error).toBe('Error test');
|
|
}
|
|
});
|
|
|
|
it('registerRoute adds custom routes and namespaces', async () => {
|
|
const { init, registerRoute, request } = await import('./pkg');
|
|
await init();
|
|
|
|
await registerRoute(
|
|
'custom',
|
|
{
|
|
path: '/hello',
|
|
name: 'Custom Hello',
|
|
handler: () => ({
|
|
title: 'Custom',
|
|
link: 'https://example.com',
|
|
item: [
|
|
{
|
|
title: 'Entry',
|
|
link: 'https://example.com/entry',
|
|
},
|
|
],
|
|
allowEmpty: true,
|
|
}),
|
|
},
|
|
{
|
|
name: 'Custom Namespace',
|
|
url: 'https://example.com',
|
|
lang: 'en',
|
|
}
|
|
);
|
|
|
|
const data = await request('/custom/hello');
|
|
expect(data.title).toBe('Custom');
|
|
|
|
const { namespaces } = await import('./registry');
|
|
expect(namespaces.custom?.name).toBe('Custom Namespace');
|
|
expect(namespaces.custom?.routes['/hello']).toBeDefined();
|
|
});
|
|
|
|
it('registerRoute supports handlers that return Response', async () => {
|
|
const { init, registerRoute } = await import('./pkg');
|
|
await init();
|
|
|
|
await registerRoute('custom-response', {
|
|
path: '/hello',
|
|
name: 'Custom Response',
|
|
handler: () => new Response('ok'),
|
|
});
|
|
|
|
const app = (await import('@/app')).default;
|
|
const response = await app.request('/custom-response/hello');
|
|
expect(await response.text()).toBe('ok');
|
|
});
|
|
});
|