mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
d2974a9ff6
* refactor(adapters): convert adapter layer from TypeScript to JavaScript Core framework stays TypeScript; adapter layer moves to JS-first. Adapters are essentially "executable config + browser scripts" that barely use TS features — this simplifies the build/distribution pipeline by removing the dist/clis/ intermediate compilation step. Changes: - Convert all 753 adapter files in clis/ from .ts to .js - Update tsconfig to exclude clis/ from compilation - Simplify build-manifest to scan clis/*.js directly (no dist/clis/) - Update discovery, main, fetch-adapters to load JS adapters from clis/ - Update generate-verified to output .js artifacts - Update package.json files field: dist/clis/ → clis/ - Fix all test files for the .ts → .js transition * fix(main): use findPackageRoot for BUILTIN_CLIS path The previous relative path (../../clis from __dirname) only worked for dist/src/main.js but broke dev mode (tsx src/main.ts) where __dirname is <repo>/src — resolving to /clis instead of <repo>/clis. Use findPackageRoot() which works for both dev and prod paths.
45 lines
3.1 KiB
JavaScript
45 lines
3.1 KiB
JavaScript
import { describe, expect, it } from 'vitest';
|
|
import { __test__ } from './shared.js';
|
|
describe('amazon shared helpers', () => {
|
|
it('builds canonical product and discussion URLs from ASINs and product URLs', () => {
|
|
expect(__test__.buildProductUrl('B0FJS72893')).toBe('https://www.amazon.com/dp/B0FJS72893');
|
|
expect(__test__.buildProductUrl('https://www.amazon.com/dp/B0FJS72893/ref=something')).toBe('https://www.amazon.com/dp/B0FJS72893');
|
|
expect(__test__.buildDiscussionUrl('https://www.amazon.com/dp/B0FJS72893')).toBe('https://www.amazon.com/product-reviews/B0FJS72893');
|
|
});
|
|
it('parses price, rating, and review-count text', () => {
|
|
expect(__test__.parsePriceText('1 offer from $34.11')).toEqual({
|
|
price_text: '$34.11',
|
|
price_value: 34.11,
|
|
currency: 'USD',
|
|
});
|
|
expect(__test__.parseRatingValue('3.9 out of 5 stars, rating details')).toBe(3.9);
|
|
expect(__test__.parseReviewCount('27 global ratings')).toBe(27);
|
|
expect(__test__.parseReviewCount('(2.9K)')).toBe(2900);
|
|
expect(__test__.parseReviewCount('1.2M global ratings')).toBe(1200000);
|
|
expect(__test__.extractReviewCountFromCardText('Desk Shelf\n4.3 out of 5 stars\n435\n$25.92')).toBe('435');
|
|
});
|
|
it('recognizes robot checks and Amazon-owned merchants', () => {
|
|
expect(__test__.isAmazonEntity('Ships from Amazon')).toBe(true);
|
|
expect(__test__.trimRatingPrefix('5.0 out of 5 stars Great value and quality')).toBe('Great value and quality');
|
|
expect(__test__.isRobotState({
|
|
title: 'Robot Check',
|
|
body_text: 'Sorry, we just need to make sure you\'re not a robot',
|
|
})).toBe(true);
|
|
});
|
|
it('requires a real best-sellers URL or path', () => {
|
|
expect(__test__.resolveBestsellersUrl('/Best-Sellers/zgbs')).toBe('https://www.amazon.com/Best-Sellers/zgbs');
|
|
expect(() => __test__.resolveBestsellersUrl('desk shelf organizer')).toThrow('amazon bestsellers expects a best sellers URL or /zgbs path');
|
|
});
|
|
it('resolves and validates all ranking list URLs', () => {
|
|
expect(__test__.resolveRankingUrl('new_releases')).toBe('https://www.amazon.com/gp/new-releases');
|
|
expect(__test__.resolveRankingUrl('movers_shakers')).toBe('https://www.amazon.com/gp/movers-and-shakers');
|
|
expect(__test__.resolveRankingUrl('new_releases', '/gp/new-releases/kitchen')).toBe('https://www.amazon.com/gp/new-releases/kitchen');
|
|
expect(__test__.resolveRankingUrl('bestsellers', 'https://www.amazon.com/Best-Sellers/zgbs/ref=zg_bsnr_tab_bs')).toBe('https://www.amazon.com/Best-Sellers/zgbs');
|
|
expect(() => __test__.resolveRankingUrl('movers_shakers', 'https://example.com/gp/movers-and-shakers')).toThrow('Invalid Amazon URL');
|
|
});
|
|
it('extracts category node id from URL best effort', () => {
|
|
expect(__test__.extractCategoryNodeId('https://www.amazon.com/Best-Sellers-Home-Kitchen/zgbs/home-garden/3744371')).toBe('3744371');
|
|
expect(__test__.extractCategoryNodeId('https://www.amazon.com/s?k=desk+organizer&rh=n%3A1064954')).toBe('1064954');
|
|
});
|
|
});
|