2018-07-30 08:14:50 -07:00
|
|
|
use wasm_bindgen::prelude::*;
|
2018-09-26 08:26:00 -07:00
|
|
|
use wasm_bindgen_test::*;
|
2018-07-30 08:14:50 -07:00
|
|
|
use web_sys::XPathResult;
|
|
|
|
|
2019-02-26 08:33:14 -08:00
|
|
|
#[wasm_bindgen(module = "/tests/wasm/element.js")]
|
2018-09-26 08:26:00 -07:00
|
|
|
extern "C" {
|
2018-07-30 08:14:50 -07:00
|
|
|
fn new_xpath_result() -> XPathResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen_test]
|
|
|
|
fn test_xpath_result() {
|
|
|
|
let xpath_result = new_xpath_result();
|
2018-09-26 08:26:00 -07:00
|
|
|
assert_eq!(
|
|
|
|
xpath_result.result_type(),
|
|
|
|
XPathResult::UNORDERED_NODE_ITERATOR_TYPE
|
|
|
|
);
|
2018-07-30 08:14:50 -07:00
|
|
|
assert_eq!(xpath_result.invalid_iterator_state(), false);
|
2018-09-26 08:26:00 -07:00
|
|
|
assert_eq!(
|
|
|
|
xpath_result
|
|
|
|
.iterate_next()
|
|
|
|
.unwrap()
|
|
|
|
.unwrap()
|
|
|
|
.text_content()
|
|
|
|
.unwrap(),
|
|
|
|
"tomato"
|
|
|
|
);
|
2018-07-30 08:14:50 -07:00
|
|
|
}
|