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
76 lines
3.5 KiB
JavaScript
76 lines
3.5 KiB
JavaScript
import { describe, expect, it, vi } from 'vitest';
|
|
import { ArgumentError } from '@jackwener/opencli/errors';
|
|
import { getRegistry } from '@jackwener/opencli/registry';
|
|
import { __test__ } from './generate-slides.js';
|
|
|
|
const { SLIDE_DECK_CONFIG_BLOCK, buildCreateSlidesArgs, parseSlideDeckLength, parseSlidesIdFromResult } = __test__;
|
|
|
|
describe('notebooklm generate-slides', () => {
|
|
it('SLIDE_DECK_CONFIG_BLOCK reuses the same R7cb6c config envelope as audio', () => {
|
|
expect(SLIDE_DECK_CONFIG_BLOCK).toEqual([
|
|
2, null, null,
|
|
[1, null, null, null, null, null, null, null, null, null, [1]],
|
|
[[1, 4, 2, 3, 6]],
|
|
]);
|
|
});
|
|
|
|
it('buildCreateSlidesArgs matches the live-captured slide-deck wire format', () => {
|
|
const projectId = '17e2b882-6a01-4c6c-9262-0738dfa2abee';
|
|
const sourceA = '493b9ddd-453b-4523-b638-bb560b37723c';
|
|
const sourceB = '182508cf-9afd-4db5-8640-2f8cafcc7111';
|
|
expect(buildCreateSlidesArgs(projectId, [sourceA, sourceB])).toEqual([
|
|
[2, null, null, [1, null, null, null, null, null, null, null, null, null, [1]], [[1, 4, 2, 3, 6]]],
|
|
projectId,
|
|
[
|
|
null, null, 8,
|
|
[[[sourceA]], [[sourceB]]],
|
|
null, null,
|
|
null, null, null, null, null, null, null, null, null, null,
|
|
[[null, 'en', 1, 3]],
|
|
],
|
|
]);
|
|
});
|
|
|
|
it('buildCreateSlidesArgs honours --language and --length overrides', () => {
|
|
const args = buildCreateSlidesArgs('pid', ['s1'], { language: 'zh', length: 1 });
|
|
expect(args[2][16]).toEqual([[null, 'zh', 1, 1]]);
|
|
});
|
|
|
|
it('parseSlideDeckLength defaults empty values and rejects invalid input', () => {
|
|
expect(parseSlideDeckLength(undefined)).toBe(3);
|
|
expect(parseSlideDeckLength('')).toBe(3);
|
|
expect(parseSlideDeckLength('1')).toBe(1);
|
|
expect(() => parseSlideDeckLength('many')).toThrow(ArgumentError);
|
|
expect(() => parseSlideDeckLength(0)).toThrow(ArgumentError);
|
|
});
|
|
|
|
it('parseSlidesIdFromResult finds a UUID-shaped slides id anywhere in the tree', () => {
|
|
const id = '1f8ada7d-cb33-49a4-8498-c5b81c1a899d';
|
|
expect(parseSlidesIdFromResult([[id, 'opencli-slides-test']])).toBe(id);
|
|
expect(parseSlidesIdFromResult({ artifactId: id })).toBe(id);
|
|
});
|
|
|
|
it('parseSlidesIdFromResult ignores non-UUID strings and empty inputs', () => {
|
|
expect(parseSlidesIdFromResult([[null, 'opencli-slides-test']])).toBe('');
|
|
expect(parseSlidesIdFromResult({})).toBe('');
|
|
expect(parseSlidesIdFromResult([])).toBe('');
|
|
expect(parseSlidesIdFromResult(null)).toBe('');
|
|
});
|
|
|
|
it('parseSlidesIdFromResult skips notebook/source ids before selecting the generated deck id', () => {
|
|
const notebookId = '17e2b882-6a01-4c6c-9262-0738dfa2abee';
|
|
const sourceId = '493b9ddd-453b-4523-b638-bb560b37723c';
|
|
const slidesId = '1f8ada7d-cb33-49a4-8498-c5b81c1a899d';
|
|
expect(parseSlidesIdFromResult([notebookId, [[sourceId]], [slidesId]], [notebookId, sourceId])).toBe(slidesId);
|
|
});
|
|
|
|
it('refuses to trigger remote slide generation without --execute', async () => {
|
|
const command = getRegistry().get('notebooklm/generate-slides');
|
|
const page = { goto: vi.fn() };
|
|
await expect(command.func(page, {
|
|
notebook: '17e2b882-6a01-4c6c-9262-0738dfa2abee',
|
|
})).rejects.toThrow(ArgumentError);
|
|
expect(page.goto).not.toHaveBeenCalled();
|
|
});
|
|
});
|