2017-12-15 06:31:01 +03:00
|
|
|
extern crate wasm_bindgen_cli_support as cli;
|
|
|
|
|
|
|
|
use std::env;
|
2018-01-30 08:20:38 +03:00
|
|
|
use std::fs::{self, File};
|
2018-03-03 06:20:14 +03:00
|
|
|
use std::io::{self, Write, Read};
|
2017-12-15 06:31:01 +03:00
|
|
|
use std::path::{PathBuf, Path};
|
|
|
|
use std::process::Command;
|
|
|
|
use std::sync::atomic::*;
|
2017-12-15 06:36:41 +03:00
|
|
|
use std::time::Instant;
|
2017-12-15 06:31:01 +03:00
|
|
|
|
2017-12-19 01:31:01 +03:00
|
|
|
static CNT: AtomicUsize = ATOMIC_USIZE_INIT;
|
|
|
|
thread_local!(static IDX: usize = CNT.fetch_add(1, Ordering::SeqCst));
|
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
pub struct Project {
|
|
|
|
files: Vec<(String, String)>,
|
2017-12-21 00:24:18 +03:00
|
|
|
debug: bool,
|
2018-01-25 06:14:40 +03:00
|
|
|
js: bool,
|
2018-03-29 11:47:44 +03:00
|
|
|
node: bool,
|
2017-12-15 06:31:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn project() -> Project {
|
|
|
|
let dir = Path::new(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
let dir = dir.parent().unwrap() // chop off `test-support`
|
|
|
|
.parent().unwrap(); // chop off `crates`
|
2017-12-15 06:36:41 +03:00
|
|
|
|
|
|
|
let mut lockfile = String::new();
|
|
|
|
fs::File::open(&dir.join("Cargo.lock")).unwrap()
|
|
|
|
.read_to_string(&mut lockfile).unwrap();
|
2017-12-15 06:31:01 +03:00
|
|
|
Project {
|
2017-12-21 00:24:18 +03:00
|
|
|
debug: true,
|
2018-01-25 06:14:40 +03:00
|
|
|
js: false,
|
2018-03-29 11:47:44 +03:00
|
|
|
node: false,
|
2017-12-15 06:31:01 +03:00
|
|
|
files: vec![
|
|
|
|
("Cargo.toml".to_string(), format!(r#"
|
|
|
|
[package]
|
2017-12-19 01:31:01 +03:00
|
|
|
name = "test{}"
|
2017-12-15 06:31:01 +03:00
|
|
|
version = "0.0.1"
|
|
|
|
authors = []
|
|
|
|
|
2017-12-19 01:31:01 +03:00
|
|
|
[workspace]
|
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2018-03-07 20:49:22 +03:00
|
|
|
# XXX: It is important that `[dependencies]` is the last section
|
|
|
|
# here, so that `add_local_dependency` functions correctly!
|
2017-12-15 06:31:01 +03:00
|
|
|
[dependencies]
|
|
|
|
wasm-bindgen = {{ path = '{}' }}
|
2017-12-19 01:31:01 +03:00
|
|
|
"#, IDX.with(|x| *x), dir.display())),
|
2017-12-15 06:31:01 +03:00
|
|
|
|
2017-12-15 06:36:41 +03:00
|
|
|
("Cargo.lock".to_string(), lockfile),
|
|
|
|
|
2018-03-03 06:20:14 +03:00
|
|
|
("run.js".to_string(), r#"
|
2017-12-20 06:06:48 +03:00
|
|
|
import * as process from "process";
|
|
|
|
|
2018-03-03 06:20:14 +03:00
|
|
|
const test = import("./test");
|
2017-12-20 06:06:48 +03:00
|
|
|
|
2018-03-03 06:20:14 +03:00
|
|
|
test.then(test => {
|
2018-01-30 08:20:38 +03:00
|
|
|
test.test();
|
2017-12-20 06:06:48 +03:00
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
process.exit(1);
|
2017-12-15 06:31:01 +03:00
|
|
|
});
|
|
|
|
"#.to_string()),
|
2018-01-30 08:20:38 +03:00
|
|
|
|
2018-03-30 00:49:36 +03:00
|
|
|
("run-node.js".to_string(), r#"
|
|
|
|
require("./test").test();
|
|
|
|
"#.to_string()),
|
|
|
|
|
2018-03-03 06:20:14 +03:00
|
|
|
("webpack.config.js".to_string(), r#"
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: './run.js',
|
|
|
|
mode: "development",
|
|
|
|
devtool: "source-map",
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
|
|
|
use: 'ts-loader',
|
|
|
|
exclude: /node_modules/
|
|
|
|
}
|
2018-03-03 01:20:05 +03:00
|
|
|
]
|
2018-03-03 06:20:14 +03:00
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
extensions: [ '.ts', '.js', '.wasm' ]
|
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: 'bundle.js',
|
|
|
|
path: path.resolve(__dirname, '.')
|
|
|
|
},
|
|
|
|
target: 'node'
|
|
|
|
};
|
|
|
|
"#.to_string()),
|
|
|
|
("tsconfig.json".to_string(), r#"
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["es2015"]
|
|
|
|
}
|
2018-01-30 08:20:38 +03:00
|
|
|
}
|
|
|
|
"#.to_string()),
|
2017-12-15 06:31:01 +03:00
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn root() -> PathBuf {
|
|
|
|
let idx = IDX.with(|x| *x);
|
|
|
|
|
|
|
|
let mut me = env::current_exe().unwrap();
|
|
|
|
me.pop(); // chop off exe name
|
|
|
|
me.pop(); // chop off `deps`
|
|
|
|
me.pop(); // chop off `debug` / `release`
|
|
|
|
me.push("generated-tests");
|
|
|
|
me.push(&format!("test{}", idx));
|
|
|
|
return me
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Project {
|
|
|
|
pub fn file(&mut self, name: &str, contents: &str) -> &mut Project {
|
|
|
|
self.files.push((name.to_string(), contents.to_string()));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-12-21 00:24:18 +03:00
|
|
|
pub fn debug(&mut self, debug: bool) -> &mut Project {
|
|
|
|
self.debug = debug;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-03-29 11:47:44 +03:00
|
|
|
pub fn node(&mut self, node: bool) -> &mut Project {
|
|
|
|
self.node = node;
|
2018-03-07 19:50:56 +03:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-01-25 06:14:40 +03:00
|
|
|
pub fn js(&mut self, js: bool) -> &mut Project {
|
|
|
|
self.js = js;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-03-07 20:49:22 +03:00
|
|
|
pub fn add_local_dependency(&mut self, name: &str, path: &str) -> &mut Project {
|
|
|
|
{
|
|
|
|
let cargo_toml = self.files
|
|
|
|
.iter_mut()
|
|
|
|
.find(|f| f.0 == "Cargo.toml")
|
|
|
|
.expect("should have Cargo.toml file!");
|
|
|
|
cargo_toml.1.push_str(name);
|
|
|
|
cargo_toml.1.push_str(" = { path = \"");
|
|
|
|
cargo_toml.1.push_str(path);
|
|
|
|
cargo_toml.1.push_str("\" }");
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
pub fn test(&mut self) {
|
|
|
|
let root = root();
|
|
|
|
drop(fs::remove_dir_all(&root));
|
|
|
|
for &(ref file, ref contents) in self.files.iter() {
|
|
|
|
let dst = root.join(file);
|
|
|
|
fs::create_dir_all(dst.parent().unwrap()).unwrap();
|
|
|
|
fs::File::create(&dst).unwrap().write_all(contents.as_ref()).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
let target_dir = root.parent().unwrap() // chop off test name
|
|
|
|
.parent().unwrap(); // chop off `generated-tests`
|
|
|
|
|
|
|
|
let mut cmd = Command::new("cargo");
|
|
|
|
cmd.arg("build")
|
|
|
|
.arg("--target")
|
|
|
|
.arg("wasm32-unknown-unknown")
|
|
|
|
.current_dir(&root)
|
|
|
|
.env("CARGO_TARGET_DIR", &target_dir);
|
|
|
|
run(&mut cmd, "cargo");
|
|
|
|
|
2017-12-19 01:31:01 +03:00
|
|
|
let idx = IDX.with(|x| *x);
|
|
|
|
let mut out = target_dir.join(&format!("wasm32-unknown-unknown/debug/test{}.wasm", idx));
|
2017-12-15 06:31:01 +03:00
|
|
|
|
2018-01-30 08:20:38 +03:00
|
|
|
let as_a_module = root.join("out.wasm");
|
|
|
|
fs::copy(&out, &as_a_module).unwrap();
|
|
|
|
|
|
|
|
cli::Bindgen::new()
|
|
|
|
.input_path(&as_a_module)
|
|
|
|
.typescript(true)
|
2018-03-29 11:47:44 +03:00
|
|
|
.nodejs(self.node)
|
2017-12-21 00:24:18 +03:00
|
|
|
.debug(self.debug)
|
2018-01-30 08:20:38 +03:00
|
|
|
.generate(&root)
|
2017-12-15 06:31:01 +03:00
|
|
|
.expect("failed to run bindgen");
|
2018-01-30 08:20:38 +03:00
|
|
|
|
|
|
|
let mut wasm = Vec::new();
|
2018-03-06 00:25:14 +03:00
|
|
|
File::open(root.join("out_bg.wasm")).unwrap()
|
2018-01-30 08:20:38 +03:00
|
|
|
.read_to_end(&mut wasm).unwrap();
|
|
|
|
let obj = cli::wasm2es6js::Config::new()
|
|
|
|
.base64(true)
|
|
|
|
.generate(&wasm)
|
|
|
|
.expect("failed to convert wasm to js");
|
2018-03-06 00:25:14 +03:00
|
|
|
File::create(root.join("out_bg.d.ts")).unwrap()
|
2018-01-30 08:20:38 +03:00
|
|
|
.write_all(obj.typescript().as_bytes()).unwrap();
|
2018-03-03 06:20:14 +03:00
|
|
|
|
|
|
|
|
|
|
|
// move files from the root into each test, it looks like this may be
|
|
|
|
// needed for webpack to work well when invoked concurrently.
|
|
|
|
fs::hard_link("package.json", root.join("package.json")).unwrap();
|
|
|
|
fs::hard_link("yarn.lock", root.join("yarn.lock")).unwrap();
|
|
|
|
let cwd = env::current_dir().unwrap();
|
|
|
|
symlink_dir(&cwd.join("node_modules"), &root.join("node_modules")).unwrap();
|
2017-12-15 06:31:01 +03:00
|
|
|
|
2018-03-29 11:47:44 +03:00
|
|
|
if self.node {
|
|
|
|
let mut cmd = Command::new("node");
|
2018-03-30 00:49:36 +03:00
|
|
|
cmd.arg(root.join("run-node.js"))
|
2018-03-29 11:47:44 +03:00
|
|
|
.current_dir(&root);
|
|
|
|
run(&mut cmd, "node");
|
2018-03-03 01:20:05 +03:00
|
|
|
} else {
|
2018-03-29 11:47:44 +03:00
|
|
|
let mut cmd = if cfg!(windows) {
|
|
|
|
let mut c = Command::new("cmd");
|
|
|
|
c.arg("/c");
|
|
|
|
c.arg("yarn");
|
|
|
|
c
|
|
|
|
} else {
|
|
|
|
Command::new("yarn")
|
|
|
|
};
|
|
|
|
cmd.arg("webpack").current_dir(&root);
|
2018-03-29 22:26:42 +03:00
|
|
|
run(&mut cmd, "yarn");
|
2018-03-29 11:47:44 +03:00
|
|
|
|
|
|
|
let mut cmd = Command::new("node");
|
|
|
|
cmd.arg(root.join("bundle.js"))
|
|
|
|
.current_dir(&root);
|
|
|
|
run(&mut cmd, "node");
|
|
|
|
}
|
2017-12-15 06:31:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-03 06:20:14 +03:00
|
|
|
#[cfg(unix)]
|
|
|
|
fn symlink_dir(a: &Path, b: &Path) -> io::Result<()> {
|
|
|
|
use std::os::unix::fs::symlink;
|
|
|
|
symlink(a, b)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
fn symlink_dir(a: &Path, b: &Path) -> io::Result<()> {
|
|
|
|
use std::os::windows::fs::symlink_dir;
|
|
|
|
symlink_dir(a, b)
|
|
|
|
}
|
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
fn run(cmd: &mut Command, program: &str) {
|
2017-12-15 06:36:41 +03:00
|
|
|
println!("···················································");
|
2017-12-15 06:31:01 +03:00
|
|
|
println!("running {:?}", cmd);
|
2017-12-15 06:36:41 +03:00
|
|
|
let start = Instant::now();
|
2017-12-15 06:31:01 +03:00
|
|
|
let output = match cmd.output() {
|
|
|
|
Ok(output) => output,
|
|
|
|
Err(err) => panic!("failed to spawn `{}`: {}", program, err),
|
|
|
|
};
|
|
|
|
println!("exit: {}", output.status);
|
2017-12-15 06:36:41 +03:00
|
|
|
let dur = start.elapsed();
|
|
|
|
println!("dur: {}.{:03}ms", dur.as_secs(), dur.subsec_nanos() / 1_000_000);
|
2017-12-15 06:31:01 +03:00
|
|
|
if output.stdout.len() > 0 {
|
|
|
|
println!("stdout ---\n{}", String::from_utf8_lossy(&output.stdout));
|
|
|
|
}
|
|
|
|
if output.stderr.len() > 0 {
|
|
|
|
println!("stderr ---\n{}", String::from_utf8_lossy(&output.stderr));
|
|
|
|
}
|
|
|
|
assert!(output.status.success());
|
|
|
|
}
|