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
30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
import { describe, expect, it } from 'vitest';
|
|
import { __test__ } from './rankings.js';
|
|
describe('amazon bestsellers normalization', () => {
|
|
it('normalizes bestseller cards and infers review counts from card text', () => {
|
|
const result = __test__.normalizeRankingCandidate({
|
|
asin: 'B0DR31GC3D',
|
|
title: '',
|
|
href: 'https://www.amazon.com/NUTIKAS-Shelves-Desktop-Orgnizer-Shlef/dp/B0DR31GC3D/ref=zg_bs',
|
|
price_text: '$25.92',
|
|
rating_text: '4.3 out of 5 stars',
|
|
review_count_text: '',
|
|
card_text: 'Desk Shelves Desktop Organizer Shlef\n4.3 out of 5 stars\n435\n$25.92',
|
|
}, {
|
|
listType: 'bestsellers',
|
|
rankFallback: 2,
|
|
listTitle: 'Amazon Best Sellers: Best Desktop & Off-Surface Shelves',
|
|
sourceUrl: 'https://www.amazon.com/example',
|
|
categoryTitle: null,
|
|
categoryUrl: 'https://www.amazon.com/example',
|
|
categoryPath: [],
|
|
visibleCategoryLinks: [],
|
|
});
|
|
expect(result.rank).toBe(2);
|
|
expect(result.asin).toBe('B0DR31GC3D');
|
|
expect(result.title).toBe('Desk Shelves Desktop Organizer Shlef');
|
|
expect(result.review_count).toBe(435);
|
|
expect(result.list_title).toBe('Amazon Best Sellers: Best Desktop & Off-Surface Shelves');
|
|
});
|
|
});
|