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%
4.8 KB · 65 lines typescript
Raw Blame History
1import { describe, expect, it } from 'vitest';2import { readFileSync } from 'node:fs';3import path from 'node:path';4import { fileURLToPath } from 'node:url';5import { loadFixture, runFixtureSuite } from '@rareindex/connectors/testing';6import { localMeta } from '../_lib/local-meta.js';7import createConnector, { parseCatalogPage, parsePastList, potterCategory } from './index.js';89const dir = path.dirname(fileURLToPath(import.meta.url));10const connector = createConnector(localMeta(JSON.parse(readFileSync(path.join(dir, 'meta.json'), 'utf8'))));1112const LIST = `<li id="st-23628"> <div class="row" data-event_id='23628' data-event_status='past' data-event_name='Modern Magic Masters' > <a href="https://auction.potterauctions.com/auctions/potter-potter/modern-magic-masters-23628"><img src="x"/></a> <h1><a href="https://auction.potterauctions.com/auctions/potter-potter/modern-magic-masters-23628">Modern Magic Masters</a></h1> <span>Start: Aug 15, 2026 11:00AM EDT </span></div></li>`;1314const CATALOG = `<div>499 Lots</div>15<img src="https://s1.img.bidsquare.com/item/l/3762/37629123.jpeg?t=1WC8TA" itemprop="image" />16<div class="lot_Num">Lot 1</div> <div class="lot_title"> <a href="https://auction.potterauctions.com/online-auctions/potter-potter/mullica-tom-9520114">MULLICA, Tom (1948 - 2016). TAOM Appearance Poster. </a></div>17<div class="estimate_amount dual_conversion" data-exchange='{"low_est":"300.00","high_est":"600.00","from_exch_rate":"1.00","from_symbol":"$"}'>18<span id="tbc_9520114_23628" class="num">7 Bids</span><span id="lbl_9520114_23628">Sold for</span><div class="currency_container"><span id="tcb_9520114_23628" class="price ">$420</span></div>19<img src="https://s1.img.bidsquare.com/item/l/3762/37629124.jpeg?t=1WC8TB" itemprop="image" />20<div class="lot_Num">Lot 2</div> <div class="lot_title"> <a href="https://auction.potterauctions.com/online-auctions/potter-potter/bicycle-deck-9520115">Bicycle Transformation Playing Cards Deck. </a></div>21<div class="estimate_amount dual_conversion" data-exchange='{"low_est":"100.00","high_est":"200.00","from_exch_rate":"1.00","from_symbol":"$"}'>22<span id="lbl_9520115_23628">Passed</span>23`;2425describe('potter-auctions', () => {26  runFixtureSuite(connector, it, expect);2728  it('parses the past list and catalog cards', () => {29    const auctions = parsePastList(LIST);30    expect(auctions).toEqual([{ id: '23628', slug: 'modern-magic-masters', title: 'Modern Magic Masters', url: 'https://auction.potterauctions.com/auctions/potter-potter/modern-magic-masters-23628', startText: 'Aug 15, 2026 11:00AM EDT' }]);31    const p = parseCatalogPage(CATALOG, auctions[0]!, 1);32    expect(p.totalLots).toBe(499);33    expect(p.lots.length).toBe(2);34    expect(p.lots[0]).toMatchObject({ lotNumber: '1', priceText: '$420', statusLabel: 'Sold for', bids: 7, estimateLow: 300, estimateHigh: 600, image: 'https://s1.img.bidsquare.com/item/l/3762/37629123.jpeg?t=1WC8TA' });35    expect(p.lots[1]).toMatchObject({ lotNumber: '2', priceText: null, statusLabel: 'Passed' });36  });3738  it('normalises only sold lots as hammer-price sales dated by the auction start', async () => {39    const auction = parsePastList(LIST)[0]!;40    const out = await connector.normalize({ url: 'x', externalId: 'a', kind: 'sale', engine: 'api', fetchedAt: new Date('2026-09-07T00:00:00Z'), payload: parseCatalogPage(CATALOG, auction, 1) });41    expect(out.length).toBe(1);42    const s = out[0]!;43    if (s.kind !== 'sale') throw new Error('sale');44    expect(s).toMatchObject({ price: 420, currency: 'USD', buyerPremiumIncluded: false, lotNumber: '1', auctionHouse: 'Potter & Potter Auctions' });45    expect(s.saleDate.toISOString()).toBe('2026-08-15T00:00:00.000Z');46    expect(s.attributes.categorySlug).toBe('advertising');47    expect(s.attributes.identifiers.potter_lot).toBe('23628-1');48  });4950  it('maps departments to taxonomy slugs', () => {51    expect(potterCategory('Modern Magic Masters', 'Bicycle Transformation Playing Cards Deck.')).toBe('playing_cards');52    expect(potterCategory('Gambling Memorabilia', 'Ivory poker chips in case')).toBe('casino_memorabilia');53    expect(potterCategory('Fine Books & Manuscripts', 'HOUDINI, Harry. A Magician Among the Spirits. First edition.')).toBe('books');54    expect(potterCategory('Hollywood & Pop Culture Collectibles', 'Star Wars one-sheet poster')).toBe('movie_posters');55    expect(potterCategory('Modern Magic Masters', 'Okito Coin Box, brass, ca. 1950')).toBe('antiques');56    expect(potterCategory('Picture This: Fine Vintage Photography', 'Portrait, gelatin silver print')).toBe('photography');57  });5859  it('fixture sales are hammer prices in USD', async () => {60    const out = await connector.normalize(loadFixture('potter-auctions', 'catalog-page').raw);61    expect(out.length).toBeGreaterThan(0);62    for (const r of out) if (r.kind === 'sale') expect(r).toMatchObject({ currency: 'USD', buyerPremiumIncluded: false });63  });64});65