silverbullet/common/space_lua/language.test.ts

57 lines
1.6 KiB
TypeScript
Raw Normal View History

import { parse } from "$common/space_lua/parse.ts";
import { luaBuildStandardEnv } from "$common/space_lua/stdlib.ts";
2024-10-20 21:06:23 +08:00
import {
LuaEnv,
type LuaRuntimeError,
LuaStackFrame,
} from "$common/space_lua/runtime.ts";
import { evalStatement } from "$common/space_lua/eval.ts";
import { assert } from "@std/assert/assert";
Deno.test("Lua language tests", async () => {
2024-10-11 21:34:27 +08:00
// Read the Lua file
const luaFile = await Deno.readTextFile(
new URL("./language_test.lua", import.meta.url).pathname,
);
const chunk = parse(luaFile, {});
const env = new LuaEnv(luaBuildStandardEnv());
2024-10-20 21:06:23 +08:00
const sf = new LuaStackFrame(new LuaEnv(), chunk.ctx);
2024-10-11 21:34:27 +08:00
try {
2024-10-20 21:06:23 +08:00
await evalStatement(chunk, env, sf);
2024-10-11 21:34:27 +08:00
} catch (e: any) {
console.error(`Error evaluating script:`, toPrettyString(e, luaFile));
assert(false);
}
});
function toPrettyString(err: LuaRuntimeError, code: string): string {
2024-10-20 21:06:23 +08:00
if (!err.sf || !err.sf.astCtx?.from || !err.sf.astCtx?.to) {
2024-10-11 21:34:27 +08:00
return err.toString();
}
2024-10-20 21:06:23 +08:00
let traceStr = "";
let current: LuaStackFrame | undefined = err.sf;
while (current) {
const ctx = current.astCtx;
if (!ctx || !ctx.from || !ctx.to) {
break;
}
// Find the line and column
let line = 1;
let column = 0;
for (let i = 0; i < ctx.from; i++) {
if (code[i] === "\n") {
line++;
column = 0;
} else {
column++;
}
}
2024-10-20 21:06:23 +08:00
traceStr += `* ${ctx.ref || "(unknown source)"} @ ${line}:${column}:\n ${
code.substring(ctx.from, ctx.to)
}\n`;
current = current.parent;
2024-10-11 21:34:27 +08:00
}
2024-10-20 21:06:23 +08:00
return `LuaRuntimeError: ${err.message} ${traceStr}`;
}