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
102 lines
3.0 KiB
TypeScript
102 lines
3.0 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from 'vitest';
|
|
|
|
afterEach(() => {
|
|
vi.resetModules();
|
|
});
|
|
|
|
describe('config', () => {
|
|
it('bilibilib cookie', async () => {
|
|
process.env.BILIBILI_COOKIE_12 = 'cookie1';
|
|
process.env.BILIBILI_COOKIE_34 = 'cookie2';
|
|
|
|
const { config } = await import('./config');
|
|
expect(config.bilibili.cookies).toMatchObject({
|
|
12: 'cookie1',
|
|
34: 'cookie2',
|
|
});
|
|
|
|
delete process.env.BILIBILI_COOKIE_12;
|
|
delete process.env.BILIBILI_COOKIE_34;
|
|
});
|
|
|
|
it('email config', async () => {
|
|
process.env['EMAIL_CONFIG_xx.qq.com'] = 'token1';
|
|
process.env['EMAIL_CONFIG_oo.qq.com'] = 'token2';
|
|
|
|
const { config } = await import('./config');
|
|
expect(config.email.config).toMatchObject({
|
|
'xx.qq.com': 'token1',
|
|
'oo.qq.com': 'token2',
|
|
});
|
|
|
|
delete process.env['EMAIL_CONFIG_xx.qq.com'];
|
|
delete process.env['EMAIL_CONFIG_oo.qq.com'];
|
|
});
|
|
|
|
it('discuz cookie', async () => {
|
|
process.env.DISCUZ_COOKIE_12 = 'cookie1';
|
|
process.env.DISCUZ_COOKIE_34 = 'cookie2';
|
|
|
|
const { config } = await import('./config');
|
|
expect(config.discuz.cookies).toMatchObject({
|
|
12: 'cookie1',
|
|
34: 'cookie2',
|
|
});
|
|
|
|
delete process.env.DISCUZ_COOKIE_12;
|
|
delete process.env.DISCUZ_COOKIE_34;
|
|
});
|
|
|
|
it('medium cookie', async () => {
|
|
process.env.MEDIUM_COOKIE_12 = 'cookie1';
|
|
process.env.MEDIUM_COOKIE_34 = 'cookie2';
|
|
|
|
const { config } = await import('./config');
|
|
expect(config.medium.cookies).toMatchObject({
|
|
12: 'cookie1',
|
|
34: 'cookie2',
|
|
});
|
|
|
|
delete process.env.MEDIUM_COOKIE_12;
|
|
delete process.env.MEDIUM_COOKIE_34;
|
|
});
|
|
|
|
it('discourse config', async () => {
|
|
process.env.DISCOURSE_CONFIG_12 = JSON.stringify({ a: 1 });
|
|
process.env.DISCOURSE_CONFIG_34 = JSON.stringify({ b: 2 });
|
|
|
|
const { config } = await import('./config');
|
|
expect(config.discourse.config).toMatchObject({
|
|
12: { a: 1 },
|
|
34: { b: 2 },
|
|
});
|
|
|
|
delete process.env.DISCOURSE_CONFIG_12;
|
|
delete process.env.DISCOURSE_CONFIG_34;
|
|
});
|
|
|
|
it('no random ua', async () => {
|
|
process.env.NO_RANDOM_UA = '1';
|
|
|
|
const { config } = await import('./config');
|
|
expect(config.ua).toBe('RSSHub/1.0 (+http://github.com/DIYgod/RSSHub; like FeedFetcher-Google)');
|
|
|
|
delete process.env.NO_RANDOM_UA;
|
|
});
|
|
|
|
it('random ua', async () => {
|
|
const { config } = await import('./config');
|
|
expect(config.ua).not.toBe('RSSHub/1.0 (+http://github.com/DIYgod/RSSHub; like FeedFetcher-Google)');
|
|
});
|
|
|
|
it('remote config', async () => {
|
|
process.env.REMOTE_CONFIG = 'http://rsshub.test/config';
|
|
|
|
const { config } = await import('./config');
|
|
await vi.waitFor(() => {
|
|
expect(config.ua).toBe('test');
|
|
});
|
|
delete process.env.REMOTE_CONFIG;
|
|
});
|
|
});
|