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
59 lines
2.7 KiB
JavaScript
59 lines
2.7 KiB
JavaScript
import { describe, expect, it, vi } from 'vitest';
|
|
import { ArgumentError } from '@jackwener/opencli/errors';
|
|
import { getRegistry } from '@jackwener/opencli/registry';
|
|
import { __test__ } from './create.js';
|
|
|
|
const { parseCreateTitle, parseCreateEmoji, parseCreateProjectResult } = __test__;
|
|
|
|
describe('notebooklm create', () => {
|
|
it('parseCreateTitle trims and accepts 1-200 char titles', () => {
|
|
expect(parseCreateTitle('hello')).toBe('hello');
|
|
expect(parseCreateTitle(' spaced ')).toBe('spaced');
|
|
expect(parseCreateTitle('x'.repeat(200))).toHaveLength(200);
|
|
});
|
|
|
|
it('parseCreateTitle rejects empty / too-long titles', () => {
|
|
expect(() => parseCreateTitle('')).toThrow(ArgumentError);
|
|
expect(() => parseCreateTitle(' ')).toThrow(ArgumentError);
|
|
expect(() => parseCreateTitle(undefined)).toThrow(ArgumentError);
|
|
expect(() => parseCreateTitle('x'.repeat(201))).toThrow(ArgumentError);
|
|
});
|
|
|
|
it('parseCreateEmoji defaults to the notebook icon when empty', () => {
|
|
expect(parseCreateEmoji(undefined)).toBe('📒');
|
|
expect(parseCreateEmoji('')).toBe('📒');
|
|
expect(parseCreateEmoji(' ')).toBe('📒');
|
|
});
|
|
|
|
it('parseCreateEmoji passes through user-provided emoji', () => {
|
|
expect(parseCreateEmoji('🧪')).toBe('🧪');
|
|
expect(parseCreateEmoji(' 🎓 ')).toBe('🎓');
|
|
});
|
|
|
|
it('parseCreateProjectResult extracts the notebook id from the singleton-wrapped RPC result', () => {
|
|
const result = [[ ['notebook-payload-prefix', null, 'ec806f5b-fe74-4588-8f77-f073b91e9b1e', 'opencli-test', '🧪'] ]];
|
|
expect(parseCreateProjectResult(result)).toBe('ec806f5b-fe74-4588-8f77-f073b91e9b1e');
|
|
});
|
|
|
|
it('parseCreateProjectResult falls back to a UUID-shaped index 0 when index 2 is missing', () => {
|
|
const id = 'd0b14aa7-fc0f-44bc-a749-928e27e5fa3b';
|
|
const result = [id, null];
|
|
expect(parseCreateProjectResult(result)).toBe(id);
|
|
});
|
|
|
|
it('parseCreateProjectResult returns empty string on malformed or unparseable shapes', () => {
|
|
expect(parseCreateProjectResult(null)).toBe('');
|
|
expect(parseCreateProjectResult({})).toBe('');
|
|
expect(parseCreateProjectResult([])).toBe('');
|
|
expect(parseCreateProjectResult([null, null, null])).toBe('');
|
|
expect(parseCreateProjectResult(['some-id', null])).toBe('');
|
|
});
|
|
|
|
it('refuses to create a remote notebook without --execute', async () => {
|
|
const command = getRegistry().get('notebooklm/create');
|
|
const page = { goto: vi.fn() };
|
|
await expect(command.func(page, { title: 'Draft Notebook' })).rejects.toThrow(ArgumentError);
|
|
expect(page.goto).not.toHaveBeenCalled();
|
|
});
|
|
});
|