2018-06-09 02:46:51 +03:00
|
|
|
// Keep these tests in alphabetical order, just like the imports in `src/js.rs`.
|
|
|
|
|
|
|
|
use super::project;
|
|
|
|
|
2018-06-19 20:15:09 +03:00
|
|
|
mod Object;
|
|
|
|
|
2018-06-09 02:46:51 +03:00
|
|
|
#[test]
|
|
|
|
#[cfg(feature = "std")]
|
|
|
|
fn decode_uri() {
|
|
|
|
project()
|
|
|
|
.file("src/lib.rs", r#"
|
|
|
|
#![feature(proc_macro, wasm_custom_section)]
|
|
|
|
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
use wasm_bindgen::js;
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
pub fn test() {
|
|
|
|
let x = js::decode_uri("https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B")
|
|
|
|
.ok()
|
|
|
|
.expect("should decode URI OK");
|
|
|
|
assert_eq!(x, "https://mozilla.org/?x=шеллы");
|
|
|
|
|
|
|
|
assert!(js::decode_uri("%E0%A4%A").is_err());
|
|
|
|
}
|
|
|
|
"#)
|
|
|
|
.test();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(feature = "std")]
|
|
|
|
fn encode_uri() {
|
|
|
|
project()
|
|
|
|
.file("src/lib.rs", r#"
|
|
|
|
#![feature(proc_macro, wasm_custom_section)]
|
|
|
|
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
use wasm_bindgen::js;
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
pub fn test() {
|
|
|
|
let x = js::encode_uri("ABC abc 123");
|
|
|
|
assert_eq!(x, "ABC%20abc%20123");
|
|
|
|
}
|
|
|
|
"#)
|
|
|
|
.test();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn eval() {
|
|
|
|
project()
|
|
|
|
.file("src/lib.rs", r#"
|
|
|
|
#![feature(proc_macro, wasm_custom_section)]
|
|
|
|
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
use wasm_bindgen::js;
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
pub fn test() {
|
|
|
|
let x = js::eval("42").ok().expect("should eval OK");
|
|
|
|
assert_eq!(x.as_f64().unwrap(), 42.0);
|
|
|
|
|
|
|
|
let err = js::eval("(function () { throw 42; }())")
|
|
|
|
.err()
|
|
|
|
.expect("eval should throw");
|
|
|
|
assert_eq!(err.as_f64().unwrap(), 42.0);
|
|
|
|
}
|
|
|
|
"#)
|
|
|
|
.test();
|
|
|
|
}
|