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%
3.4 KB · 91 lines typescript
Raw Blame History
1import { describe, expect, it } from 'vitest';2import meta from './meta.json' with { type: 'json' };3import { localMeta } from '../_lib/local-meta.js';4import { expectMapping, storeSuite } from '../_g4-shops-intl-lib/suite.js';5import createConnector from './index.js';67const parsed = localMeta(meta);8const connector = createConnector(parsed);910describe('hodinkee-shop', () => {11  // Framework fixture suite + store invariants (currency, categories, listings only, stable ids).12  storeSuite(parsed, connector, it, expect);1314  it('maps live-observed titles onto taxonomy slugs and skips accessories/apparel', async () => {15    await expectMapping(parsed, connector, expect, [16          {17                "title": "1979 Rolex Sea-Dweller Ref. 1665 'Great White'",18                "collection": "vintage-watches",19                "type": "Watches : Vintage : Vintage",20                "vendor": "Rolex",21                "tags": [22                      "Rolex",23                      "vintage"24                ],25                "expect": "rolex",26                "brand": "Rolex",27                "name": "1979 Rolex Sea-Dweller",28                "number": "1665",29                "year": 197930          },31          {32                "title": "Rolex Explorer 14270",33                "collection": "rolex-brand",34                "type": "Watches : Pre-Owned : Pre-Owned",35                "vendor": "Rolex",36                "tags": [37                      "approximate_age:1990s",38                      "brand_name:Rolex"39                ],40                "expect": "rolex",41                "number": null42          },43          {44                "title": "1969 Omega Speedmaster Professional Ref. 145.022-69ST On Bracelet",45                "collection": "omega-brand",46                "type": "Watches : Vintage : Vintage",47                "vendor": "OMEGA",48                "expect": "omega",49                "number": "145.022-69ST",50                "year": 196951          },52          {53                "title": "1970s Audemars Piguet Royal Oak Reference 5402SA",54                "collection": "vintage-watches",55                "type": "Watches : Vintage : Vintage",56                "vendor": "HODINKEE Shop",57                "expect": "audemars_piguet",58                "year": null59          },60          {61                "title": "Cartier Tank Americaine W2609156",62                "collection": "cartier-brand",63                "type": "Watches : Pre-Owned : Pre-Owned",64                "vendor": "Cartier",65                "expect": "other_watches"66          },67          {68                "title": "Automatic GMT SBGM239 Limited Edition For Hodinkee",69                "collection": "grand-seiko-brand",70                "type": "Limited Editions : New Watches : New Watch",71                "vendor": "Grand Seiko",72                "expect": "other_watches"73          },74          {75                "title": "Rolex Datejust Two-Tone Leather Strap Brown",76                "collection": "rolex-brand",77                "type": "Accessories : Straps : Leather",78                "vendor": "HODINKEE Shop",79                "expect": null80          },81          {82                "title": "Modello Uno U1S-Carbon GMT Limited Edition For Hodinkee 2",83                "collection": "vintage-watches",84                "type": "",85                "vendor": "HODINKEE Shop",86                "expect": null87          }88    ]);89  });90});91