1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-07-28 18:41:57 +00:00
Files
crates
examples
guide
releases
src
tests
all
js_globals
webidl
api.rs
char.rs
classes.rs
closures.rs
comments.rs
dependencies.rs
enums.rs
import_class.rs
imports.rs
jsobjects.rs
main.rs
math.rs
node.rs
non_debug.rs
non_wasm.rs
simple.rs
slice.rs
structural.rs
u64.rs
validate_prt.rs
.appveyor.yml
.eslintrc.js
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
package-lock.json
package.json
yarn.lock
wasm-bindgen/tests/all/non_wasm.rs

102 lines
2.2 KiB
Rust
Raw Normal View History

2018-06-27 22:42:34 -07:00
use super::{project, run};
use std::process::Command;
#[test]
fn works() {
let mut p = project();
let name = p.crate_name();
2018-06-27 22:42:34 -07:00
p.rlib(true)
.file(
"src/lib.rs",
r#"
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub struct A {
x: u32,
}
#[wasm_bindgen]
impl A {
pub fn new() -> A {
A { x: 3 }
}
pub fn foo(&self) {
}
}
#[wasm_bindgen]
pub fn foo(x: bool) {
A::new().foo();
if x {
bar("test");
baz(JsValue::from(3));
}
}
#[wasm_bindgen]
extern {
fn some_import();
static A: JsValue;
}
#[wasm_bindgen]
pub fn bar(_: &str) -> JsValue {
some_import();
A.clone()
}
#[wasm_bindgen]
pub fn baz(_: JsValue) {
}
2018-06-27 22:42:34 -07:00
"#,
)
.file(
"tests/foo.rs",
&format!(
"
extern crate {} as mytest;
#[test]
fn foo() {{
mytest::foo(false);
mytest::A::new().foo();
}}
2018-06-27 22:42:34 -07:00
",
name
),
)
.file(
"benches/foo.rs",
&format!(
"
#![feature(test)]
extern crate test;
extern crate {} as mytest;
#[bench]
fn foo(b: &mut test::Bencher) {{
b.iter(|| mytest::foo(false));
}}
2018-06-27 22:42:34 -07:00
",
name
),
);
let (root, target_dir) = p.build();
let mut cmd = Command::new("cargo");
cmd.arg("test")
2018-06-27 22:42:34 -07:00
.arg("--test")
.arg("foo")
.arg("--bench")
.arg("foo")
.current_dir(&root)
.env("CARGO_TARGET_DIR", &target_dir);
run(&mut cmd, "cargo");
}