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

87 lines
3.8 KiB
JavaScript

import { describe, expect, it, vi } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import { CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
import './post.js';
import './topic.js';
import './user.js';
function makePage(evaluateResult) {
return {
goto: vi.fn().mockResolvedValue(undefined),
evaluate: vi.fn().mockResolvedValue(evaluateResult),
};
}
describe('jike read commands', () => {
it('maps post rows from the browser-side extractor', async () => {
const command = getRegistry().get('jike/post');
const page = makePage([
{ type: 'post', author: 'alice', content: 'hello', likes: 3, time: '2026-05-16' },
{ type: 'comment', author: 'bob', content: 'nice', likes: 1, time: '2026-05-16' },
]);
await expect(command.func(page, { id: 'post-1' })).resolves.toEqual([
{ type: 'post', author: 'alice', content: 'hello', likes: 3, time: '2026-05-16' },
{ type: 'comment', author: 'bob', content: 'nice', likes: 1, time: '2026-05-16' },
]);
expect(page.goto).toHaveBeenCalledWith('https://m.okjike.com/originalPosts/post-1');
});
it('maps topic rows and applies limit on the Node side', async () => {
const command = getRegistry().get('jike/topic');
const page = makePage([
{ id: 'a', content: 'one', author: 'alice', likes: 1, comments: 2, time: 't1' },
{ id: 'b', content: 'two', author: 'bob', likes: 3, comments: 4, time: 't2' },
]);
await expect(command.func(page, { id: 'topic-1', limit: 1 })).resolves.toEqual([
{
content: 'one',
author: 'alice',
likes: 1,
comments: 2,
time: 't1',
url: 'https://web.okjike.com/originalPost/a',
},
]);
expect(page.goto).toHaveBeenCalledWith('https://m.okjike.com/topics/topic-1');
});
it('maps user rows and applies limit on the Node side', async () => {
const command = getRegistry().get('jike/user');
const page = makePage([
{ id: 'a', content: 'one', type: 'post', likes: 1, comments: 2, time: 't1' },
{ id: 'b', content: 'two', type: 'repost', likes: 3, comments: 4, time: 't2' },
]);
await expect(command.func(page, { username: 'alice', limit: 1 })).resolves.toEqual([
{
id: 'a',
content: 'one',
type: 'post',
likes: 1,
comments: 2,
time: 't1',
url: 'https://web.okjike.com/originalPost/a',
},
]);
expect(page.goto).toHaveBeenCalledWith('https://m.okjike.com/users/alice');
});
it('throws CommandExecutionError for malformed browser-side payloads', async () => {
await expect(getRegistry().get('jike/post').func(makePage({ reason: 'missing-data-script' }), { id: 'post-1' }))
.rejects.toBeInstanceOf(CommandExecutionError);
await expect(getRegistry().get('jike/topic').func(makePage({ reason: 'parse-error', message: 'bad json' }), { id: 'topic-1' }))
.rejects.toBeInstanceOf(CommandExecutionError);
await expect(getRegistry().get('jike/user').func(makePage(null), { username: 'alice' }))
.rejects.toBeInstanceOf(CommandExecutionError);
});
it('throws EmptyResultError when topic or user extractors return no posts', async () => {
await expect(getRegistry().get('jike/topic').func(makePage([]), { id: 'topic-1' }))
.rejects.toBeInstanceOf(EmptyResultError);
await expect(getRegistry().get('jike/user').func(makePage([]), { username: 'alice' }))
.rejects.toBeInstanceOf(EmptyResultError);
});
});