#!/usr/bin/env node "use strict"; const assert = require("assert"); const fs = require("fs"); const os = require("os"); const path = require("path"); const { cesiumPreviewHtml } = require("./lib/area-preview"); const { makeVehicleGltf } = require("./lib/vehicle-model"); const { allowedTurns, buildVehicleRoute, classifyConnection } = require("./lib/vehicle-route"); const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "preview-assets-")); const osmPath = path.join(tempDir, "fixture.osm"); fs.writeFileSync(osmPath, ` `); const route = buildVehicleRoute(osmPath); assert.equal(route.source, osmPath); assert.deepEqual(route.bounds, { minLon: 120, minLat: 30, maxLon: 120.01, maxLat: 30.01, }); assert.equal(route.speedMetersPerSecond, 8); assert.equal(route.loop, true); assert.equal(route.segments, route.routes, "legacy segments remains an alias for the new route list"); assert.ok(route.routes.length >= 1 && route.routes.length <= 5); assert.ok(route.routes.every((segment) => segment.edgeIds.length >= 6)); assert.ok(route.routes.every((segment) => segment.maneuvers.includes("u_turn"))); assert.ok(route.routes.every((segment) => segment.maneuvers.some((value) => ["left", "right", "through"].includes(value)))); assert.ok(route.routes.every((segment) => JSON.stringify(segment.coordinates[0]) === JSON.stringify(segment.coordinates.at(-1)))); assert.ok(route.routes.every((segment) => !segment.edgeIds.includes("oneway-spur:backward"))); assert.notDeepEqual(route.routes[0].coordinates, route.routes[0].centerlineCoordinates); assert.deepEqual( [...allowedTurns({ "turn:lanes:forward": "left|through;right" }, "forward")].sort(), ["left", "right", "through"], ); const incoming = { wayId: "in", coordinates: [[120, 30], [120.001, 30]] }; assert.equal(classifyConnection(incoming, { wayId: "left", coordinates: [[120.001, 30], [120.001, 30.001]] }), "left"); assert.equal(classifyConnection(incoming, { wayId: "right", coordinates: [[120.001, 30], [120.001, 29.999]] }), "right"); assert.equal(classifyConnection(incoming, { wayId: "through", coordinates: [[120.001, 30], [120.002, 30]] }), "through"); const vehicle = makeVehicleGltf(); assert.equal(vehicle.asset.version, "2.0"); assert.equal(vehicle.asset.generator, "osm-asset-pipeline vehicle preview"); assert.equal(vehicle.scene, 0); assert.equal(vehicle.meshes.length, vehicle.nodes.length); assert.equal(vehicle.scenes[0].nodes.length, vehicle.nodes.length); assert.deepEqual( vehicle.materials.map((material) => material.name), ["paint red", "dark roof", "glass", "tire", "wheel hub", "headlight", "tail light"], ); assert.ok(vehicle.meshes.some((mesh) => mesh.name === "body")); assert.ok(vehicle.meshes.some((mesh) => mesh.name === "wheel_-1.55_-1.02")); assert.match(vehicle.buffers[0].uri, /^data:application\/octet-stream;base64,/); assert.equal( Buffer.from(vehicle.buffers[0].uri.split(",")[1], "base64").length, vehicle.buffers[0].byteLength, ); const html = cesiumPreviewHtml( "scene<&>.glb", "scene.json", "route.json", "vehicle.gltf", "north<&>\u2028valley", ); assert.match(html, /north<&>\u2028valley Cesium Preview<\/title>/); assert.match(html, /Loading scene<&>\.glb/); assert.match(html, /"areaId":"north\\u003c\\u0026\\u003e\\u2028valley"/); assert.match(html, /"glbName":"scene\\u003c\\u0026\\u003e\.glb"/); assert.match(html, /id="viewMode"/); assert.match(html, /data-view-mode="inspect"/); assert.match(html, /id="semanticToggles" class="control-subgroup hidden"/); fs.rmSync(tempDir, { recursive: true, force: true }); console.log("Preview asset tests passed.");