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
77 lines
2.8 KiB
JavaScript
77 lines
2.8 KiB
JavaScript
import { describe, it, expect, vi } from 'vitest';
|
|
|
|
const { __test__ } = await import('./search.js');
|
|
const command = __test__.command;
|
|
|
|
function createPageMock(evaluateResult = []) {
|
|
return {
|
|
goto: vi.fn().mockResolvedValue(undefined),
|
|
wait: vi.fn().mockResolvedValue(undefined),
|
|
evaluate: vi.fn().mockResolvedValue(evaluateResult),
|
|
};
|
|
}
|
|
|
|
describe('brave search', () => {
|
|
it('should register as a valid command', () => {
|
|
expect(command).toBeDefined();
|
|
expect(command.site).toBe('brave');
|
|
expect(command.name).toBe('search');
|
|
expect(command.access).toBe('read');
|
|
expect(command.browser).toBe(true);
|
|
expect(command.strategy).toBe('public');
|
|
expect(command.domain).toBe('search.brave.com');
|
|
});
|
|
|
|
it('should define keyword positional arg', () => {
|
|
const kwArg = command.args.find(a => a.name === 'keyword');
|
|
expect(kwArg).toBeDefined();
|
|
expect(kwArg.positional).toBe(true);
|
|
expect(kwArg.required).toBe(true);
|
|
});
|
|
|
|
it('should define limit arg with default 10', () => {
|
|
const limitArg = command.args.find(a => a.name === 'limit');
|
|
expect(limitArg).toBeDefined();
|
|
expect(limitArg.type).toBe('int');
|
|
expect(limitArg.default).toBe(10);
|
|
});
|
|
|
|
it('should define output columns', () => {
|
|
expect(command.columns).toContain('rank');
|
|
expect(command.columns).toContain('title');
|
|
expect(command.columns).toContain('url');
|
|
expect(command.columns).toContain('snippet');
|
|
});
|
|
|
|
it('rejects empty query, invalid limit, and invalid offset before navigation', async () => {
|
|
const page = createPageMock();
|
|
await expect(command.func(page, { keyword: '', limit: 5 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
await expect(command.func(page, { keyword: 'opencli', limit: 19 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
await expect(command.func(page, { keyword: 'opencli', limit: 5, offset: -1 })).rejects.toMatchObject({ code: 'ARGUMENT' });
|
|
expect(page.goto).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('unwraps browser envelopes and returns ranked HTTPS rows', async () => {
|
|
const page = createPageMock({
|
|
session: 'site:brave',
|
|
data: [['OpenCLI', 'https://github.com/jackwener/OpenCLI', 'CLI browser tooling']],
|
|
});
|
|
|
|
await expect(command.func(page, { keyword: 'opencli', limit: 1, offset: 1 })).resolves.toEqual([{
|
|
rank: 19,
|
|
title: 'OpenCLI',
|
|
url: 'https://github.com/jackwener/OpenCLI',
|
|
snippet: 'CLI browser tooling',
|
|
}]);
|
|
});
|
|
|
|
it('fails typed instead of silently returning [] for malformed extraction payloads', async () => {
|
|
const page = createPageMock({ rows: [] });
|
|
|
|
await expect(command.func(page, { keyword: 'opencli', limit: 1 })).rejects.toMatchObject({
|
|
code: 'COMMAND_EXEC',
|
|
message: expect.stringContaining('payload shape'),
|
|
});
|
|
});
|
|
});
|