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

50 lines
2.0 KiB
JavaScript

import { describe, it, expect, vi } from 'vitest';
import { ArgumentError } from '@jackwener/opencli/errors';
import { getRegistry } from '@jackwener/opencli/registry';
import './channel-mark.js';
function makePage(result = { kind: 'ok', rows: { ok: true } }) {
return { goto: vi.fn(), evaluate: vi.fn().mockResolvedValue(result) };
}
describe('slock channel-mark', () => {
const command = getRegistry().get('slock/channel-mark');
it('default marks read-all', async () => {
const page = makePage({ kind: 'ok', rows: { ok: true, seq: 99 } });
const rows = await command.func(page, { channel: '#general' });
const script = page.evaluate.mock.calls[0][0];
expect(script).toContain('"/read-all"');
expect(rows[0]).toMatchObject({ action: 'read-all', result: 'seq=99' });
});
it('--seq marks read up to a seq and sends it in the body', async () => {
const page = makePage({ kind: 'ok', rows: { ok: true } });
const rows = await command.func(page, { channel: '#general', seq: 42 });
const script = page.evaluate.mock.calls[0][0];
expect(script).toContain('"/read"');
expect(script).not.toContain('"/read-all"');
expect(rows[0]).toMatchObject({ action: 'read-to-42' });
});
it('--unread marks unread', async () => {
const page = makePage({ kind: 'ok', rows: { ok: true, unreadCount: 3 } });
const rows = await command.func(page, { channel: '#general', unread: true });
expect(page.evaluate.mock.calls[0][0]).toContain('"/unread"');
expect(rows[0]).toMatchObject({ action: 'unread', result: 'unreadCount=3' });
});
it('--unread and --seq together is rejected before navigation', async () => {
const page = makePage();
await expect(command.func(page, { channel: '#g', unread: true, seq: 5 }))
.rejects.toBeInstanceOf(ArgumentError);
expect(page.goto).not.toHaveBeenCalled();
});
it('non-positive --seq is rejected', async () => {
const page = makePage();
await expect(command.func(page, { channel: '#g', seq: 0 }))
.rejects.toBeInstanceOf(ArgumentError);
});
});