From 10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:41:41 +0200 Subject: Merging upstream version 1.70.0+dfsg2. Signed-off-by: Daniel Baumann --- vendor/js-sys/tests/wasm/SharedArrayBuffer.rs | 59 +++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 vendor/js-sys/tests/wasm/SharedArrayBuffer.rs (limited to 'vendor/js-sys/tests/wasm/SharedArrayBuffer.rs') diff --git a/vendor/js-sys/tests/wasm/SharedArrayBuffer.rs b/vendor/js-sys/tests/wasm/SharedArrayBuffer.rs new file mode 100644 index 000000000..fdfd55d9b --- /dev/null +++ b/vendor/js-sys/tests/wasm/SharedArrayBuffer.rs @@ -0,0 +1,59 @@ +use js_sys::*; +use wasm_bindgen::prelude::*; +use wasm_bindgen::JsCast; +use wasm_bindgen_test::*; + +#[wasm_bindgen(module = "tests/wasm/SharedArrayBuffer.js")] +extern "C" { + fn is_shared_array_buffer_supported() -> bool; +} + +#[wasm_bindgen_test] +fn new() { + if !is_shared_array_buffer_supported() { + return; + } + let x = SharedArrayBuffer::new(42); + let y: JsValue = x.into(); + assert!(y.is_object()); +} + +#[wasm_bindgen_test] +fn byte_length() { + if !is_shared_array_buffer_supported() { + return; + } + let buf = SharedArrayBuffer::new(42); + assert_eq!(buf.byte_length(), 42); +} + +#[wasm_bindgen_test] +fn slice() { + if !is_shared_array_buffer_supported() { + return; + } + let buf = SharedArrayBuffer::new(4); + let slice = buf.slice(2); + assert!(JsValue::from(slice).is_object()); +} + +#[wasm_bindgen_test] +fn slice_with_end() { + if !is_shared_array_buffer_supported() { + return; + } + let buf = SharedArrayBuffer::new(4); + let slice = buf.slice_with_end(1, 2); + assert!(JsValue::from(slice).is_object()); +} + +#[wasm_bindgen_test] +fn sharedarraybuffer_inheritance() { + if !is_shared_array_buffer_supported() { + return; + } + let buf = SharedArrayBuffer::new(4); + assert!(buf.is_instance_of::()); + assert!(buf.is_instance_of::()); + let _: &Object = buf.as_ref(); +} -- cgit v1.2.3