Files
wehub-resource-sync 9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

98 lines
4.3 KiB
JavaScript

import { describe, expect, it } from 'vitest';
import { ArgumentError, CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
import { parsePageArg, resolveBvid, resolveUid, selectVideoPart } from './utils.js';
describe('resolveBvid', () => {
it('passes through a valid BV ID', async () => {
expect(await resolveBvid('BV1MV9NBtENN')).toBe('BV1MV9NBtENN');
});
it('passes through BV ID with surrounding whitespace', async () => {
expect(await resolveBvid(' BV1MV9NBtENN ')).toBe('BV1MV9NBtENN');
});
it('handles non-string input via String() coercion', async () => {
expect(await resolveBvid('BV123abc')).toBe('BV123abc');
});
it('extracts BV IDs from bilibili video URLs', async () => {
expect(await resolveBvid('https://www.bilibili.com/video/BV1xx411c7mD/?spm_id_from=333.1007')).toBe('BV1xx411c7mD');
expect(await resolveBvid('https://m.bilibili.com/video/BV1Je9EBnEha')).toBe('BV1Je9EBnEha');
});
it('rejects invalid input that cannot be resolved', async () => {
// A random string that b23.tv won't resolve — should timeout or fail
await expect(resolveBvid('not-a-valid-code-99999')).rejects.toThrow();
});
});
describe('resolveUid', () => {
function pageWithUserSearchResult(result) {
return {
evaluate: async (script) => {
if (String(script).includes('/x/web-interface/nav')) {
return {
data: {
wbi_img: {
img_url: 'https://i0.hdslb.com/bfs/wbi/abcdefghijklmnopqrstuvwxyz123456.png',
sub_url: 'https://i0.hdslb.com/bfs/wbi/ABCDEFGHIJKLMNOPQRSTUVWXYZ123456.png',
},
},
};
}
return result;
},
};
}
it('returns numeric uid input without searching', async () => {
expect(await resolveUid({}, '12345')).toBe('12345');
});
it('fails closed when user search payload lacks result', async () => {
await expect(resolveUid(pageWithUserSearchResult({ code: 0, data: {} }), 'missing'))
.rejects.toBeInstanceOf(CommandExecutionError);
});
it('fails closed when user search result row lacks mid', async () => {
await expect(resolveUid(pageWithUserSearchResult({ code: 0, data: { result: [{}] } }), 'missing-mid'))
.rejects.toBeInstanceOf(CommandExecutionError);
});
it('keeps explicit no-user result as EmptyResultError', async () => {
await expect(resolveUid(pageWithUserSearchResult({ code: 0, data: { result: [] } }), 'nobody'))
.rejects.toBeInstanceOf(EmptyResultError);
});
});
describe('parsePageArg', () => {
it('accepts omitted page and strict positive decimal integers', () => {
expect(parsePageArg(undefined)).toBeNull();
expect(parsePageArg(null)).toBeNull();
expect(parsePageArg('')).toBeNull();
expect(parsePageArg('1')).toBe(1);
expect(parsePageArg('12')).toBe(12);
expect(parsePageArg(3)).toBe(3);
});
it('rejects malformed or coerced page values as argument errors', () => {
for (const value of ['0', '-1', '1.5', '1e2', '0x10', ' 1 ', '01', 'abc', Number.NaN, 1.2]) {
expect(() => parsePageArg(value)).toThrow(ArgumentError);
}
});
});
describe('selectVideoPart', () => {
it('selects by unique API page number and preserves cid', () => {
const part = selectVideoPart({
pages: [
{ page: 1, cid: 1001, part: 'P1' },
{ page: 3, cid: '1003', part: 'P3' },
],
}, 3);
expect(part).toMatchObject({ page: 3, cid: '1003', part: 'P3' });
});
it('fails closed for missing, duplicate, or malformed page identity', () => {
expect(() => selectVideoPart({ pages: [] }, 1)).toThrow(CommandExecutionError);
expect(() => selectVideoPart({ pages: [{ page: 1, cid: 1 }, { page: 1, cid: 2 }] }, 1)).toThrow(CommandExecutionError);
expect(() => selectVideoPart({ pages: [{ page: '1e0', cid: 1 }] }, 1)).toThrow(CommandExecutionError);
expect(() => selectVideoPart({ pages: [{ page: 1, cid: 0 }] }, 1)).toThrow(CommandExecutionError);
});
});