* fix: only enable EE features in test backend when license key is available Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: skip EE tests without license key and exclude test-skills from test discovery Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: unskip passing tests and add duplicate (remote, workspaceId) check in addWorkspace Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor(cli): migrate from Deno APIs to Node.js/Bun-compatible APIs Replace Deno-specific APIs with Node.js equivalents across the entire CLI codebase to enable running on Node.js/Bun. Switch build system from dnt to bun, update imports from jsr:/npm: prefixed to bare specifiers, and add package.json/tsconfig.json for the Node.js ecosystem. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all * test(cli): expand test coverage with new integration and unit tests Add standalone_commands.test.ts covering folder list, schedule list, resource-type list/push/update, script show/run/bootstrap, and user commands. Add unit tests for filePathExtensionFromContentType and removeExtensionToPath. Add git_unit, local_encryption_unit, resource_folders_unit, and settings_unit test files. Fix schedule cron expressions (6-field format), add includeSchedules flag, improve test setup with pre-build and auto-cleanup, and support TEST_CLI_RUNTIME=node. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): replace Deno.readFile with node:fs in WASM loaders and add schema parsing tests Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor(cli): switch WASM parsers from local files to npm packages Use published windmill-parser-wasm-* npm packages instead of local wasm/ files. A loadParser() helper uses createRequire to resolve the .wasm binary from node_modules and passes it to init() via readFileSync, avoiding fetch() and Deno.readFile() patches. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test(cli): add coverage for --locks-required lint feature Add 15 tests covering the lock-checking functionality merged from main: - checkMissingLocks: standalone scripts (python, bun, bash), inline lock file resolution (valid, empty, missing), flow inline rawscripts (with/without locks, nested forloopflow), app inline scripts, raw apps without backend folder - runLint --locks-required integration: reports issues when locks missing, skips checks when flag absent, passes when locks exist Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci(cli): replace Deno with Bun in CI workflows - cli-tests.yml: remove Deno setup, use `bun test` instead of `deno test`, add `bun install` step for dependency installation - npm_on_release.yml: replace Deno setup with Bun setup for CLI publishing - build.sh: add `bun install` before building so CI has dependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): pre-start backend in test preload and remove Deno test leftovers Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): normalize path separators for Windows compatibility Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * more tests + windows * ci(cli): use Blacksmith runner for Windows tests Switch test-windows job from windows-latest to blacksmith-16vcpu-windows-2025 for faster CI execution. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): fix Windows path separator expectations in unit tests buildMetadataPath and extractResourceName normalize to forward slashes internally, so tests should not expect platform-specific separators in their output. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): fix Windows CI test failures for dev_server and script_run Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): set BUN_PATH and NODE_BIN_PATH for backend worker on Windows Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci(cli): add SSH debug step on Windows test failure Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): use native path separators for ignore check in dev mode on Windows Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
231 lines
6.8 KiB
TypeScript
231 lines
6.8 KiB
TypeScript
/**
|
|
* Tests for WASM schema parsing across all supported languages.
|
|
*
|
|
* Calls `inferSchema` directly — no backend needed, fully local.
|
|
* Verifies that each language's WASM parser loads correctly and produces
|
|
* the expected JSON schema output.
|
|
*/
|
|
|
|
import { expect, test, describe } from "bun:test";
|
|
import { inferSchema } from "../src/utils/metadata.ts";
|
|
import type { ScriptLanguage } from "../src/utils/script_common.ts";
|
|
|
|
interface LanguageTestCase {
|
|
language: ScriptLanguage;
|
|
content: string;
|
|
/** Property name to verify in schema.properties */
|
|
expectedParam: string;
|
|
/** Expected JSON schema type, or undefined to skip type check */
|
|
expectedType?: string;
|
|
/** If set, verify this resource format exists on the named param */
|
|
expectedResourceParam?: { name: string; format: string };
|
|
}
|
|
|
|
const languageTestCases: LanguageTestCase[] = [
|
|
{
|
|
language: "python3",
|
|
content: `def main(x: str):\n return x\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "bun",
|
|
content: `export async function main(x: string) {\n return x;\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "deno",
|
|
content: `export async function main(x: string) {\n return x;\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "nativets",
|
|
content: `export async function main(x: string) {\n return x;\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "go",
|
|
content: `package inner\n\nfunc main(x string) (interface{}, error) {\n\treturn x, nil\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "bash",
|
|
// Bash parser infers params from variable assignments like x="$1"
|
|
content: `x="$1"\necho "$x"\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "powershell",
|
|
content: `param([string]$x)\nWrite-Output $x\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "postgresql",
|
|
content: `-- $1 name = default :: text\nSELECT $1::TEXT\n`,
|
|
expectedParam: "name",
|
|
expectedType: "string",
|
|
expectedResourceParam: { name: "database", format: "resource-postgresql" },
|
|
},
|
|
{
|
|
language: "mysql",
|
|
// MySQL parser only auto-detects the database resource param
|
|
content: `SELECT 1\n`,
|
|
expectedParam: "database",
|
|
expectedType: "object",
|
|
expectedResourceParam: { name: "database", format: "resource-mysql" },
|
|
},
|
|
{
|
|
language: "bigquery",
|
|
content: `SELECT 1\n`,
|
|
expectedParam: "database",
|
|
expectedType: "object",
|
|
expectedResourceParam: { name: "database", format: "resource-bigquery" },
|
|
},
|
|
{
|
|
language: "snowflake",
|
|
content: `SELECT 1\n`,
|
|
expectedParam: "database",
|
|
expectedType: "object",
|
|
expectedResourceParam: { name: "database", format: "resource-snowflake" },
|
|
},
|
|
{
|
|
language: "mssql",
|
|
content: `SELECT 1\n`,
|
|
expectedParam: "database",
|
|
expectedType: "object",
|
|
expectedResourceParam: {
|
|
name: "database",
|
|
format: "resource-ms_sql_server",
|
|
},
|
|
},
|
|
{
|
|
language: "oracledb",
|
|
content: `SELECT 1 FROM dual\n`,
|
|
expectedParam: "database",
|
|
expectedType: "object",
|
|
expectedResourceParam: { name: "database", format: "resource-oracledb" },
|
|
},
|
|
{
|
|
language: "duckdb",
|
|
// DuckDB parser doesn't auto-add a database resource
|
|
content: `SELECT 1\n`,
|
|
expectedParam: undefined as any,
|
|
expectedType: undefined,
|
|
},
|
|
{
|
|
language: "graphql",
|
|
content: `query($name: String) {\n user(name: $name) { id }\n}\n`,
|
|
expectedParam: "name",
|
|
expectedType: "string",
|
|
expectedResourceParam: { name: "api", format: "resource-graphql" },
|
|
},
|
|
{
|
|
language: "php",
|
|
content: `<?php\nfunction main(string $x) {\n return $x;\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "rust",
|
|
content: `fn main(x: String) -> Result<String, String> {\n Ok(x)\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "csharp",
|
|
content: `class Script {\n public static string Main(string x) {\n return x;\n }\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "nu",
|
|
content: `def main [x: string] {\n print $x\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "ansible",
|
|
content: `---\ninventory:\n - resource_type: ansible_inventory\n---\n- name: Test\n hosts: 127.0.0.1\n connection: local\n tasks:\n - name: Echo\n debug:\n msg: "hello"\n`,
|
|
// Ansible parser produces "inventory.ini" as param name
|
|
expectedParam: "inventory.ini",
|
|
expectedType: undefined,
|
|
},
|
|
{
|
|
language: "java",
|
|
content: `public class Main {\n public static String main(String x) {\n return x;\n }\n}\n`,
|
|
expectedParam: "x",
|
|
expectedType: "string",
|
|
},
|
|
{
|
|
language: "ruby",
|
|
content: `def main(x)\n puts x\nend\n`,
|
|
expectedParam: "x",
|
|
expectedType: undefined, // Ruby is dynamically typed
|
|
},
|
|
];
|
|
|
|
describe("generate-metadata schema parsing", () => {
|
|
for (const tc of languageTestCases) {
|
|
test(`${tc.language}: WASM parser loads and infers schema`, async () => {
|
|
const result = await inferSchema(
|
|
tc.language,
|
|
tc.content,
|
|
{},
|
|
`test.${tc.language}`
|
|
);
|
|
|
|
expect(result).toBeDefined();
|
|
expect(result.schema).toBeDefined();
|
|
expect(result.schema.properties).toBeDefined();
|
|
|
|
if (tc.expectedParam) {
|
|
expect(result.schema.properties[tc.expectedParam]).toBeDefined();
|
|
|
|
if (tc.expectedType !== undefined) {
|
|
expect(result.schema.properties[tc.expectedParam].type).toEqual(
|
|
tc.expectedType
|
|
);
|
|
}
|
|
}
|
|
|
|
if (tc.expectedResourceParam) {
|
|
const rp = result.schema.properties[tc.expectedResourceParam.name];
|
|
expect(rp).toBeDefined();
|
|
expect(rp.type).toEqual("object");
|
|
expect(rp.format).toEqual(tc.expectedResourceParam.format);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
const allLanguages: ScriptLanguage[] = [
|
|
"python3", "bun", "deno", "nativets", "go", "bash", "powershell",
|
|
"postgresql", "mysql", "bigquery", "snowflake", "mssql", "oracledb",
|
|
"duckdb", "graphql", "php", "rust", "csharp", "nu", "ansible", "java", "ruby",
|
|
];
|
|
|
|
describe("generate-metadata invalid input handling", () => {
|
|
for (const lang of allLanguages) {
|
|
test(`${lang}: does not crash on invalid input`, async () => {
|
|
const result = await inferSchema(
|
|
lang,
|
|
"THIS IS INVALID GARBAGE @#$%^&*()",
|
|
{},
|
|
`test.${lang}`
|
|
);
|
|
|
|
expect(result).toBeDefined();
|
|
expect(result.schema).toBeDefined();
|
|
expect(result.schema.properties).toBeDefined();
|
|
// Should return a valid (possibly empty) schema, not throw
|
|
expect(typeof result.schema.properties).toBe("object");
|
|
});
|
|
}
|
|
});
|