SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
2.8 KB · 52 lines typescript
Raw Blame History
1import { describe, expect, it } from 'vitest';2import meta from './meta.json' with { type: 'json' };3import { localMeta } from '../../api/_lib/local-meta.js';4import { listFixtures, loadFixture, runFixtureSuite } from '@rareindex/connectors/testing';5import createConnector, { availabilityOf, parseCategoryPage, type PagePayload } from './index.js';67const connector = createConnector(localMeta(meta));89describe('entertainment-earth', () => {10  runFixtureSuite(connector, it, expect);1112  it('parses product tiles and pagination from the saved category page', () => {13    const fx = loadFixture('entertainment-earth', 's-action-figures-p-p1');14    const p = fx.raw.payload as PagePayload;15    const parsed = parseCategoryPage(p.snapshot!, fx.raw.url, p.seed, p.categorySlug, 1);16    expect(parsed.tiles.length).toBe(4);17    expect(parsed.totalPages).toBe(73);18    const t = parsed.tiles.find((x) => x.sku === 'BFEH0021')!;19    expect(t).toMatchObject({ name: 'Epic H.A.C.K.S. Rand Arora: Gamma Squad Leader 6-Inch Action Figure', price: 39.99, company: 'Boss Fight Studio', theme: 'Vitruvian H.A.C.K.S.', collect: 'Action Figures' });20    expect(t.url).toBe('https://www.entertainmentearth.com/product/epic-hacks-rand-arora-gamma-squad-leader-6inch-action-figure/bfeh0021');21    expect(t.image).toMatch(/^https:\/\/media\.entertainmentearth\.com\//);22    expect(t.buttonText).toMatch(/Pre-Order/);23  });2425  it('maps button labels to availability', () => {26    expect(availabilityOf('Pre-Order: Add to Cart')).toEqual({ availability: 'available', preorder: true });27    expect(availabilityOf('Add to Cart')).toEqual({ availability: 'available', preorder: false });28    expect(availabilityOf('Sold Out')).toEqual({ availability: 'sold', preorder: false });29    expect(availabilityOf(null)).toEqual({ availability: 'unknown', preorder: false });30  });3132  it('normalises tiles into USD listings with brand/franchise/sku per seed category', async () => {33    for (const name of listFixtures('entertainment-earth')) {34      const fx = loadFixture('entertainment-earth', name);35      const p = fx.raw.payload as PagePayload;36      const out = await connector.normalize(fx.raw);37      expect(out.length).toBeGreaterThan(0);38      for (const r of out) {39        if (r.kind !== 'listing') throw new Error('expected listing');40        expect(r.attributes.categorySlug).toBe(p.categorySlug);41        expect(r.currency).toBe('USD');42        expect(r.price).toBeGreaterThan(0);43        expect(r.attributes.identifiers.sku).toBe(r.externalId);44        expect(r.seller).toBe('Entertainment Earth');45        expect(r.condition.completeness).toBe('sealed');46      }47    }48    const funko = await connector.normalize(loadFixture('entertainment-earth', 's-funko-c-p1').raw);49    expect(funko.every((r) => r.kind === 'listing' && r.attributes.categorySlug === 'funko')).toBe(true);50  });51});52