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

115 lines
5.3 KiB
JavaScript

import { describe, expect, it, vi } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import { ArgumentError, AuthRequiredError, CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
import './course.js';
const { parseSlug, parseCourse } = await import('./course.js').then((m) => m.__test__);
function makePage({ evaluateResult, cookies = [{ name: 'JSESSIONID', value: '"ajax:abc"' }] } = {}) {
return {
goto: vi.fn().mockResolvedValue(undefined),
wait: vi.fn().mockResolvedValue(undefined),
getCookies: vi.fn().mockResolvedValue(cookies),
evaluate: vi.fn().mockResolvedValue(evaluateResult),
};
}
describe('linkedin-learning course', () => {
it('accepts a bare slug', () => {
expect(parseSlug('agentic-ai-build')).toBe('agentic-ai-build');
});
it('extracts a slug from a full /learning/<slug> URL', () => {
expect(parseSlug('https://www.linkedin.com/learning/agentic-ai-build/?foo=1'))
.toBe('agentic-ai-build');
});
it('rejects non-LinkedIn Learning URLs before navigation', () => {
expect(() => parseSlug('https://evil.example/learning/agentic-ai-build')).toThrow(ArgumentError);
expect(() => parseSlug('https://www.linkedin.com/feed/update/123')).toThrow(ArgumentError);
});
it('rejects empty or invalid slugs with ArgumentError', () => {
expect(() => parseSlug('')).toThrow(ArgumentError);
expect(() => parseSlug(' ')).toThrow(ArgumentError);
expect(() => parseSlug('not a slug!')).toThrow(ArgumentError);
});
it('maps a course detail element to the canonical row shape', () => {
const el = {
title: 'Agentic AI: Build Your First Agentic AI System',
description: { text: 'Dive into agentic AI...' },
duration: { duration: 3932, unit: 'SECOND' },
difficultyLevel: 'Intermediate',
videosCount: 18,
rating: { averageRating: 4.5, ratingCount: 259 },
activatedAt: 1774569600000,
};
const row = parseCourse(el, 'agentic-ai-build-your-first-agentic-ai-system');
expect(row.title).toBe('Agentic AI: Build Your First Agentic AI System');
expect(row.slug).toBe('agentic-ai-build-your-first-agentic-ai-system');
expect(row.description).toBe('Dive into agentic AI...');
expect(row.difficulty).toBe('Intermediate');
expect(row.duration_sec).toBe('3932');
expect(row.videos_count).toBe(18);
expect(row.rating).toBe('4.50');
expect(row.rating_count).toBe(259);
expect(row.released).toBe('2026-03-27');
expect(row.url).toBe('https://www.linkedin.com/learning/agentic-ai-build-your-first-agentic-ai-system');
});
it('handles description as a bare string', () => {
const row = parseCourse({ title: 't', description: 'plain string' }, 'x');
expect(row.description).toBe('plain string');
});
it('preserves the full course description', () => {
const text = 'x'.repeat(350);
const row = parseCourse({ title: 't', description: { text } }, 'x');
expect(row.description).toBe(text);
});
it('returns empty fields when upstream omits them', () => {
const row = parseCourse({ title: 't' }, 'x');
expect(row.title).toBe('t');
expect(row.duration_sec).toBe('');
expect(row.rating).toBe('');
expect(row.released).toBe('');
});
it('returns null when upstream omits the core title evidence', () => {
expect(parseCourse({}, 'x')).toBeNull();
expect(parseCourse({ title: ' ' }, 'x')).toBeNull();
});
it('throws AuthRequiredError when JSESSIONID is missing', async () => {
const cmd = getRegistry().get('linkedin-learning/course');
const page = makePage({ cookies: [], evaluateResult: { json: { elements: [{}] } } });
await expect(cmd.func(page, { slug: 'agentic-ai-build' })).rejects.toBeInstanceOf(AuthRequiredError);
});
it('throws EmptyResultError when no element matches the slug', async () => {
const cmd = getRegistry().get('linkedin-learning/course');
const page = makePage({ evaluateResult: { json: { elements: [] } } });
await expect(cmd.func(page, { slug: 'agentic-ai-build' })).rejects.toBeInstanceOf(EmptyResultError);
});
it('throws CommandExecutionError when the elements array is missing', async () => {
const cmd = getRegistry().get('linkedin-learning/course');
const page = makePage({ evaluateResult: { json: { data: {} } } });
await expect(cmd.func(page, { slug: 'agentic-ai-build' })).rejects.toBeInstanceOf(CommandExecutionError);
});
it('throws CommandExecutionError when the first detail element is malformed', async () => {
const cmd = getRegistry().get('linkedin-learning/course');
const page = makePage({ evaluateResult: { json: { elements: [{}] } } });
await expect(cmd.func(page, { slug: 'agentic-ai-build' })).rejects.toBeInstanceOf(CommandExecutionError);
});
it('throws CommandExecutionError on fetch errors', async () => {
const cmd = getRegistry().get('linkedin-learning/course');
const page = makePage({ evaluateResult: { error: 'HTTP 500' } });
await expect(cmd.func(page, { slug: 'agentic-ai-build' })).rejects.toBeInstanceOf(CommandExecutionError);
});
});