-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1487 from ibaryshnikov/shared_array_buffer_tests
Added tests for SharedArrayBuffer
- Loading branch information
Showing
4 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
exports.is_shared_array_buffer_supported = function () { | ||
return typeof SharedArrayBuffer === 'function'; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
use js_sys::*; | ||
use wasm_bindgen::JsCast; | ||
use wasm_bindgen::prelude::*; | ||
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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters