use util::*;
use hyper::status::StatusCode;
use hyper::client::Response;
fn with_path<F>(path: &str, f: F) where F: FnOnce(&mut Response) {
run_example("mount", |port| {
let url = format!("http://localhost:{}{}", port, path);
let ref mut res = response_for(&url);
f(res)
})
}
#[test]
fn trims_the_prefix() {
with_path("/test/foo", |res| {
let s = read_body_to_string(res);
assert_eq!(s, "Got request with uri = '/foo'");
})
}
#[test]
fn ignores_unmatched_prefixes() {
with_path("/this_isnt_matched/foo", |res| {
assert_eq!(res.status, StatusCode::NotFound);
})
}
#[test]
fn works_with_another_middleware() {
with_path("/static/files/thoughtram_logo_brain.png", |res| {
assert_eq!(res.status, StatusCode::Ok);
});
with_path("/static/files/nested/foo.js", |res| {
let s = read_body_to_string(res);
assert!(s.starts_with("function foo"), "unexpected response: {:?}", s);
});
}
#[test]
fn fallthroughs_with_same_prefix() {
with_path("/static/files/a", |res| {
let s = read_body_to_string(res);
assert_eq!(s, "No static file with path '/a'!");
});
}