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

61 lines
2.9 KiB
JavaScript

import { describe, it, expect, vi } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import './task-list.js';
function makePage(result) {
return { goto: vi.fn(), evaluate: vi.fn().mockResolvedValue(result) };
}
describe('slock task-list', () => {
const command = getRegistry().get('slock/task-list');
it('returns unwrapped {tasks:[]} on happy path and maps task fields', async () => {
const page = makePage({
kind: 'ok',
rows: [
{ id: 'm1', taskNumber: 7, content: 'do it', taskStatus: 'todo', assigneeId: null },
{ id: 'm2', taskNumber: 8, content: 'next', taskStatus: 'in_progress', assigneeId: 'u1' },
],
});
const rows = await command.func(page, { channel: 'c1-uuid-aaaa-bbbb-cccc-dddddddddddd' });
expect(rows[0]).toMatchObject({ id: 'm1', taskNumber: 7, title: 'do it', taskStatus: 'todo', assigneeId: null });
expect(rows[1]).toMatchObject({ id: 'm2', taskNumber: 8, title: 'next', taskStatus: 'in_progress', assigneeId: 'u1' });
});
it('passes ?status=<value> through when --status is set (server-side filter)', async () => {
const page = makePage({ kind: 'ok', rows: [] });
await command.func(page, { channel: '11111111-1111-1111-1111-111111111111', status: ' in_review ' });
const snippet = page.evaluate.mock.calls[0][0];
expect(snippet).toContain('?status=');
expect(snippet).toContain('"in_review"');
expect(snippet).not.toContain('" in_review "');
});
it('rejects an invalid --status before navigation', async () => {
const page = makePage({ kind: 'ok', rows: [] });
await expect(command.func(page, { channel: '11111111-1111-1111-1111-111111111111', status: 'broken' }))
.rejects.toThrow(/status "broken"/);
expect(page.goto).not.toHaveBeenCalled();
});
it('[drift] non-{tasks:[]} response surfaces as a clean http error (not silently empty)', async () => {
const page = makePage({ kind: 'http', status: 200, where: '/tasks/channel/:id (expected {tasks:[]}, got drift)' });
await expect(command.func(page, { channel: '11111111-1111-1111-1111-111111111111' }))
.rejects.toThrow(/drift|HTTP 200/);
});
it('[anti-drift] non-array rows from dispatch throws instead of silently returning empty', async () => {
const page = makePage({ kind: 'ok', rows: { wrong: 'shape' } });
await expect(command.func(page, { channel: '11111111-1111-1111-1111-111111111111' })).rejects.toThrow(/expected array/);
});
it('[dead-code removal] no /tasks/v2/ endpoint or --v2 flag survives', async () => {
const page = makePage({ kind: 'ok', rows: [] });
await command.func(page, { channel: '11111111-1111-1111-1111-111111111111' });
const snippet = page.evaluate.mock.calls[0][0];
expect(snippet).not.toContain('/tasks/v2');
// The arg surface must also not advertise --v2 anymore.
expect(command.args.find((a) => a.name === 'v2')).toBeUndefined();
});
});