import { describe, expect, it } from 'vitest'; import { readFileSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { ConnectorMetaSchema } from '@rareindex/connectors'; import { loadFixture, runFixtureSuite } from '@rareindex/connectors/testing'; import createConnector, { parseCalendar, parseLotsPage, rrCategory } from './index.js'; const dir = path.dirname(fileURLToPath(import.meta.url)); const meta = ConnectorMetaSchema.parse(JSON.parse(readFileSync(path.join(dir, 'meta.json'), 'utf8'))); const connector = createConnector(meta); const CAL = `## Space Exploration ##### 10/16/2025 ##### Realized $1,234,567 [View Lots](https://www.rrauction.com/auctions/details/728-space-exploration) ## Remarkable Rarities ##### 9/20/2025 ##### Realized $2,400,456 [View Lots](https://www.rrauction.com/auctions/details/726-remarkable-rarities) `; const LOTS = `[![Lot #8671 Campo del Cielo Iron Meteorite](https://cdn.rrauction.com/auction/728/preview/3506706_13.jpeg)](https://www.rrauction.com/auctions/lot-detail/350670607288671-campo-del-cielo-iron-meteorite-individual/?cat=0) [**8671\\. Campo del Cielo Iron Meteorite Individual**](https://www.rrauction.com/auctions/lot-detail/350670607288671-campo-del-cielo-iron-meteorite-individual/?cat=0 "Lot #8671. Campo del Cielo Iron Meteorite Individual") Sold For: $4,273 (w/BP) Estimate: $700+ Auction #728 - October 16, 2025 Closed [![Lot #8579 ESA Flight Suit](https://cdn.rrauction.com/auction/728/preview/3505730_1.jpg)](https://www.rrauction.com/auctions/lot-detail/350573007288579-esa-european-space-agency-flight-suit/?cat=0) [**8579\\. ESA (European Space Agency) Flight Suit**](https://www.rrauction.com/auctions/lot-detail/350573007288579-esa-european-space-agency-flight-suit/?cat=0 "Lot #8579") Estimate: $500+ Auction #728 - October 16, 2025 `; describe('rr-auction', () => { runFixtureSuite(connector, it, expect); it('parses the past calendar and lot gallery', () => { const auctions = parseCalendar(CAL); expect(auctions).toEqual([ { id: '728', slug: 'space-exploration', title: 'Space Exploration', dateText: '10/16/2025', realizedText: '$1,234,567' }, { id: '726', slug: 'remarkable-rarities', title: 'Remarkable Rarities', dateText: '9/20/2025', realizedText: '$2,400,456' }, ]); const lots = parseLotsPage(LOTS, auctions[0]!, 1).lots; expect(lots.length).toBe(2); expect(lots[0]).toMatchObject({ lotNumber: '8671', title: 'Campo del Cielo Iron Meteorite Individual', estimateText: '$700+', auctionLine: 'October 16, 2025' }); expect(lots[0]!.soldText).toContain('$4,273'); expect(lots[1]!.soldText).toBeNull(); }); it('normalises sold lots with BP flag, auction date and keyword categories', async () => { const auction = parseCalendar(CAL)[0]!; const out = await connector.normalize({ url: 'x', externalId: 'a', kind: 'sale', engine: 'firecrawl', fetchedAt: new Date('2026-09-07T00:00:00Z'), payload: parseLotsPage(LOTS, auction, 1) }); expect(out.length).toBe(1); const s = out[0]!; if (s.kind !== 'sale') throw new Error('sale'); expect(s).toMatchObject({ price: 4273, currency: 'USD', buyerPremiumIncluded: true, lotNumber: '8671', auctionHouse: 'RR Auction' }); expect(s.saleDate.toISOString()).toBe('2025-10-16T00:00:00.000Z'); expect(s.attributes.categorySlug).toBe('meteorites'); expect(rrCategory('Space Exploration', 'Apollo 11 Flown Flag')).toBe('space'); expect(rrCategory('Fine Autographs and Artifacts', 'Steve Jobs Signed Apple II Manual')).toBe('apple_collectibles'); expect(rrCategory('Fine Autographs and Artifacts', 'Albert Einstein Signed Photograph')).toBe('autographs'); }); it('fixture sales are dated by the auction and priced with premium', async () => { const out = await connector.normalize(loadFixture('rr-auction', 'lots-page').raw); expect(out.length).toBeGreaterThan(0); for (const r of out) if (r.kind === 'sale') expect(r.buyerPremiumIncluded).toBe(true); }); });