aboutsummaryrefslogtreecommitdiffstats
path: root/tests/zotapi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/zotapi.rs')
-rw-r--r--tests/zotapi.rs15
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)