import { test, expect } from "bun:test" import { circuitJsonToStep } from "../../../lib/index" import { importStepWithOcct } from "../../utils/occt/importer" import circuitJson from "./basics02.json" test("basics02: convert pcb_board with outline only to STEP", async () => { const stepText = await circuitJsonToStep(circuitJson as any, { productName: "TestPCB_Outline", }) // Verify STEP format expect(stepText).toContain("ISO-10303-21") expect(stepText).toContain("END-ISO-10303-21") // Verify product structure expect(stepText).toContain("TestPCB_Outline") expect(stepText).toContain("MANIFOLD_SOLID_BREP") // Write STEP file to debug-output const outputPath = "debug-output/basics02.step" await Bun.write(outputPath, stepText) console.log("✓ STEP file generated successfully") console.log(` - STEP text length: ${stepText.length} bytes`) console.log(` - Output: ${outputPath}`) // Validate STEP file can be imported with occt-import-js const occtResult = await importStepWithOcct(stepText) expect(occtResult.success).toBe(true) expect(occtResult.meshes.length).toBeGreaterThan(0) const [firstMesh] = occtResult.meshes expect(firstMesh.attributes.position.array.length).toBeGreaterThan(0) expect(firstMesh.index.array.length).toBeGreaterThan(0) console.log("✓ STEP file successfully validated with occt-import-js") await expect(stepText).toMatchStepSnapshot(import.meta.path, "basics02") }, 20000)