TypeScript 61.9%
HTML 37.2%
SQL 0.7%
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, { fallbackDate, parseResultsIndex, parseResultsPage } 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 INDEX = `<a href="/Links/Results_E.aspx?Request=AAA">Spring 2026</a> <a href="/Links/Results_E.aspx?Request=BBB">August 2026</a> <a href="/Links/Results_E.aspx?Request=AAA">Spring 2026</a>`;13const PAGE = `<body><div>SPRING 2026 LIVE AUCTION RESULTS Sale date: Thursday, May 21 2026 SESSIONS: Post-War & Contemporary Art () Old Master, Impressionist & Modern Art () The following Lots were sold at the prices stated. Prices include Buyer's Premium.</div>14<table><tr class="height-adj-md-0x fixed_height_1"> <td><a href='#' class='text ez'>001 <span class='ez'><img src='/Images/Lots/150//PCRE-05022-0014-01.jpg'></span></a></td>15<td><span class="text"><a href="/Auction/LotDetails_E.aspx?Request=LOT1">Untitled <br /><i>Molinari, Guido </i></a></span></td><td><span class="text">$73,250 </span></td></tr>16<tr class="height-adj-md-0x fixed_height_1"> <td><a href='#' class='text ez'>002 <span class='ez'><img src='/Images/Lots/150//PCRE-04581-0021-01.jpg'></span></a></td>17<td><span class="text"><a href="/Auction/LotDetails_E.aspx?Request=LOT2">Snow Light in My House <br /><i>Pratt, Mary Frances </i></a></span></td><td><span class="text">$205,250 </span></td></tr></table></body>`;1819describe('heffel', () => {20 runFixtureSuite(connector, it, expect);2122 it('parses the results index (deduplicated) and a results page', () => {23 const sales = parseResultsIndex(INDEX);24 expect(sales.map((s) => s.label)).toEqual(['Spring 2026', 'August 2026']);25 const p = parseResultsPage(PAGE, sales[0]!);26 expect(p.saleDateText).toBe('May 21 2026');27 expect(p.premiumIncluded).toBe(true);28 expect(p.sessions[0]).toContain('Post-War');29 expect(p.lots.length).toBe(2);30 expect(p.lots[1]).toMatchObject({ lotNumber: '002', title: 'Snow Light in My House', artist: 'Pratt, Mary Frances', priceText: '$205,250', image: 'https://www.heffel.com/Images/Lots/150/PCRE-04581-0021-01.jpg' });31 });3233 it('normalises CAD sales with premium included and the published sale date', async () => {34 const sale = parseResultsIndex(INDEX)[0]!;35 const out = await connector.normalize({ url: 'x', externalId: 'a', kind: 'sale', engine: 'api', fetchedAt: new Date('2026-09-07T00:00:00Z'), payload: parseResultsPage(PAGE, sale) });36 expect(out.length).toBe(2);37 const s = out[0]!;38 if (s.kind !== 'sale') throw new Error('sale');39 expect(s).toMatchObject({ price: 73250, currency: 'CAD', buyerPremiumIncluded: true, lotNumber: '001', auctionHouse: 'Heffel', confidence: 0.9 });40 expect(s.saleDate.toISOString()).toBe('2026-05-21T00:00:00.000Z');41 expect(s.attributes.brand).toBe('Molinari, Guido');42 expect(['art', 'contemporary_art']).toContain(s.attributes.categorySlug);43 });4445 it('falls back to the month of a monthly online sale', () => {46 expect(fallbackDate('August 2026')?.toISOString()).toBe('2026-08-01T00:00:00.000Z');47 expect(fallbackDate('Spring 2026')).toBeNull();48 });4950 it('fixture lots are CAD with premium', async () => {51 const out = await connector.normalize(loadFixture('heffel', 'results-page').raw);52 expect(out.length).toBeGreaterThan(0);53 for (const r of out) if (r.kind === 'sale') expect(r).toMatchObject({ currency: 'CAD', buyerPremiumIncluded: true });54 });55});56