diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2018-08-19 19:32:49 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2018-08-19 19:32:49 +0200 |
commit | 9abac137c5282d3bd78776e9da3608c3a32cb49f (patch) | |
tree | d874eafbb19788326e4b9e7c29ddd0bce600cec1 /tests | |
parent | f5bdd3f122138e6ea0a8eafedfaf900862070507 (diff) | |
download | rust-zotapi-9abac137c5282d3bd78776e9da3608c3a32cb49f.tar.gz rust-zotapi-9abac137c5282d3bd78776e9da3608c3a32cb49f.tar.bz2 rust-zotapi-9abac137c5282d3bd78776e9da3608c3a32cb49f.zip |
Add method for fetching network stream.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zotapi.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/zotapi.rs b/tests/zotapi.rs index 2a376a2..1030b19 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -19,6 +19,21 @@ fn get_channel_stream() { } #[test] +fn get_network_stream() { + let m = mock("GET", "/api/z/1.0/network/stream") + .match_header("Authorization", Matcher::Regex(r"Basic \w+".into())) + .with_status(200) + .with_header("content-type", "application/json") + .with_body("{}") + .create(); + + let z = zotapi::client(&format!("http://{}", mockito::SERVER_ADDRESS), "testuser", "test1234"); + let data = z.network_stream(); + m.assert(); + assert_eq!(data.unwrap(), "{}"); +} + +#[test] fn return_error_if_invalid_auth_provided() { let m = mock("GET", "/api/z/1.0/channel/stream") .with_status(401) |