/**
* DC-057 pricing-page catalog consistency test.
*
* The pricing page at status/pricing/index.html hard-codes the 4 product
* IDs, prices, and labels. This test asserts that those hard-coded values
* exactly match the catalog in src/billing/catalog.js — preventing drift
* between the two sources.
*
* If a new tier is added to the catalog, this test will fail until the
* pricing page is updated. If the pricing page is updated, the catalog
* must change in lockstep (or this test fails the other way).
*/
const fs = require('fs');
const path = require('path');
const catalog = require('../../src/billing/catalog');
const PRICING_PAGE_PATH = path.join(__dirname, '..', '..', '..', 'status', 'pricing', 'index.html');
function extractTiersFromPage(html) {
// Extract each `
` block, then
// pull out the dollar amount in the `
` element and
// the durationDays from the "N-day Pro license" string. The regex is
// anchored on the tier-class open + the matching buy-btn close so we
// capture the full body of each tier card regardless of how many inner
// divs it has.
const tierRe = /