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

68 lines
2.3 KiB
JavaScript

import { describe, expect, it } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import { CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
import './profile-analytics.js';
const {
normalizeProfileAnalyticsUrl,
parseMetric,
parseDashboardMetrics,
normalizeAnalytics,
} = await import('./profile-analytics.js').then((m) => m.__test__);
describe('linkedin profile-analytics adapter', () => {
const command = getRegistry().get('linkedin/profile-analytics');
it('registers command shape', () => {
expect(command).toBeDefined();
expect(command.strategy).toBe('cookie');
expect(command.browser).toBe(true);
expect(command.columns).toEqual([
'profile_url',
'profile_views',
'post_impressions',
'search_appearances',
'followers',
'connections',
'raw_analytics',
]);
});
it('normalizes profile url default and explicit /in URL', () => {
expect(normalizeProfileAnalyticsUrl(undefined)).toBe('https://www.linkedin.com/in/me/');
expect(normalizeProfileAnalyticsUrl('https://www.linkedin.com/in/gauravsaxena1997/')).toBe('https://www.linkedin.com/in/gauravsaxena1997/');
});
it('rejects non-profile URLs', () => {
expect(() => normalizeProfileAnalyticsUrl('https://www.linkedin.com/jobs/')).toThrow(CommandExecutionError);
});
it('parses compact dashboard metrics', () => {
expect(parseMetric('1.2K')).toBe('1200');
expect(parseDashboardMetrics('31 post impressions 23 search appearances 32 profile views 1,234 followers 500 connections'))
.toEqual({
profile_views: '32',
post_impressions: '31',
search_appearances: '23',
followers: '1234',
connections: '500',
});
});
it('normalizes browser payload into columns', () => {
expect(normalizeAnalytics({
profile_url: 'https://www.linkedin.com/in/me/',
raw_analytics: '31 post impressions | 23 search appearances | 32 profile views',
})).toMatchObject({
profile_views: '32',
post_impressions: '31',
search_appearances: '23',
});
});
it('does not emit an all-empty analytics row', () => {
expect(() => normalizeAnalytics({ profile_url: 'https://www.linkedin.com/in/me/', raw_analytics: '' }))
.toThrow(EmptyResultError);
});
});