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

42 lines
1.6 KiB
JavaScript

import { describe, it, expect, vi } from 'vitest';
import { CommandExecutionError } from '@jackwener/opencli/errors';
import { getRegistry } from '@jackwener/opencli/registry';
import './attachment-url.js';
function makePage(envelope) {
return { goto: vi.fn(), evaluate: vi.fn().mockResolvedValue(envelope) };
}
const ID = '550e8400-e29b-41d4-a716-446655440000';
describe('slock attachment-url', () => {
const command = getRegistry().get('slock/attachment-url');
it('rejects a non-UUID attachmentId before navigation', async () => {
const page = makePage({ kind: 'ok', rows: {} });
await expect(command.func(page, { attachmentId: 'short8x' }))
.rejects.toThrow(/not a UUID/);
expect(page.goto).not.toHaveBeenCalled();
});
it('hits GET /api/attachments/:id/url and surfaces { url, expiresAt }', async () => {
const page = makePage({
kind: 'ok',
rows: { url: 'https://cdn.slock.ai/a/550e8400.bin?sig=abc', expiresAt: '2026-06-07T13:00:00Z' },
});
const rows = await command.func(page, { attachmentId: ID });
const snippet = page.evaluate.mock.calls[0][0];
expect(snippet).toContain(`/api/attachments/${encodeURIComponent(ID)}/url`);
expect(rows[0]).toMatchObject({
attachmentId: ID,
url: 'https://cdn.slock.ai/a/550e8400.bin?sig=abc',
expiresAt: '2026-06-07T13:00:00Z',
});
});
it('fails typed when the signed url is missing', async () => {
const page = makePage({ kind: 'ok', rows: { expiresAt: 'soon' } });
await expect(command.func(page, { attachmentId: ID })).rejects.toBeInstanceOf(CommandExecutionError);
});
});