mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-21 20:22:14 +00:00
Fix web-sys Location
test
This commit is contained in:
parent
e66d01f7fb
commit
bbc46f92c6
@ -19,13 +19,48 @@ use js_sys::Object;
|
|||||||
|
|
||||||
#[cfg(feature = "Window")]
|
#[cfg(feature = "Window")]
|
||||||
pub fn window() -> Option<Window> {
|
pub fn window() -> Option<Window> {
|
||||||
|
use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering::SeqCst};
|
||||||
use wasm_bindgen::{JsValue, JsCast};
|
use wasm_bindgen::{JsValue, JsCast};
|
||||||
|
|
||||||
js_sys::Function::new_no_args("return this")
|
// Cached `Box<JsValue>`, if we've already executed this.
|
||||||
|
//
|
||||||
|
// 0 = not calculated
|
||||||
|
// 1 = `None`
|
||||||
|
// n = Some(n) == Some(Box<JsValue>)
|
||||||
|
static WINDOW: AtomicUsize = ATOMIC_USIZE_INIT;
|
||||||
|
|
||||||
|
match WINDOW.load(SeqCst) {
|
||||||
|
0 => {}
|
||||||
|
1 => return None,
|
||||||
|
n => return unsafe { Some((*(n as *const JsValue)).clone().unchecked_into()) },
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ok we don't have a cached value, let's load one! Manufacture a function
|
||||||
|
// to get access to the `this` context and see if it's an instance of
|
||||||
|
// `Window`.
|
||||||
|
//
|
||||||
|
// Note that we avoid `unwrap()` on `call0` to avoid code size bloat, we
|
||||||
|
// just handle the `Err` case as returning `None`.
|
||||||
|
let window = js_sys::Function::new_no_args("return this")
|
||||||
.call0(&JsValue::undefined())
|
.call0(&JsValue::undefined())
|
||||||
.ok()?
|
|
||||||
.dyn_into::<Window>()
|
|
||||||
.ok()
|
.ok()
|
||||||
|
.and_then(|w| w.dyn_into::<Window>().ok());
|
||||||
|
|
||||||
|
match &window {
|
||||||
|
None => WINDOW.store(1, SeqCst),
|
||||||
|
Some(window) => {
|
||||||
|
let window: &JsValue = window.as_ref();
|
||||||
|
let ptr: *mut JsValue = Box::into_raw(Box::new(window.clone()));
|
||||||
|
match WINDOW.compare_exchange(0, ptr as usize, SeqCst, SeqCst) {
|
||||||
|
// We stored out value, relinquishing ownership of `ptr`
|
||||||
|
Ok(_) => {}
|
||||||
|
// Another thread one, drop our value
|
||||||
|
Err(_) => unsafe { drop(Box::from_raw(ptr)) },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
window
|
||||||
}
|
}
|
||||||
|
|
||||||
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
||||||
|
@ -1,56 +1,60 @@
|
|||||||
use wasm_bindgen_test::*;
|
use wasm_bindgen_test::*;
|
||||||
use web_sys::Window;
|
use web_sys::{self, Location};
|
||||||
|
|
||||||
|
fn location() -> Location {
|
||||||
|
web_sys::window().unwrap().location()
|
||||||
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn href() {
|
fn href() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.href().unwrap();
|
loc.href().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn origin() {
|
fn origin() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.origin().unwrap();
|
loc.origin().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn protocol() {
|
fn protocol() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.protocol().unwrap();
|
loc.protocol().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn host() {
|
fn host() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.host().unwrap();
|
loc.host().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn hostname() {
|
fn hostname() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.hostname().unwrap();
|
loc.hostname().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn port() {
|
fn port() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.port().unwrap();
|
loc.port().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn pathname() {
|
fn pathname() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.pathname().unwrap();
|
loc.pathname().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn search() {
|
fn search() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.search().unwrap();
|
loc.search().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn hash() {
|
fn hash() {
|
||||||
let loc = Window::location();
|
let loc = location();
|
||||||
loc.hash().unwrap();
|
loc.hash().unwrap();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user