Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

90 lines
3.9 KiB
JavaScript

import { describe, expect, it, vi } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import { ArgumentError, CommandExecutionError } from '@jackwener/opencli/errors';
import './thread-snapshot.js';
const { canonicalizeLinkedInThreadUrl, parseMaxScrolls } = await import('./thread-snapshot.js').then((m) => m.__test__);
function makeFakePage(snapshot) {
return {
goto: vi.fn(async () => undefined),
wait: vi.fn(async () => undefined),
evaluate: vi.fn(async () => snapshot),
};
}
describe('linkedin thread-snapshot command', () => {
it('accepts only exact LinkedIn messaging thread URLs', () => {
expect(canonicalizeLinkedInThreadUrl('https://www.linkedin.com/messaging/thread/2-abc==/?mini=true#x'))
.toBe('https://www.linkedin.com/messaging/thread/2-abc==/');
expect(canonicalizeLinkedInThreadUrl('https://www.linkedin.com/messaging/thread/2-abc==/extra')).toBe('');
expect(canonicalizeLinkedInThreadUrl('https://evil-linkedin.com/messaging/thread/2-abc==/')).toBe('');
expect(canonicalizeLinkedInThreadUrl('http://www.linkedin.com/messaging/thread/2-abc==/')).toBe('');
});
it('validates max-scrolls without silent clamping', () => {
expect(parseMaxScrolls(undefined)).toBe(30);
expect(parseMaxScrolls(0)).toBe(0);
expect(parseMaxScrolls(80)).toBe(80);
expect(() => parseMaxScrolls(81)).toThrow('--max-scrolls must be an integer between 0 and 80');
expect(() => parseMaxScrolls(1.5)).toThrow('--max-scrolls must be an integer between 0 and 80');
});
it('registers as a read command for loading full thread context', () => {
const command = getRegistry().get('linkedin/thread-snapshot');
expect(command).toBeDefined();
expect(command.access).toBe('read');
expect(command.columns).toEqual(expect.arrayContaining(['thread_url', 'recipient', 'message_count', 'latest_text']));
});
it('opens messaging first, then exact thread, and returns extracted messages', async () => {
const command = getRegistry().get('linkedin/thread-snapshot');
const page = makeFakePage({
url: 'https://www.linkedin.com/messaging/thread/abc/',
headerNames: ['Neha Rudraraju'],
latestMessageText: 'safe-send test from hermes. pls ignore :)',
messages: [
{ index: 0, speaker: 'Neha Rudraraju', text: 'damn i just saw ur msg sry sry' },
{ index: 1, speaker: 'Me', text: 'safe-send test from hermes. pls ignore :)' },
],
});
const rows = await command.func(page, {
'thread-url': 'https://www.linkedin.com/messaging/thread/abc/',
'max-scrolls': 8,
json: false,
});
expect(page.goto).toHaveBeenNthCalledWith(1, 'https://www.linkedin.com/messaging/');
expect(page.goto).toHaveBeenNthCalledWith(2, 'https://www.linkedin.com/messaging/thread/abc/');
expect(rows[0]).toMatchObject({
thread_url: 'https://www.linkedin.com/messaging/thread/abc/',
recipient: 'Neha Rudraraju',
message_count: 2,
latest_text: 'safe-send test from hermes. pls ignore :)',
});
expect(rows[0].snapshot_json).toContain('damn i just saw ur msg sry sry');
});
it('rejects invalid thread URL before navigation', async () => {
const command = getRegistry().get('linkedin/thread-snapshot');
const page = makeFakePage({});
await expect(command.func(page, {
'thread-url': 'https://www.linkedin.com/feed/',
'max-scrolls': 8,
})).rejects.toBeInstanceOf(ArgumentError);
expect(page.goto).not.toHaveBeenCalled();
});
it('fails typed on malformed snapshot payloads', async () => {
const command = getRegistry().get('linkedin/thread-snapshot');
const page = makeFakePage({ url: 'https://www.linkedin.com/messaging/thread/abc/', headerNames: ['Neha Rudraraju'] });
await expect(command.func(page, {
'thread-url': 'https://www.linkedin.com/messaging/thread/abc/',
'max-scrolls': 8,
})).rejects.toBeInstanceOf(CommandExecutionError);
});
});