* multi-profile work * another test * clean up * cover a quirk with a test * last of tests * fix typos * Fix source range in snap test --------- Co-authored-by: Jonathan Tran <jonnytran@gmail.com>
97 lines
2.7 KiB
TypeScript
97 lines
2.7 KiB
TypeScript
import {
|
|
Program,
|
|
ProgramMemory,
|
|
executor,
|
|
SourceRange,
|
|
ExecState,
|
|
} from '../lang/wasm'
|
|
import { EngineCommandManager } from 'lang/std/engineConnection'
|
|
import { EngineCommand } from 'lang/std/artifactGraph'
|
|
import { Models } from '@kittycad/lib'
|
|
import { v4 as uuidv4 } from 'uuid'
|
|
import { DefaultPlanes } from 'wasm-lib/kcl/bindings/DefaultPlanes'
|
|
import { err } from 'lib/trap'
|
|
import { Node } from 'wasm-lib/kcl/bindings/Node'
|
|
|
|
type WebSocketResponse = Models['WebSocketResponse_type']
|
|
|
|
const defaultPlanes: DefaultPlanes = {
|
|
xy: uuidv4(),
|
|
xz: uuidv4(),
|
|
yz: uuidv4(),
|
|
negXy: uuidv4(),
|
|
negXz: uuidv4(),
|
|
negYz: uuidv4(),
|
|
}
|
|
|
|
class MockEngineCommandManager {
|
|
// eslint-disable-next-line @typescript-eslint/no-useless-constructor
|
|
constructor(mockParams: {
|
|
setIsStreamReady: (isReady: boolean) => void
|
|
setMediaStream: (stream: MediaStream) => void
|
|
}) {}
|
|
startNewSession() {}
|
|
waitForAllCommands() {}
|
|
waitForReady = new Promise<void>((resolve) => resolve())
|
|
sendModelingCommand({
|
|
id,
|
|
range,
|
|
command,
|
|
}: {
|
|
id: string
|
|
range: SourceRange
|
|
command: EngineCommand
|
|
}): Promise<any> {
|
|
const response: WebSocketResponse = {
|
|
success: true,
|
|
resp: {
|
|
type: 'modeling',
|
|
data: {
|
|
modeling_response: { type: 'empty' },
|
|
},
|
|
},
|
|
}
|
|
return Promise.resolve(JSON.stringify(response))
|
|
}
|
|
async wasmGetDefaultPlanes(): Promise<string> {
|
|
return JSON.stringify(defaultPlanes)
|
|
}
|
|
sendModelingCommandFromWasm(
|
|
id: string,
|
|
rangeStr: string,
|
|
commandStr: string
|
|
): Promise<any> {
|
|
if (id === undefined) {
|
|
return Promise.reject(new Error('id is undefined'))
|
|
}
|
|
if (rangeStr === undefined) {
|
|
return Promise.reject(new Error('rangeStr is undefined'))
|
|
}
|
|
if (commandStr === undefined) {
|
|
return Promise.reject(new Error('commandStr is undefined'))
|
|
}
|
|
const command: EngineCommand = JSON.parse(commandStr)
|
|
const range: SourceRange = JSON.parse(rangeStr)
|
|
|
|
return this.sendModelingCommand({ id, range, command })
|
|
}
|
|
sendSceneCommand() {}
|
|
}
|
|
|
|
export async function enginelessExecutor(
|
|
ast: Node<Program>,
|
|
pmo: ProgramMemory | Error = ProgramMemory.empty()
|
|
): Promise<ExecState> {
|
|
if (pmo !== null && err(pmo)) return Promise.reject(pmo)
|
|
|
|
const mockEngineCommandManager = new MockEngineCommandManager({
|
|
setIsStreamReady: () => {},
|
|
setMediaStream: () => {},
|
|
}) as any as EngineCommandManager
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
mockEngineCommandManager.startNewSession()
|
|
const execState = await executor(ast, mockEngineCommandManager, pmo)
|
|
await mockEngineCommandManager.waitForAllCommands()
|
|
return execState
|
|
}
|