blob: fdfd55d9bbb6f84fdc7ae026ff82a37dbab9a94c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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::<SharedArrayBuffer>());
assert!(buf.is_instance_of::<Object>());
let _: &Object = buf.as_ref();
}
|