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%
2.7 KB · 40 lines typescript
Raw Blame History
1import { describe, expect, it } from 'vitest';2import { ConnectorMetaSchema } from '@rareindex/connectors';3import { listFixtures, loadFixture, runFixtureSuite } from '@rareindex/connectors/testing';4import metaJson from './meta.json' with { type: 'json' };5import createConnector, { categoryForSale, parseResultsIndex, parseSalePage } from './index.js';67const connector = createConnector(ConnectorMetaSchema.parse(metaJson));89describe('artcurial', () => {10  runFixtureSuite(connector, it, expect);1112  it('emits EUR sales with unknown (null) premium flag and dated by the sale', async () => {13    const name = listFixtures('artcurial')[0]!;14    const out = await connector.normalize(loadFixture('artcurial', name).raw);15    const sales = out.filter((r) => r.kind === 'sale');16    expect(sales.length).toBeGreaterThan(3);17    for (const r of sales) {18      if (r.kind !== 'sale') continue;19      expect(r.currency).toBe('EUR');20      expect(r.buyerPremiumIncluded).toBeNull();21      expect(r.auctionHouse).toBe('Artcurial');22      expect(r.sourceUrl).toMatch(/^https:\/\/www\.artcurial\.com\/en\/sales\/[A-Za-z0-9-]+\/lots\//);23    }24  });2526  it('parses the results index and sale pages', () => {27    const idx = `[- Jul\\\\\n- 3\\\\\n- 2026\\\\\n\\\\\n![sale image](https://x/6604.jpg)\\\\\n\\\\\nJul 3, 2026\\\\\n\\\\\n6604\\\\\n\\\\\nLe Mans Classic Legend\\\\\n\\\\\n2:00 PM\\\\\n\\|\\\\\n\\\\\nArtcurial, Paris](https://www.artcurial.com/en/sales/6604)`;28    const sales = parseResultsIndex(idx);29    expect(sales).toEqual([{ number: '6604', title: 'Le Mans Classic Legend', subtitle: null, date: '2026-07-03T00:00:00.000Z', location: 'Artcurial, Paris', url: 'https://www.artcurial.com/en/sales/6604', online: false }]);30    const page = `All Lots (32)\n\n[1\\\\\n\\\\\n![Loaded image](https://x/a.jpg?w=400)\\\\\n\\\\\n24 hours of Le Mans 1971, 1972 and 1973 \\\\\n\\\\\n150 photographs - No reserve\\\\\n\\\\\nEstimate: €300 - 500\\\\\n\\\\\nSold€1,589](https://www.artcurial.com/en/sales/6604/lots/1-a) [15\\\\\n\\\\\nEstimate: €15,000 - 20,000](https://www.artcurial.com/en/sales/6604/lots/15-a)`;31    const p = parseSalePage(page, '6604');32    expect(p.lotCount).toBe(32);33    expect(p.lots[0]).toMatchObject({ lotNo: '1', title: '24 hours of Le Mans 1971, 1972 and 1973', subtitle: '150 photographs - No reserve', estimateLow: 300, estimateHigh: 500, sold: 1589, image: 'https://x/a.jpg?w=400' });34    expect(p.lots).toHaveLength(1); // lot 15 has no title line → skipped35    expect(categoryForSale('Horlogerie de Collection')).toBe('other_watches');36    expect(categoryForSale('Hermès & Luxury Bags')).toBe('luxury_handbags');37    expect(categoryForSale('Post-War & Contemporary Art')).toBe('contemporary_art');38  });39});40