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, { lotsUrl, parseArchive, parseLotsPage, parseOverview } 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 ARCHIVE = `<div class="auctionBox"><div class="pic"><a class="noGraphic" href="/en/_auctions/&action=showAuctionOverview&auctionID=28"><img src="c.jpg"></a></div><div class="infos"><h4>Auction 321-332</h4><div class="date">June 3,2024 - June 8,2024</div><div class="links"><a href="/en/_auctions/&action=showAuctionOverview&auctionID=28">Show Auction Catalogue</a></div></div></div>13<div class="auctionBox"><div class="infos"><h4>Auction 291-297</h4><div class="date">November 28,2022 - December 3,2022</div><div class="links"><a href="/en/_auctions/&action=showAuctionOverview&auctionID=24">Show Auction Catalogue</a></div></div></div>`;14const OVERVIEW = `<script>c4msEnv.auctionData = {"id":"24","currency":"CHF","no":"0","startDate":"2022-11-28 14:34:07","endDate":"2022-12-03 14:34:07","status":"closed","name":"Auction 291-297","description":null};</script><h1>Auction 291-297</h1>15<div class="bookmark_left_red"><h3>Catalogue 291: Europe & Overseas</h3></div><div class="countryBox"><table><tr class="row_even groupTR"><td><a href="/en/_auctions/&action=showLots&auctionID=24&catalogPart=199&show_all_lots=1" class="noIconLink">Show all lots</a></td><td class="lotCounterWrapper"><a href="/en/_auctions/&action=showLots&auctionID=24&catalogPart=199&show_all_lots=1" class="noIconLink lotCounter">1636</a></td></tr></table></div>16<div class="bookmark_left_red"><h3>Catalogue 294: Ceylon</h3></div><div class="countryBox"><table><tr><td><a href="/en/_auctions/&action=showLots&auctionID=24&catalogPart=194&show_all_lots=1" class="noIconLink">Show all lots</a></td><td><a href="/en/_auctions/&action=showLots&auctionID=24&catalogPart=194&show_all_lots=1" class="noIconLink lotCounter">744</a></td></tr></table></div>`;17const LOTS = `<div class="pagination"><div class="pageCounter">pages (<span class="pageCounterLabel">8</span>):</div></div>18<div class="lot" data-lotNo="6001"><div class="bookmark_left_red"><h3>Lot# : <a href="/en/_auctions/&action=showLot&auctionID=24&lotno=6001"><span class="lotno lotTitle">6001</span></a><span class="lotCountry">Ceylon</span></h3></div><div class="lotBox"><div class="lotPic"><div class="picContainer"><ul><li><a href="https://d2xqn5t7wr4wg1.cloudfront.net/modules/auctions/24/pics/big/a.jpg"><img data-src="https://d2xqn5t7wr4wg1.cloudfront.net/modules/auctions/24/pics/small/a.jpg" class="lazyload"></a></li></ul></div><span class="lot-cond lot-cond-8"></span><span class="lot-cond lot-cond-9"></span></div><div class="lotDesc"><div class="datatext"><span class="text">Recess by Perkins Bacon 1856/57: Proof for the initial issue, 6 d. black imperforate, a sheet marginal block of four (SG 1).</span></div><div class="lotAttr"><div class="prices"><div class="start">Starting bid : <span class="value"> 200.00 CHF </span></div><div class="bid">Hammer price : <span class="value">260.00 CHF</span></div></div></div></div></div></div>19<div class="lot" data-lotNo="6015"><div class="bookmark_left_red"><h3>Lot# : <span class="lotno lotTitle">6015</span><span class="lotCountry">Ceylon</span></h3></div><div class="lotDesc"><div class="datatext"><span class="text">1857 4 d. dull rose, unused without gum, a fine example. Cert. RPSL (1973).</span></div><div class="lotAttr"><div class="prices"><div class="start">Starting bid : <span class="value">200.00 CHF</span></div><div class="bid">Hammer price : <span class="value">not sold </span></div></div></div></div></div>`;2021describe('corinphila', () => {22 runFixtureSuite(connector, it, expect);2324 it('parses the archive list and the auction overview (auctionData JSON + catalogue parts)', () => {25 expect(parseArchive(ARCHIVE)).toEqual([26 { id: '28', name: 'Auction 321-332', dateText: 'June 3,2024 - June 8,2024' },27 { id: '24', name: 'Auction 291-297', dateText: 'November 28,2022 - December 3,2022' },28 ]);29 const ov = parseOverview(OVERVIEW, '24')!;30 expect(ov.auction).toEqual({ id: '24', name: 'Auction 291-297', currency: 'CHF', startDate: '2022-11-28 14:34:07', endDate: '2022-12-03 14:34:07', status: 'closed' });31 expect(ov.parts).toEqual([{ catalogPart: '199', title: 'Catalogue 291: Europe & Overseas', lotCount: 1636 }, { catalogPart: '194', title: 'Catalogue 294: Ceylon', lotCount: 744 }]);32 expect(lotsUrl('24', '194', 2)).toBe('https://corinphila.ch/en/_auctions/&action=showLots&auctionID=24&catalogPart=194&show_all_lots=1&page=2');33 });3435 it('parses lot blocks with hammer / not sold and normalises CHF hammer sales', async () => {36 const ov = parseOverview(OVERVIEW, '24')!;37 const p = parseLotsPage(LOTS, ov.auction, ov.parts[1]!, lotsUrl('24', '194', 1));38 expect(p.totalPages).toBe(8);39 expect(p.lots.length).toBe(2);40 expect(p.lots[0]).toMatchObject({ lotNo: '6001', country: 'Ceylon', startText: '200.00 CHF', hammerText: '260.00 CHF', conditionCodes: ['8', '9'], images: ['https://d2xqn5t7wr4wg1.cloudfront.net/modules/auctions/24/pics/small/a.jpg'] });41 expect(p.lots[1]!.hammerText).toBe('not sold');42 const out = await connector.normalize({ url: p.url, externalId: 'x', kind: 'sale', engine: 'api', fetchedAt: new Date('2026-09-08T00:00:00Z'), payload: p });43 expect(out.length).toBe(1);44 const s = out[0]!;45 if (s.kind !== 'sale') throw new Error('sale');46 expect(s).toMatchObject({ price: 260, currency: 'CHF', buyerPremiumIncluded: false, lotNumber: '6001', auctionHouse: 'Corinphila Auctions', location: 'CH', sourceUrl: 'https://corinphila.ch/en/_auctions/&action=showLot&auctionID=24&lotno=6001' });47 expect(s.saleDate.toISOString()).toBe('2022-11-28T00:00:00.000Z');48 expect(s.attributes).toMatchObject({ categorySlug: 'stamps', country: 'LK', set: 'Catalogue 294: Ceylon' });49 expect(s.attributes.identifiers.corinphila_lot).toBe('24/6001');50 expect(s.attributes.metadata).toMatchObject({ starting_bid: 200, michel_or_sg: 'SG 1' });51 });5253 it('fixture normalises to CHF hammer sales and skips not-sold lots', async () => {54 const fx = loadFixture('corinphila', 'lots-page-auction-24-part-194');55 const out = await connector.normalize(fx.raw);56 expect(out.length).toBe(8);57 for (const r of out) if (r.kind === 'sale') expect(r).toMatchObject({ currency: 'CHF', buyerPremiumIncluded: false });58 });59});60