TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1import { describe, expect, it } from 'vitest';2import type { NormalizedRecord } from '@rareindex/shared';3import { ConnectorMetaSchema } from '@rareindex/connectors';4import { listFixtures, loadFixture, runFixtureSuite } from '@rareindex/connectors/testing';5import metaJson from './meta.json' with { type: 'json' };6import createConnector, { parseLotsJson, parseSaleId, parseSalePageHeader, parseSitemapSales } from './index.js';78const meta = ConnectorMetaSchema.parse(metaJson);9const connector = createConnector(meta);10const attrsOf = (r: NormalizedRecord) => {11 if (!('attributes' in r)) throw new Error(`record kind ${r.kind} has no attributes`);12 return r.attributes;13};1415const SITEMAP = `<urlset><url><loc>https://www.woolleyandwallis.co.uk/departments/</loc></url><url><loc>https://www.woolleyandwallis.co.uk/departments/20th-century-design/</loc></url><url><loc>https://www.woolleyandwallis.co.uk/departments/20th-century-design/pg010306/</loc></url><url><loc>https://www.woolleyandwallis.co.uk/departments/african-oceanic-art/tr200826/</loc></url><url><loc>https://www.woolleyandwallis.co.uk/departments/african-oceanic-art/tr200826/view-lot/1/</loc></url></urlset>`;16const API = { TotalRecords: 328, TotalPages: 4, Results: [17 { Id: 538256, LotNumber: '1', Title: 'A PAIR OF ROMAN EARRINGS', FullDescription: '<p><strong>A PAIR OF ROMAN EARRINGS</strong><br />CIRCA 3RD CENTURY AD<br />gold with garnets</p>', HammerPrice: 952.5, HammerPriceFormatted: '£953', LowerEstimate: 800, UpperEstimate: 1200, MainImageUrl: 'https://dp0wuijufr9x2.cloudfront.net/ww/TR200826/1.jpg?v=6', ViewUrl: '/departments/african-oceanic-art/tr200826/view-lot/1/', SaleNodeId: 37594, Categories: ['Tr | African & Oceanic Art Antiquities'], ConditionReport: '<p>Minor wear.</p>' },18 { Id: 538257, LotNumber: '2', Title: 'A ROLEX OYSTER PERPETUAL DATEJUST REF. 1601', FullDescription: '<p>steel, 1972</p>', HammerPrice: null, HammerPriceFormatted: '', LowerEstimate: 2000, UpperEstimate: 3000, ViewUrl: '/departments/x/tr200826/view-lot/2/' },19] };2021describe('woolley-wallis', () => {22 runFixtureSuite(connector, it, expect);2324 it('fixtures: GBP hammer prices from the public lot-search API', async () => {25 let sales = 0;26 for (const name of listFixtures('woolley-wallis')) {27 for (const r of await connector.normalize(loadFixture('woolley-wallis', name).raw)) {28 if (!('attributes' in r)) continue;29 expect(r.attributes.identifiers.woolley_wallis_lot).toMatch(/^[a-z0-9-]+\/\S+$/);30 expect(r.sourceUrl).toMatch(/^https:\/\/www\.woolleyandwallis\.co\.uk\/departments\//);31 if (r.kind === 'sale') {32 sales++;33 expect(r.currency).toBe('GBP');34 expect(r.buyerPremiumIncluded).toBe(false);35 expect(r.auctionHouse).toBe('Woolley & Wallis');36 }37 }38 }39 expect(sales).toBeGreaterThan(10);40 });4142 it('enumerates sales from the sitemap and reads sale-id / header from HTML', () => {43 const sales = parseSitemapSales(SITEMAP);44 expect(sales.map((s) => s.id)).toEqual(['pg010306', 'tr200826']);45 expect(sales[1]!.extra.department).toBe('african oceanic art');46 expect(parseSaleId('<div class="lot" sale-id="37594" lot-id="538256">')).toBe('37594');47 expect(parseSaleId('<p>none</p>')).toBeNull();48 expect(parseSalePageHeader('<title>Arts of Africa | 20th August 2026 | Woolley and Wallis</title><h1>Arts of Africa, Oceania and the Americas</h1><p>20th August 2026. Starts at 10:00am</p>')).toEqual({ title: 'Arts of Africa, Oceania and the Americas', date: '2026-08-20T00:00:00.000Z' });49 });5051 it('parses the lot-search JSON (HammerPrice = hammer, TotalPages pagination)', async () => {52 const sale = { id: 'tr200826', title: 'Arts of Africa', url: 'https://www.woolleyandwallis.co.uk/departments/african-oceanic-art/tr200826/', date: '2026-08-20T00:00:00.000Z', location: 'Salisbury, United Kingdom', extra: { sale_id: '37594' } };53 const p = parseLotsJson(API, sale, 0)!;54 expect(p.totalLots).toBe(328);55 expect(p.hasMore).toBe(true);56 expect(parseLotsJson(API, sale, 3)!.hasMore).toBe(false);57 expect(p.lots[0]).toMatchObject({ lotNo: '1', title: 'A PAIR OF ROMAN EARRINGS', price: 952.5, currency: 'GBP', premiumIncluded: false, estimateLow: 800, estimateHigh: 1200, sold: true, image: 'https://dp0wuijufr9x2.cloudfront.net/ww/TR200826/1.jpg?v=6', url: 'https://www.woolleyandwallis.co.uk/departments/african-oceanic-art/tr200826/view-lot/1/' });58 expect(p.lots[0]!.description).toBe('A PAIR OF ROMAN EARRINGS CIRCA 3RD CENTURY AD gold with garnets');59 expect(p.lots[1]).toMatchObject({ lotNo: '2', price: null, sold: false });60 const out = await connector.normalize({ url: sale.url, kind: 'sale', engine: 'api', fetchedAt: new Date(), payload: { kind: 'sale_results', url: sale.url, sale, page: 1, totalLots: 328, lots: p.lots } });61 expect(out.map((r) => r.kind)).toEqual(['sale', 'auction_lot']);62 expect(attrsOf(out[0]!).categorySlug).toBe('jewelry');63 expect(attrsOf(out[1]!).categorySlug).toBe('rolex');64 expect(attrsOf(out[1]!).reference).toBe('1601');65 expect(connector.salePageUrl(sale, 2)).toBe('https://www.woolleyandwallis.co.uk/api/lots/search?pageIndex=1&filter=&saleId=37594&pageSize=100');66 expect(parseLotsJson({ nope: 1 }, sale, 0)).toBeNull();67 });68});69