trails/packages/map-core/src/poi-selectors-sql.sync.test.ts
Ullrich Schäfer e703843b9b
poi-index: extract pipeline (BRouter host) + import job (flagship) + e2e
- poi-extract.sh: PBF download -> osmium tags-filter -> centroid NDJSON +
  manifest, published via the Caddy sidecar at vSwitch-only /poi/*
- osmium-filters.txt + poi-selectors.sql generated from map-core selectors,
  guarded by sync tests so poiCategories stays the single source of truth
- poi-import.sh: checksum verify -> classify into category rows ->
  70% guard (--bootstrap override) -> atomic rename swap; node_exporter
  textfile metric for import outcome
- systemd service+timer units for both halves (monthly, offset)
- cd-infra.yml: ship infrastructure/scripts to the flagship
- e2e: mock /api/pois instead of /api/overpass

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-12 22:48:32 +02:00

27 lines
1.2 KiB
TypeScript

import { describe, it, expect } from "vitest";
import { readFileSync } from "node:fs";
import { fileURLToPath } from "node:url";
import { poiCategories } from "./poi.ts";
// The flagship import script (poi-import.sh, bash + psql, no Node) loads the
// committed poi-selectors.sql to classify extracted elements into category
// rows. This test fails CI if that file drifts from the map-core selectors, so
// poiCategories stays the single source of truth. Regenerate with:
// npx tsx infrastructure/scripts/gen-poi-selectors-sql.ts
describe("poi-selectors.sql", () => {
it("contains a VALUES row for every selector/category pair", () => {
const path = fileURLToPath(
new URL("../../../infrastructure/scripts/poi-selectors.sql", import.meta.url),
);
const sql = readFileSync(path, "utf8");
const expected = poiCategories.flatMap((cat) =>
cat.selectors.map((s) => `('${s.key}', '${s.value}', '${cat.id}')`),
);
for (const row of expected) {
expect(sql).toContain(row);
}
// No extra/stale rows: the count of VALUES tuples equals the selector count.
const tupleCount = (sql.match(/\(\s*'[^']+',\s*'[^']+',\s*'[^']+'\s*\)/g) ?? []).length;
expect(tupleCount).toBe(expected.length);
});
});