* move editor data into a singleton Signed-off-by: Jess Frazelle <github@jessfraz.com> * debounce on update Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * make select on extrude work Signed-off-by: Jess Frazelle <github@jessfraz.com> * highlight range Signed-off-by: Jess Frazelle <github@jessfraz.com> * highlight range Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix errors Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * almost forgot the error pane Signed-off-by: Jess Frazelle <github@jessfraz.com> * loint Signed-off-by: Jess Frazelle <github@jessfraz.com> * call out to codemirror Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix tauri; Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * more efficient Signed-off-by: Jess Frazelle <github@jessfraz.com> * create the modals in the hook Signed-off-by: Jess Frazelle <github@jessfraz.com> * Revert "create the modals in the hook" This reverts commit bbeba85030763cf7235a09fa24247dbf120f2a64. * change todo Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
310 lines
8.1 KiB
TypeScript
310 lines
8.1 KiB
TypeScript
import { parse, initPromise } from './wasm'
|
|
import { enginelessExecutor } from '../lib/testHelpers'
|
|
|
|
beforeAll(async () => {
|
|
await initPromise
|
|
})
|
|
|
|
describe('testing artifacts', () => {
|
|
// Enable rotations #152
|
|
test('sketch artifacts', async () => {
|
|
const code = `
|
|
const mySketch001 = startSketchOn('XY')
|
|
|> startProfileAt([0, 0], %)
|
|
|> lineTo([-1.59, -1.54], %)
|
|
|> lineTo([0.46, -5.82], %)
|
|
// |> rx(45, %)`
|
|
const programMemory = await enginelessExecutor(parse(code))
|
|
// @ts-ignore
|
|
const sketch001 = programMemory?.root?.mySketch001
|
|
expect(sketch001).toEqual({
|
|
type: 'SketchGroup',
|
|
on: expect.any(Object),
|
|
start: {
|
|
to: [0, 0],
|
|
from: [0, 0],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [46, 71],
|
|
},
|
|
},
|
|
value: [
|
|
{
|
|
type: 'ToPoint',
|
|
name: '',
|
|
to: [-1.59, -1.54],
|
|
from: [0, 0],
|
|
__geoMeta: {
|
|
sourceRange: [77, 102],
|
|
id: expect.any(String),
|
|
},
|
|
},
|
|
{
|
|
type: 'ToPoint',
|
|
to: [0.46, -5.82],
|
|
from: [-1.59, -1.54],
|
|
name: '',
|
|
__geoMeta: {
|
|
sourceRange: [108, 132],
|
|
id: expect.any(String),
|
|
},
|
|
},
|
|
],
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
xAxis: { x: 1, y: 0, z: 0 },
|
|
yAxis: { x: 0, y: 1, z: 0 },
|
|
zAxis: { x: 0, y: 0, z: 1 },
|
|
id: expect.any(String),
|
|
entityId: expect.any(String),
|
|
__meta: [{ sourceRange: [46, 71] }],
|
|
})
|
|
})
|
|
test('extrude artifacts', async () => {
|
|
// Enable rotations #152
|
|
const code = `
|
|
const mySketch001 = startSketchOn('XY')
|
|
|> startProfileAt([0, 0], %)
|
|
|> lineTo([-1.59, -1.54], %)
|
|
|> lineTo([0.46, -5.82], %)
|
|
// |> rx(45, %)
|
|
|> extrude(2, %)`
|
|
const programMemory = await enginelessExecutor(parse(code))
|
|
// @ts-ignore
|
|
const sketch001 = programMemory?.root?.mySketch001
|
|
expect(sketch001).toEqual({
|
|
type: 'ExtrudeGroup',
|
|
id: expect.any(String),
|
|
value: [
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: '',
|
|
id: expect.any(String),
|
|
sourceRange: [77, 102],
|
|
},
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: '',
|
|
id: expect.any(String),
|
|
sourceRange: [108, 132],
|
|
},
|
|
],
|
|
sketchGroupValues: [
|
|
{
|
|
type: 'ToPoint',
|
|
from: [0, 0],
|
|
to: [-1.59, -1.54],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [77, 102],
|
|
},
|
|
},
|
|
{
|
|
type: 'ToPoint',
|
|
from: [-1.59, -1.54],
|
|
to: [0.46, -5.82],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [108, 132],
|
|
},
|
|
},
|
|
],
|
|
height: 2,
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
xAxis: { x: 1, y: 0, z: 0 },
|
|
yAxis: { x: 0, y: 1, z: 0 },
|
|
zAxis: { x: 0, y: 0, z: 1 },
|
|
startCapId: expect.any(String),
|
|
endCapId: expect.any(String),
|
|
__meta: [{ sourceRange: [46, 71] }],
|
|
})
|
|
})
|
|
test('sketch extrude and sketch on one of the faces', async () => {
|
|
// Enable rotations #152
|
|
// TODO #153 in order for getExtrudeWallTransform to work we need to query the engine for the location of a face.
|
|
const code = `
|
|
const sk1 = startSketchOn('XY')
|
|
|> startProfileAt([0, 0], %)
|
|
|> lineTo([-2.5, 0], %)
|
|
|> lineTo([0, 10], %, "p")
|
|
|> lineTo([2.5, 0], %)
|
|
// |> rx(45, %)
|
|
// |> translate([1,0,1], %)
|
|
// |> ry(5, %)
|
|
const theExtrude = extrude(2, sk1)
|
|
// const theTransf = getExtrudeWallTransform('p', theExtrude)
|
|
const sk2 = startSketchOn('XY')
|
|
|> startProfileAt([0, 0], %)
|
|
|> lineTo([-2.5, 0], %)
|
|
|> lineTo([0, 3], %, "p")
|
|
|> lineTo([2.5, 0], %)
|
|
// |> transform(theTransf, %)
|
|
|> extrude(2, %)
|
|
|
|
`
|
|
const programMemory = await enginelessExecutor(parse(code))
|
|
// @ts-ignore
|
|
const geos = [programMemory?.root?.theExtrude, programMemory?.root?.sk2]
|
|
expect(geos).toEqual([
|
|
{
|
|
type: 'ExtrudeGroup',
|
|
id: expect.any(String),
|
|
value: [
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: '',
|
|
id: expect.any(String),
|
|
sourceRange: [69, 89],
|
|
},
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: 'p',
|
|
id: expect.any(String),
|
|
sourceRange: [95, 118],
|
|
},
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: '',
|
|
id: expect.any(String),
|
|
sourceRange: [124, 143],
|
|
},
|
|
],
|
|
sketchGroupValues: [
|
|
{
|
|
type: 'ToPoint',
|
|
from: [0, 0],
|
|
to: [-2.5, 0],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [69, 89],
|
|
},
|
|
},
|
|
{
|
|
type: 'ToPoint',
|
|
from: [-2.5, 0],
|
|
to: [0, 10],
|
|
name: 'p',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [95, 118],
|
|
},
|
|
},
|
|
{
|
|
type: 'ToPoint',
|
|
from: [0, 10],
|
|
to: [2.5, 0],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [124, 143],
|
|
},
|
|
},
|
|
],
|
|
height: 2,
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
xAxis: { x: 1, y: 0, z: 0 },
|
|
yAxis: { x: 0, y: 1, z: 0 },
|
|
zAxis: { x: 0, y: 0, z: 1 },
|
|
startCapId: expect.any(String),
|
|
endCapId: expect.any(String),
|
|
__meta: [{ sourceRange: [38, 63] }],
|
|
},
|
|
{
|
|
type: 'ExtrudeGroup',
|
|
id: expect.any(String),
|
|
value: [
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: '',
|
|
id: expect.any(String),
|
|
sourceRange: [374, 394],
|
|
},
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: 'p',
|
|
id: expect.any(String),
|
|
sourceRange: [400, 422],
|
|
},
|
|
{
|
|
type: 'extrudePlane',
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
faceId: expect.any(String),
|
|
name: '',
|
|
id: expect.any(String),
|
|
sourceRange: [428, 447],
|
|
},
|
|
],
|
|
sketchGroupValues: [
|
|
{
|
|
type: 'ToPoint',
|
|
from: [0, 0],
|
|
to: [-2.5, 0],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [374, 394],
|
|
},
|
|
},
|
|
{
|
|
type: 'ToPoint',
|
|
from: [-2.5, 0],
|
|
to: [0, 3],
|
|
name: 'p',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [400, 422],
|
|
},
|
|
},
|
|
{
|
|
type: 'ToPoint',
|
|
from: [0, 3],
|
|
to: [2.5, 0],
|
|
name: '',
|
|
__geoMeta: {
|
|
id: expect.any(String),
|
|
sourceRange: [428, 447],
|
|
},
|
|
},
|
|
],
|
|
height: 2,
|
|
position: [0, 0, 0],
|
|
rotation: [0, 0, 0, 1],
|
|
xAxis: { x: 1, y: 0, z: 0 },
|
|
yAxis: { x: 0, y: 1, z: 0 },
|
|
zAxis: { x: 0, y: 0, z: 1 },
|
|
startCapId: expect.any(String),
|
|
endCapId: expect.any(String),
|
|
__meta: [{ sourceRange: [343, 368] }],
|
|
},
|
|
])
|
|
})
|
|
})
|