Skip to content

Commit 24eab87

Browse files
committed
Set up tests with wasm-bindgen-test
1 parent 28952c7 commit 24eab87

File tree

3 files changed

+84
-4
lines changed

3 files changed

+84
-4
lines changed

crates/xhr/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
[package]
32
name = "gloo-xhr"
43
version = "0.1.0"
@@ -9,6 +8,7 @@ edition = "2018"
98
wasm-bindgen = "0.2.37"
109
js-sys = "0.3.14"
1110
http = "0.1.16"
11+
futures = "0.1.25"
1212

1313
[dependencies.web-sys]
1414
version = "0.3.14"

crates/xhr/src/lib.rs

+28-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ pub mod raw {
2020
impl XmlHttpRequest {
2121
/// Initialize an XmlHttpRequest.
2222
pub fn new() -> Self {
23-
let xhr = web_sys::XmlHttpRequest::new().expect_throw("XMLHttpRequest constructor");
23+
// we assume this is safe because all browsers that support webassembly
24+
// implement XmlHttpRequest.
25+
let xhr = web_sys::XmlHttpRequest::new().unwrap_throw();
2426
XmlHttpRequest { xhr }
2527
}
2628

@@ -50,9 +52,19 @@ pub mod raw {
5052
self.xhr.abort().expect_throw("aborting XHR")
5153
}
5254

55+
/// Send without a body.
56+
///
57+
/// Should probably be renamed.
58+
pub fn send_no_body(&self) {
59+
self.xhr
60+
.send()
61+
.expect_throw("Error sending request. Did you forget to call `open`?")
62+
}
63+
5364
/// Send!
5465
pub fn send<B: XhrBody>(&self, body: B) {
55-
body.send(&self.xhr).expect_throw("sending XHR")
66+
body.send(&self.xhr)
67+
.expect_throw("Error sending request. Did you forget to call `open`?")
5668
}
5769

5870
/// Set a header on the request.
@@ -88,7 +100,20 @@ pub mod raw {
88100
.collect()
89101
}
90102

103+
/// The error callback can fire in cases such as CORS errors.
104+
pub fn set_onerror<C>(&self, callback: C)
105+
where
106+
C: FnMut(web_sys::ProgressEvent) + 'static,
107+
{
108+
let closure = Closure::wrap(Box::new(callback) as Box<FnMut(web_sys::ProgressEvent)>);
109+
self.xhr.set_onerror(Some(closure.as_ref().unchecked_ref()));
110+
closure.forget();
111+
}
112+
91113
/// see mdn
114+
///
115+
/// This takes an FnMut because the callback can be called more than once (if
116+
/// `send` is called more than once)
92117
pub fn set_onload<C>(&self, callback: C)
93118
where
94119
C: FnMut(web_sys::ProgressEvent) + 'static,
@@ -152,7 +177,7 @@ pub mod raw {
152177
/// https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/readyState
153178
pub fn ready_state(&self) -> ReadyState {
154179
ReadyState::from_u16(self.xhr.ready_state())
155-
.expect_throw("XMLHttpRequest ReadyState must be 0 < n < 4")
180+
.expect_throw("XMLHttpRequest ReadyState must be 0 n 4")
156181
}
157182
}
158183

crates/xhr/tests/web.rs

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
//! Test suite for the Web and headless browsers.
2+
3+
#![cfg(target_arch = "wasm32")]
4+
5+
use futures::prelude::*;
6+
use gloo_xhr::raw::XmlHttpRequest;
7+
use wasm_bindgen::*;
8+
use wasm_bindgen_test::*;
9+
10+
wasm_bindgen_test_configure!(run_in_browser);
11+
12+
#[wasm_bindgen_test]
13+
fn constructor_does_not_throw() {
14+
XmlHttpRequest::new();
15+
}
16+
17+
#[wasm_bindgen_test(async)]
18+
fn minimal_request_empty_body() -> impl Future<Item = (), Error = wasm_bindgen::JsValue> {
19+
use futures::sync::oneshot;
20+
21+
let (sender, receiver) = oneshot::channel::<()>();
22+
let mut sender = Some(sender);
23+
24+
let request = XmlHttpRequest::new();
25+
26+
request.set_onload(move |_event| {
27+
sender.take().map(|sender| sender.send(()).unwrap());
28+
});
29+
30+
request.open(&http::Method::GET, "/");
31+
request.send_no_body();
32+
33+
receiver.map_err(|_| JsValue::from_str("onload channel was canceled"))
34+
}
35+
36+
#[wasm_bindgen_test(async)]
37+
fn on_error_callback() -> impl Future<Item = (), Error = wasm_bindgen::JsValue> {
38+
use futures::sync::oneshot;
39+
40+
let (sender, receiver) = oneshot::channel::<()>();
41+
let mut sender = Some(sender);
42+
43+
let request = XmlHttpRequest::new();
44+
45+
request.set_onerror(move |_event| {
46+
sender.take().map(|sender| sender.send(()).unwrap());
47+
});
48+
49+
// this will trigger a CORS error.
50+
request.open(&http::Method::GET, "https://example.com/");
51+
52+
request.send_no_body();
53+
54+
receiver.map_err(|_| JsValue::from_str("onload channel was canceled"))
55+
}

0 commit comments

Comments
 (0)