Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

77 lines
3.7 KiB
JavaScript

import { describe, it, expect, vi } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import { ArgumentError, CommandExecutionError } from '@jackwener/opencli/errors';
import './task-status.js';
function makePage(envelope) {
return { goto: vi.fn(), evaluate: vi.fn().mockResolvedValue(envelope) };
}
const ID = '550e8400-e29b-41d4-a716-446655440000';
describe('slock task-status', () => {
const command = getRegistry().get('slock/task-status');
it('rejects short taskId before navigation', async () => {
const page = makePage({ kind: 'ok', rows: [] });
await expect(command.func(page, { taskId: 'abc12345', status: 'todo' }))
.rejects.toBeInstanceOf(ArgumentError);
expect(page.goto).not.toHaveBeenCalled();
});
it('rejects an unknown status pre-network (saves the 400 round-trip)', async () => {
const page = makePage({ kind: 'ok', rows: [] });
await expect(command.func(page, { taskId: ID, status: 'wip' }))
.rejects.toThrow(/not in/);
expect(page.goto).not.toHaveBeenCalled();
});
it('hits PATCH /api/tasks/:taskId/status with body {status} — Bugen contract (NOT {taskStatus}, NOT /tasks/:id without suffix)', async () => {
const page = makePage({ kind: 'ok', rows: [{ id: ID, taskStatus: 'in_progress', taskNumber: 7 }] });
await command.func(page, { taskId: ID, status: 'in_progress' });
const snippet = page.evaluate.mock.calls[0][0];
// Path MUST end in /status — easy drift if a future refactor strips it.
expect(snippet).toContain('/api/tasks/');
expect(snippet).toContain("+ '/status'");
// Body field MUST be `status`, NOT `taskStatus`. The list/get/create
// responses use taskStatus; the PATCH body uses status. Easy to confuse;
// explicitly assert both presence-of and absence-of. The snippet is JS
// source (object literal), so the key is bareword `status:`, not the
// JSON-quoted `"status":`.
expect(snippet).toMatch(/JSON\.stringify\(\{\s*status:\s*"in_progress"\s*\}\)/);
expect(snippet).not.toMatch(/JSON\.stringify\(\{[^}]*taskStatus\s*:/);
expect(snippet).toContain("method:'PATCH'");
});
it('all 5 enum values are accepted pre-network', async () => {
for (const s of ['todo', 'in_progress', 'in_review', 'done', 'closed']) {
const page = makePage({ kind: 'ok', rows: [{ id: ID, taskStatus: s }] });
await command.func(page, { taskId: ID, status: s });
}
});
it('[F6] 409 repeat-set surfaces actionable hint (status already X)', async () => {
const page = makePage({ kind: 'http', status: 409, where: '/tasks/:taskId/status (conflict — task is already in status "in_progress"; no-op set rejected)' });
await expect(command.func(page, { taskId: ID, status: 'in_progress' }))
.rejects.toThrow(/already in status|409/);
});
it('[postcondition] rejects a 2xx status response for the wrong task/status', async () => {
const wrongId = makePage({ kind: 'ok', rows: [{ id: '550e8400-e29b-41d4-a716-446655440001', taskStatus: 'in_progress' }] });
await expect(command.func(wrongId, { taskId: ID, status: 'in_progress' }))
.rejects.toBeInstanceOf(CommandExecutionError);
const wrongStatus = makePage({ kind: 'ok', rows: [{ id: ID, taskStatus: 'todo' }] });
await expect(command.func(wrongStatus, { taskId: ID, status: 'in_progress' }))
.rejects.toThrow(/expected in_progress/);
});
it('403 terminal-status surfaces actionable hint (done/closed cannot be transitioned)', async () => {
const page = makePage({ kind: 'http', status: 403, where: '/tasks/:taskId/status (forbidden — terminal status (done/closed), not the assignee, or channel archived)' });
await expect(command.func(page, { taskId: ID, status: 'in_progress' }))
.rejects.toThrow(/terminal status|403/);
});
});