mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
a2cefdf0a2
* 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>
384 lines
11 KiB
TypeScript
384 lines
11 KiB
TypeScript
import { expect, test } from "bun:test";
|
|
import { mkdir, writeFile } from "node:fs/promises";
|
|
import { withTestBackend } from "./test_backend.ts";
|
|
|
|
// =============================================================================
|
|
// PREVIEW COMMAND INTEGRATION TESTS
|
|
// Tests for `wmill script preview` and `wmill flow preview` commands
|
|
//
|
|
// These tests require a backend to run. Run with:
|
|
// deno test --allow-all test/preview.test.ts
|
|
//
|
|
// The tests cover:
|
|
// - Regular script preview (non-codebase)
|
|
// - Codebase script preview (CJS format)
|
|
// - Codebase script preview (ESM format)
|
|
// - Codebase script preview with assets (tar bundle)
|
|
// - Codebase script preview with ESM + tar
|
|
// - Flow preview
|
|
// =============================================================================
|
|
|
|
// Helper to create a wmill.yaml config file
|
|
async function createWmillConfig(
|
|
tempDir: string,
|
|
config: {
|
|
defaultTs?: "bun" | "deno";
|
|
codebases?: Array<{
|
|
relative_path: string;
|
|
includes?: string[];
|
|
format?: "cjs" | "esm";
|
|
assets?: Array<{ from: string; to: string }>;
|
|
}>;
|
|
}
|
|
): Promise<void> {
|
|
let yamlContent = `defaultTs: ${config.defaultTs ?? "bun"}\n`;
|
|
|
|
if (config.codebases && config.codebases.length > 0) {
|
|
yamlContent += "codebases:\n";
|
|
for (const cb of config.codebases) {
|
|
yamlContent += ` - relative_path: ${cb.relative_path}\n`;
|
|
yamlContent += " includes:\n";
|
|
for (const inc of cb.includes ?? ["**"]) {
|
|
yamlContent += ` - "${inc}"\n`;
|
|
}
|
|
if (cb.format) {
|
|
yamlContent += ` format: ${cb.format}\n`;
|
|
}
|
|
if (cb.assets && cb.assets.length > 0) {
|
|
yamlContent += " assets:\n";
|
|
for (const asset of cb.assets) {
|
|
yamlContent += ` - from: ${asset.from}\n`;
|
|
yamlContent += ` to: ${asset.to}\n`;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
await writeFile(`${tempDir}/wmill.yaml`, yamlContent, "utf-8");
|
|
}
|
|
|
|
// Helper to create a script file with metadata
|
|
async function createScript(
|
|
tempDir: string,
|
|
path: string,
|
|
content: string,
|
|
metadata?: {
|
|
summary?: string;
|
|
description?: string;
|
|
}
|
|
): Promise<void> {
|
|
const dir = `${tempDir}/${path.substring(0, path.lastIndexOf("/"))}`;
|
|
await mkdir(dir, { recursive: true });
|
|
await writeFile(`${tempDir}/${path}`, content, "utf-8");
|
|
|
|
// Create metadata file
|
|
const metaPath = path.replace(/\.[^.]+$/, ".script.yaml");
|
|
const metaContent = `summary: "${metadata?.summary ?? "Test script"}"
|
|
description: "${metadata?.description ?? "Test script description"}"
|
|
lock: ""
|
|
schema:
|
|
$schema: "https://json-schema.org/draft/2020-12/schema"
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
default: "World"
|
|
required: []
|
|
`;
|
|
await writeFile(`${tempDir}/${metaPath}`, metaContent, "utf-8");
|
|
}
|
|
|
|
// Helper to create a flow directory with flow.yaml
|
|
async function createFlow(
|
|
tempDir: string,
|
|
flowPath: string,
|
|
options: {
|
|
summary: string;
|
|
scriptContent: string;
|
|
}
|
|
): Promise<void> {
|
|
const dir = `${tempDir}/${flowPath}`;
|
|
await mkdir(dir, { recursive: true });
|
|
|
|
const flowYaml = `summary: "${options.summary}"
|
|
description: "Test flow"
|
|
value:
|
|
modules:
|
|
- id: "a"
|
|
value:
|
|
type: "rawscript"
|
|
language: "bun"
|
|
content: |
|
|
${options.scriptContent.split("\n").map(line => ` ${line}`).join("\n")}
|
|
schema:
|
|
$schema: "https://json-schema.org/draft/2020-12/schema"
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
default: "World"
|
|
required: []
|
|
`;
|
|
await writeFile(`${dir}/flow.yaml`, flowYaml, "utf-8");
|
|
}
|
|
|
|
// =============================================================================
|
|
// SCRIPT PREVIEW TESTS
|
|
// =============================================================================
|
|
|
|
test("script preview: regular script (non-codebase)", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
await createWmillConfig(tempDir, { defaultTs: "bun" });
|
|
await createScript(
|
|
tempDir,
|
|
"f/test/simple_script.ts",
|
|
`export function main(name: string = "World") {
|
|
return \`Hello, \${name}!\`;
|
|
}`
|
|
);
|
|
|
|
const result = await backend.runCLICommand(
|
|
["script", "preview", "f/test/simple_script.ts"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
expect(result.stdout + result.stderr).toContain("Hello, World!");
|
|
});
|
|
});
|
|
|
|
test("script preview: codebase script (CJS)", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
await createWmillConfig(tempDir, {
|
|
defaultTs: "bun",
|
|
codebases: [{ relative_path: "f/codebase", includes: ["**"] }],
|
|
});
|
|
|
|
await createScript(
|
|
tempDir,
|
|
"f/codebase/cjs_script.ts",
|
|
`export function main(name: string = "World") {
|
|
console.log("CJS codebase script running");
|
|
return \`Hello from CJS codebase, \${name}!\`;
|
|
}`
|
|
);
|
|
|
|
const result = await backend.runCLICommand(
|
|
["script", "preview", "f/codebase/cjs_script.ts"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
expect(result.stdout + result.stderr).toContain("Hello from CJS codebase, World!");
|
|
});
|
|
});
|
|
|
|
test("script preview: codebase script (ESM)", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
await createWmillConfig(tempDir, {
|
|
defaultTs: "bun",
|
|
codebases: [{ relative_path: "f/codebase_esm", includes: ["**"], format: "esm" }],
|
|
});
|
|
|
|
await createScript(
|
|
tempDir,
|
|
"f/codebase_esm/esm_script.ts",
|
|
`export function main(name: string = "World") {
|
|
console.log("ESM codebase script running");
|
|
return \`Hello from ESM codebase, \${name}!\`;
|
|
}`
|
|
);
|
|
|
|
const result = await backend.runCLICommand(
|
|
["script", "preview", "f/codebase_esm/esm_script.ts"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
expect(result.stdout + result.stderr).toContain("Hello from ESM codebase, World!");
|
|
});
|
|
});
|
|
|
|
test("script preview: codebase script with assets (tar)", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
await createWmillConfig(tempDir, {
|
|
defaultTs: "bun",
|
|
codebases: [{
|
|
relative_path: "f/codebase_tar",
|
|
includes: ["**"],
|
|
assets: [{ from: "f/codebase_tar/data.json", to: "data.json" }],
|
|
}],
|
|
});
|
|
|
|
// Create asset file
|
|
await mkdir(`${tempDir}/f/codebase_tar`, { recursive: true });
|
|
await writeFile(
|
|
`${tempDir}/f/codebase_tar/data.json`,
|
|
JSON.stringify({ message: "Hello from asset!" }),
|
|
"utf-8"
|
|
);
|
|
|
|
await createScript(
|
|
tempDir,
|
|
"f/codebase_tar/tar_script.ts",
|
|
`import * as fs from "fs";
|
|
|
|
export function main(name: string = "World") {
|
|
console.log("Tar codebase script running");
|
|
const data = fs.readFileSync("data.json", "utf-8");
|
|
const parsed = JSON.parse(data);
|
|
return \`Hello \${name}! Asset says: \${parsed.message}\`;
|
|
}`
|
|
);
|
|
|
|
const result = await backend.runCLICommand(
|
|
["script", "preview", "f/codebase_tar/tar_script.ts"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
expect(result.stdout + result.stderr).toContain("Hello World! Asset says: Hello from asset!");
|
|
});
|
|
});
|
|
|
|
test("script preview: codebase script ESM + tar (assets)", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
await createWmillConfig(tempDir, {
|
|
defaultTs: "bun",
|
|
codebases: [{
|
|
relative_path: "f/codebase_esm_tar",
|
|
includes: ["**"],
|
|
format: "esm",
|
|
assets: [{ from: "f/codebase_esm_tar/config.json", to: "config.json" }],
|
|
}],
|
|
});
|
|
|
|
// Create asset file
|
|
await mkdir(`${tempDir}/f/codebase_esm_tar`, { recursive: true });
|
|
await writeFile(
|
|
`${tempDir}/f/codebase_esm_tar/config.json`,
|
|
JSON.stringify({ setting: "esm_tar_value" }),
|
|
"utf-8"
|
|
);
|
|
|
|
await createScript(
|
|
tempDir,
|
|
"f/codebase_esm_tar/esm_tar_script.ts",
|
|
`import * as fs from "fs";
|
|
|
|
export function main(name: string = "World") {
|
|
console.log("ESM + tar codebase script running");
|
|
const config = fs.readFileSync("config.json", "utf-8");
|
|
const parsed = JSON.parse(config);
|
|
return \`Hello \${name}! Config setting: \${parsed.setting}\`;
|
|
}`
|
|
);
|
|
|
|
const result = await backend.runCLICommand(
|
|
["script", "preview", "f/codebase_esm_tar/esm_tar_script.ts"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
expect(result.stdout + result.stderr).toContain("Hello World! Config setting: esm_tar_value");
|
|
});
|
|
});
|
|
|
|
test("script preview: codebase with imports (simulates ../shared layout)", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
// This test simulates a codebase that could be in a parent directory.
|
|
// The structure is:
|
|
// tempDir/
|
|
// wmill.yaml (codebase at ".")
|
|
// f/
|
|
// lib/
|
|
// helper.ts (shared module)
|
|
// main_script.ts (imports helper)
|
|
//
|
|
// This tests that codebase bundling correctly includes imported modules,
|
|
// which is the key functionality needed for ../shared codebases during sync.
|
|
// Note: Preview requires valid windmill paths (u/, g/, f/), so we run
|
|
// from within the codebase directory.
|
|
|
|
await createWmillConfig(tempDir, {
|
|
defaultTs: "bun",
|
|
codebases: [{ relative_path: ".", includes: ["**"] }],
|
|
});
|
|
|
|
// Create helper module
|
|
await mkdir(`${tempDir}/f/lib`, { recursive: true });
|
|
await writeFile(
|
|
`${tempDir}/f/lib/helper.ts`,
|
|
`export function greet(name: string): string {
|
|
return \`Hello from shared codebase, \${name}!\`;
|
|
}`,
|
|
"utf-8"
|
|
);
|
|
|
|
// Create main script that imports the helper
|
|
await writeFile(
|
|
`${tempDir}/f/lib/main_script.ts`,
|
|
`import { greet } from "./helper";
|
|
|
|
export function main(name: string = "World") {
|
|
console.log("Running codebase script with imports");
|
|
return greet(name);
|
|
}`,
|
|
"utf-8"
|
|
);
|
|
|
|
// Create script metadata
|
|
await writeFile(
|
|
`${tempDir}/f/lib/main_script.script.yaml`,
|
|
`summary: "Test script with imports"
|
|
description: "Test script that imports from helper module"
|
|
lock: ""
|
|
schema:
|
|
$schema: "https://json-schema.org/draft/2020-12/schema"
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
default: "World"
|
|
required: []
|
|
`,
|
|
"utf-8"
|
|
);
|
|
|
|
// Run preview - the script should be bundled with the helper module
|
|
const result = await backend.runCLICommand(
|
|
["script", "preview", "f/lib/main_script.ts"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
// The script should be bundled (includes the helper) and run successfully
|
|
expect(
|
|
result.stdout + result.stderr,
|
|
).toContain("Hello from shared codebase, World!");
|
|
});
|
|
});
|
|
|
|
// =============================================================================
|
|
// FLOW PREVIEW TESTS
|
|
// =============================================================================
|
|
|
|
test("flow preview: simple flow", async () => {
|
|
await withTestBackend(async (backend, tempDir) => {
|
|
await createWmillConfig(tempDir, { defaultTs: "bun" });
|
|
await createFlow(tempDir, "f/test/simple_flow.flow", {
|
|
summary: "Test flow",
|
|
scriptContent: `export function main(name: string = "World") { return \`Flow says: Hello, \${name}!\`; }`,
|
|
});
|
|
|
|
const result = await backend.runCLICommand(
|
|
["flow", "preview", "f/test/simple_flow.flow"],
|
|
tempDir
|
|
);
|
|
|
|
expect(result.code).toEqual(0);
|
|
expect(result.stdout + result.stderr).toContain("Flow says: Hello, World!");
|
|
});
|
|
});
|
|
|