From ce5a59c81ba15b6222fb675a4fb9fc2799e91608 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 23 Sep 2018 20:20:34 +0200 Subject: Begin implement undocumented abconfig API. --- tests/zotapi.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests') diff --git a/tests/zotapi.rs b/tests/zotapi.rs index 269e8d7..3f889c5 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -156,3 +156,17 @@ fn fetch_connections() { let _res = z.abook().fetch().unwrap(); m.assert(); } + +#[test] +fn fetch_abconfig() { + let m = mock("GET", "/api/z/1.0/abconfig") + .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 _res = z.abconfig().fetch().unwrap(); + m.assert(); +} -- cgit v1.2.3