wasm-bindgen-cli 0.2.118

Command line interface of the `#[wasm_bindgen]` attribute and project. For more information see https://github.com/wasm-bindgen/wasm-bindgen.
Documentation
use std::fs;
use std::path::Path;
use std::process::Command;

use anyhow::{bail, Context, Error};

use super::Tests;
use super::{node::shared_setup, Cli};

pub fn execute(module: &str, tmpdir: &Path, cli: Cli, tests: Tests) -> Result<(), Error> {
    let mut js_to_execute = format!(
        r#"import * as wasm from "./{module}.js";

        const nocapture = {nocapture};
        {shared_setup}

        window.__wbg_test_invoke = f => f();

        {args}

        const tests = [];
    "#,
        shared_setup = shared_setup(cli.bench),
        nocapture = cli.nocapture || cli.bench,
        args = cli.get_args(&tests),
    );

    for test in tests.tests {
        js_to_execute.push_str(&format!("tests.push('{}')\n", test.export));
    }

    js_to_execute.push_str(
        r#"const ok = await cx.run(tests.map(n => wasm.__wasm[n]));
if (!ok) Deno.exit(1);"#,
    );

    let js_path = tmpdir.join("run.js");
    fs::write(&js_path, js_to_execute).context("failed to write JS file")?;

    /*
    // Augment `NODE_PATH` so things like `require("tests/my-custom.js")` work
    // and Rust code can import from custom JS shims. This is a bit of a hack
    // and should probably be removed at some point.
    let path = env::var("NODE_PATH").unwrap_or_default();
    let mut path = env::split_paths(&path).collect::<Vec<_>>();
    path.push(env::current_dir().unwrap());
    path.push(tmpdir.to_path_buf());
    let extra_node_args = env::var("NODE_ARGS")
        .unwrap_or_default()
        .split(",")
        .map(|s| s.to_string())
        .filter(|s| !s.is_empty())
        .collect::<Vec<_>>();
    exec(
        Command::new("node")
            .env("NODE_PATH", env::join_paths(&path).unwrap())
            .args(&extra_node_args)
            .arg(&js_path)
            .args(args),
    )*/
    let status = Command::new("deno")
        .arg("run")
        .arg("--allow-read")
        .arg(&js_path)
        .status()?;

    if !status.success() {
        bail!("Deno failed with exit_code {}", status.code().unwrap_or(1))
    }

    Ok(())
}