2018-07-24 11:32:18 -07:00
|
|
|
//! Support for printing status information of a test suite in a browser.
|
|
|
|
//!
|
|
|
|
//! Currently this is quite simple, rendering the same as the console tests in
|
|
|
|
//! node.js. Output here is rendered in a `pre`, however.
|
|
|
|
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
use js_sys::Error;
|
|
|
|
|
2018-07-26 18:49:20 -07:00
|
|
|
/// Implementation of `Formatter` for browsers.
|
|
|
|
///
|
|
|
|
/// Routes all output to a `pre` on the page currently. Eventually this probably
|
|
|
|
/// wants to be a pretty table with colors and folding and whatnot.
|
2018-07-24 11:32:18 -07:00
|
|
|
pub struct Browser {
|
|
|
|
pre: Element,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
extern {
|
|
|
|
type HTMLDocument;
|
|
|
|
static document: HTMLDocument;
|
|
|
|
#[wasm_bindgen(method, structural)]
|
|
|
|
fn getElementById(this: &HTMLDocument, id: &str) -> Element;
|
|
|
|
|
|
|
|
type Element;
|
|
|
|
#[wasm_bindgen(method, getter = innerHTML, structural)]
|
|
|
|
fn inner_html(this: &Element) -> String;
|
|
|
|
#[wasm_bindgen(method, setter = innerHTML, structural)]
|
|
|
|
fn set_inner_html(this: &Element, html: &str);
|
|
|
|
|
|
|
|
type BrowserError;
|
|
|
|
#[wasm_bindgen(method, getter, structural)]
|
|
|
|
fn stack(this: &BrowserError) -> JsValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Browser {
|
2018-07-26 18:49:20 -07:00
|
|
|
/// Creates a new instance of `Browser`, assuming that its APIs will work
|
|
|
|
/// (requires `Node::new()` to have return `None` first).
|
2018-07-24 11:32:18 -07:00
|
|
|
pub fn new() -> Browser {
|
|
|
|
let pre = document.getElementById("output");
|
|
|
|
pre.set_inner_html("");
|
|
|
|
Browser {
|
|
|
|
pre,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl super::Formatter for Browser {
|
|
|
|
fn writeln(&self, line: &str) {
|
|
|
|
let mut html = self.pre.inner_html();
|
|
|
|
html.push_str(&line);
|
|
|
|
html.push_str("\n");
|
|
|
|
self.pre.set_inner_html(&html);
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:52:24 -05:00
|
|
|
fn log_test(&self, name: &str, result: &Result<(), JsValue>) {
|
|
|
|
let s = if result.is_ok() { "ok" } else { "FAIL" };
|
|
|
|
self.writeln(&format!("test {} ... {}", name, s));
|
2018-07-24 11:32:18 -07:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:52:24 -05:00
|
|
|
fn stringify_error(&self, err: &JsValue) -> String {
|
2018-07-24 11:32:18 -07:00
|
|
|
// TODO: this should be a checked cast to `Error`
|
2018-08-01 15:52:24 -05:00
|
|
|
let err = Error::from(err.clone());
|
2018-07-24 11:32:18 -07:00
|
|
|
let name = String::from(err.name());
|
|
|
|
let message = String::from(err.message());
|
|
|
|
let err = BrowserError::from(JsValue::from(err));
|
|
|
|
let stack = err.stack();
|
|
|
|
|
2018-07-27 13:16:58 -07:00
|
|
|
let header = format!("{}: {}", name, message);
|
2018-07-24 11:32:18 -07:00
|
|
|
let stack = match stack.as_string() {
|
|
|
|
Some(stack) => stack,
|
|
|
|
None => return header,
|
|
|
|
};
|
|
|
|
|
|
|
|
// If the `stack` variable contains the name/message already, this is
|
|
|
|
// probably a chome-like error which is already rendered well, so just
|
|
|
|
// return this info
|
|
|
|
if stack.contains(&header) {
|
|
|
|
return stack
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback to make sure we don't lose any info
|
|
|
|
format!("{}\n{}", header, stack)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|