mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
c86b6826a4
* fix(zhihu): fix identity detection, comment, answer, and search
Identity detection: Zhihu removed __INITIAL_STATE__ and moved the
user avatar from a profile link into a button. Added fallback that
extracts the user slug from the header avatar alt text.
Comment and answer: Zhihu moved the comment editor into a Modal
and changed the submit button behavior, breaking the UI-based
write flow. Replaced with direct API calls (POST /api/v4/answers/
{id}/comments and POST /api/v4/questions/{id}/answers) which are
reliable and much simpler.
Search: Zhihu's search API now returns mixed result types (ads,
education, hot_timing) alongside search_result. Updated the filter
to select by object.type (answer/article/question) and increased
fetch size to compensate for non-content results.
Fixes #1198
* fix(zhihu): rewrite like, follow, favorite to use API
Same DOM breakage as comment/answer. Replaced UI-based click
flows with direct Zhihu API calls for all write commands.
* fix(zhihu): harden api write regressions
---------
Co-authored-by: jackwener <jakevingoo@gmail.com>
55 lines
2.5 KiB
JavaScript
55 lines
2.5 KiB
JavaScript
import { describe, expect, it, vi } from 'vitest';
|
|
import { getRegistry } from '@jackwener/opencli/registry';
|
|
import './answer.js';
|
|
describe('zhihu answer', () => {
|
|
it('registers as a cookie browser command', () => {
|
|
const cmd = getRegistry().get('zhihu/answer');
|
|
expect(cmd).toBeDefined();
|
|
expect(cmd.strategy).toBe('cookie');
|
|
expect(cmd.browser).toBe(true);
|
|
});
|
|
it('creates an answer via API and returns result', async () => {
|
|
const cmd = getRegistry().get('zhihu/answer');
|
|
const page = {
|
|
goto: vi.fn().mockResolvedValue(undefined),
|
|
wait: vi.fn().mockResolvedValue(undefined),
|
|
evaluate: vi.fn()
|
|
.mockResolvedValueOnce({ slug: 'alice' })
|
|
.mockResolvedValueOnce({ ok: true, id: '42', url: 'https://www.zhihu.com/question/1/answer/42' }),
|
|
};
|
|
const rows = await cmd.func(page, { target: 'question:1', text: 'hello', execute: true });
|
|
expect(rows).toEqual([
|
|
expect.objectContaining({
|
|
outcome: 'created',
|
|
created_target: 'answer:1:42',
|
|
author_identity: 'alice',
|
|
}),
|
|
]);
|
|
});
|
|
it('throws on API error', async () => {
|
|
const cmd = getRegistry().get('zhihu/answer');
|
|
const page = {
|
|
goto: vi.fn().mockResolvedValue(undefined),
|
|
wait: vi.fn().mockResolvedValue(undefined),
|
|
evaluate: vi.fn()
|
|
.mockResolvedValueOnce({ slug: 'alice' })
|
|
.mockResolvedValueOnce({ ok: false, status: 400, message: 'already answered' }),
|
|
};
|
|
await expect(cmd.func(page, { target: 'question:1', text: 'hello', execute: true }))
|
|
.rejects.toMatchObject({ code: 'COMMAND_EXEC' });
|
|
});
|
|
it('requires the answer API response to include the created id', async () => {
|
|
const cmd = getRegistry().get('zhihu/answer');
|
|
const page = {
|
|
goto: vi.fn().mockResolvedValue(undefined),
|
|
wait: vi.fn().mockResolvedValue(undefined),
|
|
evaluate: vi.fn()
|
|
.mockResolvedValueOnce({ slug: 'alice' })
|
|
.mockResolvedValueOnce({ ok: false, status: 200, message: 'Answer API response did not include a created answer id' }),
|
|
};
|
|
await expect(cmd.func(page, { target: 'question:1', text: 'hello', execute: true }))
|
|
.rejects.toMatchObject({ code: 'COMMAND_EXEC' });
|
|
expect(page.evaluate.mock.calls[1][0]).toContain('Answer API response did not include a created answer id');
|
|
});
|
|
});
|