import { describe, expect, it } from 'vitest'; import { ConnectorMetaSchema } from '@rareindex/connectors'; import { loadFixture, runFixtureSuite } from '@rareindex/connectors/testing'; import metaJson from './meta.json' with { type: 'json' }; import createConnector, { parseAuctionList, parseLotMarkdown } from './index.js'; const connector = createConnector(ConnectorMetaSchema.parse(metaJson)); describe('whisky-hammer', () => { runFixtureSuite(connector, it, expect); it('maps sold lots to GBP hammer sales with per-lot dates', async () => { const fx = loadFixture('whisky-hammer', 'lot-page'); const out = await connector.normalize(fx.raw); expect(out.length).toBeGreaterThan(0); for (const r of out) { if (r.kind !== 'sale') throw new Error('expected sale'); expect(r.currency).toBe('GBP'); expect(r.buyerPremiumIncluded).toBe(false); expect(r.attributes.identifiers.whiskyhammer_item).toMatch(/^\d+$/); expect(r.sourceUrl).toMatch(/^https:\/\/www\.whiskyhammer\.com\/item\/\d+\//); expect(r.saleDate.getUTCFullYear()).toBeGreaterThan(2015); } }); it('parses markdown lot blocks and the auction list', () => { const md = `4354 Items\n\n[![Macallan - 40 Year Old](https://www.whiskyhammer.com/uploads/images/products/newthumbs/1.jpg)](https://www.whiskyhammer.com/item/239555/Macallan/x.html "t")\n\nThis lot is being sold from our EU warehouse in Alphen aan den Rijn, The Netherlands.\n\nLot #239555\n\n\n[Macallan - 40 Year Old (The Red Collection) 2025 Release](https://www.whiskyhammer.com/item/239555/Macallan/x.html)\n\nSold 22/02/2026£9,100.00€10,634.26US$12,213.11\n\n[View Lot](https://www.whiskyhammer.com/item/239555/Macallan/x.html)\n\nLot #234781\n\n\n[Unsold Bottle](https://www.whiskyhammer.com/item/234781/Macallan/y.html)\n\n[View Lot](https://www.whiskyhammer.com/item/234781/Macallan/y.html)\n\n- [2](https://www.whiskyhammer.com/auction/past/auc-129/?page=2)\n- [88](https://www.whiskyhammer.com/auction/past/auc-129/?page=88)\n`; const p = parseLotMarkdown(md); expect(p.totalItems).toBe(4354); expect(p.totalPages).toBe(88); expect(p.lots).toHaveLength(2); expect(p.lots[0]).toMatchObject({ itemId: '239555', priceGbp: 9100, soldOn: '22/02/2026', warehouse: 'NL', image: 'https://www.whiskyhammer.com/uploads/images/products/newthumbs/1.jpg' }); expect(p.lots[1]!.priceGbp).toBeNull(); expect(parseAuctionList('ab')).toEqual(['129', '100']); }); });