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%
5.0 KB · 60 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 '../../api/_lib/local-meta.js';7import createConnector, { cherrystoneCategory, parseCategoryLinks, parseCategoryPage, parseHome } 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 HOME_MD = `[Click here](https://auctions.cherrystoneauctions.com/catalog.aspx?auctionid=34) for Prices Realized from U.S. and Worldwide Sale - July 28-29, 20261314[Click here](https://auctions.cherrystoneauctions.com/catalog.aspx?auctionid=23) for Prices Realized from The Confederate Stamps and Covers Sale - June 9, 2026`;15const HOME_HTML = `<a href="https://auctions.cherrystoneauctions.com/catalog.aspx?auctionid=34">Click here</a> for Prices Realized from U.S. and Worldwide Sale - July 28-29, 2026<br>`;16const CATALOG = `<a href="https://auctions.cherrystoneauctions.com/Category/All-1.html?auctionid=34">All</a><a href="https://auctions.cherrystoneauctions.com/Category/1847_Issue-4150.html?auctionid=34">1847 Issue</a><a href="https://auctions.cherrystoneauctions.com/Category/1847_Issue-4150.html?auctionid=34">dup</a><a href="/Category/Confederate_States-99.html?auctionid=35">other</a>`;17const PAGE = `<div id="galleryList"><ul><li><div class="lot "><div class="lotInner"><h5><span id="LotLabel">Lot </span><span class="LotNumberSign">#</span><span id="LotNumber">10</span><span id="LotNumberColon">: </span><span id="LotName"><a href="https://auctions.cherrystoneauctions.com/United_States_1847_Issue-LOT34097.aspx">United States 1847 Issue (1P1-2P1) 1847 5c red brown, 10c black, large die proofs, v.f., cat. value $1600 </a></span></h5><div class="imageDiv"><a href="x"><center><img class="lotImage" src="https://auctions.cherrystoneauctions.com/ItemImages/000034/34097A_sm.jpeg"></center></a></div><div class="lotData"><h6><span>Final Price: $750</span></h6><h6><span>Estimate: $450 - $500</span></h6></div></div></div></li>18<li><div class="lot "><div class="lotInner"><h5><span id="LotNumber">11</span><span id="LotName"><a href="https://auctions.cherrystoneauctions.com/x-LOT34098.aspx">United States 1847 Issue (2) 10c black, unused, fine</a></span></h5><div class="lotData"><h6><span>Estimate: $1,000 - $1,200</span></h6></div></div></div></li></ul></div>`;1920describe('cherrystone', () => {21  runFixtureSuite(connector, it, expect);2223  it('parses home (markdown and HTML), category links and lot cards', () => {24    expect(parseHome(HOME_MD)).toEqual([25      { id: '34', title: 'U.S. and Worldwide Sale', dateText: 'July 28-29, 2026' },26      { id: '23', title: 'The Confederate Stamps and Covers Sale', dateText: 'June 9, 2026' },27    ]);28    expect(parseHome(HOME_HTML)[0]).toMatchObject({ id: '34' });29    expect(parseCategoryLinks(CATALOG, '34')).toEqual([{ name: '1847 Issue', url: 'https://auctions.cherrystoneauctions.com/Category/1847_Issue-4150.html?auctionid=34' }]);30    const p = parseCategoryPage(PAGE, { id: '34', title: 'U.S. and Worldwide Sale', dateText: 'July 28-29, 2026' }, '1847 Issue', 'u');31    expect(p.lots.length).toBe(2);32    expect(p.lots[0]).toMatchObject({ lotNumber: '10', finalPriceText: '$750', estimateText: '$450 - $500', image: 'https://auctions.cherrystoneauctions.com/ItemImages/000034/34097A_sm.jpeg' });33    expect(p.lots[1]!.finalPriceText).toBeNull();34  });3536  it('normalises sold lots only, dated by the sale date, premium unknown', async () => {37    const payload = parseCategoryPage(PAGE, { id: '34', title: 'U.S. and Worldwide Sale', dateText: 'July 28-29, 2026' }, '1847 Issue', 'u');38    const out = await connector.normalize({ url: 'u', externalId: 'a', kind: 'sale', engine: 'firecrawl', fetchedAt: new Date('2026-09-07T00:00:00Z'), payload });39    expect(out.length).toBe(1);40    const s = out[0]!;41    if (s.kind !== 'sale') throw new Error('sale');42    expect(s).toMatchObject({ price: 750, currency: 'USD', buyerPremiumIncluded: null, lotNumber: '10', auctionHouse: 'Cherrystone Auctions' });43    expect(s.saleDate.toISOString()).toBe('2026-07-28T00:00:00.000Z');44    expect(s.attributes).toMatchObject({ categorySlug: 'stamps', set: '1847 Issue', year: 1847 });45    expect(s.attributes.identifiers.cherrystone_lot).toBe('34097');46  });4748  it('maps banknotes and coins when titled so', () => {49    expect(cherrystoneCategory('United States 1847 Issue 5c red brown')).toBe('stamps');50    expect(cherrystoneCategory('Confederate States $100 note, 1864, fine')).toBe('banknotes');51    expect(cherrystoneCategory('1921 Morgan silver dollar coin, uncirculated')).toBe('coins');52  });5354  it('fixture lots normalise to USD sales', async () => {55    const out = await connector.normalize(loadFixture('cherrystone', 'category-page').raw);56    expect(out.length).toBeGreaterThan(0);57    for (const r of out) if (r.kind === 'sale') expect(r.currency).toBe('USD');58  });59});60