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
32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
import { describe, it, expect, vi } from 'vitest';
|
|
import { getRegistry } from '@jackwener/opencli/registry';
|
|
import './unread-summary.js';
|
|
|
|
function makePage(result) {
|
|
return { goto: vi.fn(), evaluate: vi.fn().mockResolvedValue(result) };
|
|
}
|
|
|
|
describe('slock unread-summary', () => {
|
|
const command = getRegistry().get('slock/unread-summary');
|
|
|
|
it('passes through the enriched rows the in-page join produced', async () => {
|
|
const page = makePage({ kind: 'ok', rows: [
|
|
{ serverId: 's1', slug: 'eng', name: 'Engineering', unreadCount: 4 },
|
|
] });
|
|
const rows = await command.func(page, {});
|
|
expect(rows[0]).toMatchObject({ serverId: 's1', slug: 'eng', unreadCount: 4 });
|
|
});
|
|
|
|
it('is user-scoped — the snippet never resolves a server slug', async () => {
|
|
const page = makePage({ kind: 'ok', rows: [] });
|
|
await command.func(page, {});
|
|
// serverScoped:false ⇒ no slug→X-Server-Id lookup (sid stays null).
|
|
expect(page.evaluate.mock.calls[0][0]).not.toContain('slock_last_server_slug');
|
|
});
|
|
|
|
it('[anti-drift] non-array rows throws instead of silently returning empty', async () => {
|
|
const page = makePage({ kind: 'ok', rows: { wrong: 'shape' } });
|
|
await expect(command.func(page, {})).rejects.toThrow(/expected array/);
|
|
});
|
|
});
|