9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
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
95 lines
4.7 KiB
JavaScript
95 lines
4.7 KiB
JavaScript
import { describe, expect, it, vi } from 'vitest';
|
|
import { getRegistry } from '@jackwener/opencli/registry';
|
|
import { ArgumentError, AuthRequiredError, CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
|
|
|
|
import './delete.js';
|
|
|
|
function makePage(evaluateResult) {
|
|
return {
|
|
goto: vi.fn().mockResolvedValue(undefined),
|
|
wait: vi.fn().mockResolvedValue(undefined),
|
|
evaluate: vi.fn().mockResolvedValue(evaluateResult),
|
|
};
|
|
}
|
|
|
|
describe('weibo delete command', () => {
|
|
const getCommand = () => getRegistry().get('weibo/delete');
|
|
|
|
it('returns deleted status when the API reports success', async () => {
|
|
const page = makePage({ ok: true, id: '5197123456789012', mblogid: 'Px2yQfXYZ' });
|
|
const result = await getCommand().func(page, { id: 'Px2yQfXYZ' });
|
|
expect(result).toEqual([
|
|
{ status: 'deleted', id: '5197123456789012', mblogid: 'Px2yQfXYZ' },
|
|
]);
|
|
expect(page.goto).toHaveBeenCalledWith('https://weibo.com');
|
|
const script = page.evaluate.mock.calls[0][0];
|
|
expect(script.match(/\/ajax\/statuses\/show/g)).toHaveLength(2);
|
|
expect(script).toContain('/ajax/statuses/destroy');
|
|
expect(script).toContain('still_exists');
|
|
});
|
|
|
|
it('normalizes supported Weibo post URLs before evaluating delete flow', async () => {
|
|
const page = makePage({ ok: true, id: '5197123456789012', mblogid: 'Px2yQfXYZ' });
|
|
const result = await getCommand().func(page, { id: 'https://weibo.com/1234567890/Px2yQfXYZ?refer_flag=1001030103_' });
|
|
|
|
expect(result).toEqual([
|
|
{ status: 'deleted', id: '5197123456789012', mblogid: 'Px2yQfXYZ' },
|
|
]);
|
|
expect(page.evaluate.mock.calls[0][0]).toContain('const input = "Px2yQfXYZ"');
|
|
});
|
|
|
|
it('throws ArgumentError when id is empty or whitespace', async () => {
|
|
const page = makePage({ ok: true, id: '0' });
|
|
await expect(getCommand().func(page, { id: ' ' })).rejects.toBeInstanceOf(ArgumentError);
|
|
await expect(getCommand().func(page, { id: '' })).rejects.toBeInstanceOf(ArgumentError);
|
|
await expect(getCommand().func(page, { id: 'https://example.com/123/Px2yQfXYZ' })).rejects.toBeInstanceOf(ArgumentError);
|
|
await expect(getCommand().func(page, { id: 'javascript:alert(1)' })).rejects.toBeInstanceOf(ArgumentError);
|
|
await expect(getCommand().func(page, { id: '../not-a-post' })).rejects.toBeInstanceOf(ArgumentError);
|
|
expect(page.goto).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('maps 401 / 403 from the show endpoint to AuthRequiredError', async () => {
|
|
const page = makePage({ error: 'auth', status: 401 });
|
|
await expect(getCommand().func(page, { id: 'Px2yQfXYZ' })).rejects.toBeInstanceOf(AuthRequiredError);
|
|
});
|
|
|
|
it('throws EmptyResultError when the post cannot be resolved', async () => {
|
|
const page = makePage({ error: 'not_found', input: 'Px2yQfXYZ' });
|
|
await expect(getCommand().func(page, { id: 'Px2yQfXYZ' })).rejects.toBeInstanceOf(EmptyResultError);
|
|
});
|
|
|
|
it('throws CommandExecutionError on non-2xx show response', async () => {
|
|
const page = makePage({ error: 'show_http', status: 500 });
|
|
await expect(getCommand().func(page, { id: '5197123456789012' })).rejects.toBeInstanceOf(CommandExecutionError);
|
|
});
|
|
|
|
it('throws CommandExecutionError on non-2xx destroy response', async () => {
|
|
const page = makePage({ error: 'destroy_http', status: 502 });
|
|
await expect(getCommand().func(page, { id: '5197123456789012' })).rejects.toBeInstanceOf(CommandExecutionError);
|
|
});
|
|
|
|
it('surfaces API-level errors from destroy as CommandExecutionError with msg', async () => {
|
|
const page = makePage({ error: 'api', msg: '无权限删除', id: '5197123456789012' });
|
|
await expect(getCommand().func(page, { id: '5197123456789012' })).rejects.toThrowError(/无权限删除/);
|
|
});
|
|
|
|
it('throws CommandExecutionError when postcondition verification still sees the target', async () => {
|
|
const page = makePage({ error: 'still_exists', id: '5197123456789012', mblogid: 'Px2yQfXYZ' });
|
|
await expect(getCommand().func(page, { id: '5197123456789012' })).rejects.toBeInstanceOf(CommandExecutionError);
|
|
});
|
|
|
|
it('throws CommandExecutionError when postcondition verification is malformed', async () => {
|
|
const page = makePage({ error: 'verify_malformed', msg: 'verify returned malformed response', id: '5197123456789012' });
|
|
await expect(getCommand().func(page, { id: '5197123456789012' })).rejects.toThrowError(/verify returned malformed response/);
|
|
});
|
|
|
|
it('unwraps the browser-bridge { session, data } envelope', async () => {
|
|
const page = makePage({
|
|
session: 'site:weibo:abc',
|
|
data: { ok: true, id: '42', mblogid: 'M420' },
|
|
});
|
|
const result = await getCommand().func(page, { id: 'M420' });
|
|
expect(result).toEqual([{ status: 'deleted', id: '42', mblogid: 'M420' }]);
|
|
});
|
|
});
|