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.8 KB · 114 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('solarisjapan', () => {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": "Chainsaw Man - Power - Nendoroid (#3138) - Nendoroid Basic - Casual Outfit Ver. (Good Smile Company)",18                "collection": "nendoroid",19                "type": "Figure",20                "tags": [21                      "Nendoroid",22                      "sfw"23                ],24                "variant": "Brand New",25                "expect": "action_figures",26                "series": "Nendoroid"27          },28          {29                "title": "Kagurabachi - Sazanami Hakuri - Chokonose - High Premium Figure (Sega Fave)",30                "collection": "figures",31                "type": "Figure",32                "vendor": "Sega Fave",33                "tags": [34                      "Prize",35                      "sfw"36                ],37                "variant": "Pre-Owned",38                "expect": "action_figures",39                "brand": "Sega Fave"40          },41          {42                "title": "2020 Super Baseball",43                "collection": "retro-games",44                "type": "Game",45                "vendor": "KAC",46                "tags": [47                      "SFC",48                      "Super Famicom",49                      "retro"50                ],51                "variant": "Retro Game",52                "expect": "nintendo_games",53                "brand": "Nintendo"54          },55          {56                "title": "Ace Combat 2",57                "collection": "retro-games",58                "type": "Game",59                "vendor": "Namco",60                "tags": [61                      "PlayStation",62                      "PSX",63                      "retro"64                ],65                "expect": "playstation_games",66                "brand": "Sony"67          },68          {69                "title": "A Train - A Ressha de Ikou",70                "collection": "retro-games",71                "type": "Game",72                "vendor": "Sega",73                "tags": [74                      "MD",75                      "Mega Drive"76                ],77                "expect": "sega_games"78          },79          {80                "title": "Nintendo DSi (Black)",81                "collection": "nintendo-ds",82                "type": "Game",83                "vendor": "Nintendo",84                "tags": [85                      "Hardware",86                      "NDS"87                ],88                "expect": "gaming_hardware"89          },90          {91                "title": "ONE PIECE Trading Card Game - EXTRA BOOSTER - Heroines Edition - [EB-03] - Japanese Ver (Bandai)",92                "collection": "one-piece-tcg",93                "type": "Trading Cards",94                "expect": "one_piece_card_game"95          },96          {97                "title": "Azur Lane - Taihou - 1/7 - Cast Off Ver. (Alter)",98                "collection": "figures",99                "type": "Figure",100                "tags": [101                      "nsfw"102                ],103                "expect": null104          },105          {106                "title": "Final Fantasy VII Rebirth Ultimania Game Guide",107                "collection": "figures",108                "type": "Book",109                "expect": null110          }111    ]);112  });113});114