TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1import { describe, expect, it } from 'vitest';2import { ConnectorMetaSchema } from '@rareindex/connectors';3import { loadFixture, runFixtureSuite } from '@rareindex/connectors/testing';4import metaJson from './meta.json' with { type: 'json' };5import createConnector, { parseAuctionList, parseLotMarkdown } from './index.js';67const connector = createConnector(ConnectorMetaSchema.parse(metaJson));89describe('whisky-hammer', () => {10 runFixtureSuite(connector, it, expect);1112 it('maps sold lots to GBP hammer sales with per-lot dates', async () => {13 const fx = loadFixture('whisky-hammer', 'lot-page');14 const out = await connector.normalize(fx.raw);15 expect(out.length).toBeGreaterThan(0);16 for (const r of out) {17 if (r.kind !== 'sale') throw new Error('expected sale');18 expect(r.currency).toBe('GBP');19 expect(r.buyerPremiumIncluded).toBe(false);20 expect(r.attributes.identifiers.whiskyhammer_item).toMatch(/^\d+$/);21 expect(r.sourceUrl).toMatch(/^https:\/\/www\.whiskyhammer\.com\/item\/\d+\//);22 expect(r.saleDate.getUTCFullYear()).toBeGreaterThan(2015);23 }24 });2526 it('parses markdown lot blocks and the auction list', () => {27 const md = `4354 Items\n\n[](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`;28 const p = parseLotMarkdown(md);29 expect(p.totalItems).toBe(4354);30 expect(p.totalPages).toBe(88);31 expect(p.lots).toHaveLength(2);32 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' });33 expect(p.lots[1]!.priceGbp).toBeNull();34 expect(parseAuctionList('<a href="/auction/past/auc-100/">a</a><a href="/auction/past/auc-129/">b</a>')).toEqual(['129', '100']);35 });36});37