From b1e19406051360bdf2d50a62886103e290ee336d Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 21 Aug 2018 22:21:15 +0200 Subject: Add support for fetching xchan data by address. Not entirely happy with it, have updated the signature of Client::fetch_stream and Client::url to take args, which are left out if they're not serializable (or empty, I hope.) Should probably use an Option instead, or maybe even two entry points for the api. --- tests/zotapi.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests/zotapi.rs') diff --git a/tests/zotapi.rs b/tests/zotapi.rs index 49dde02..ef58171 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -100,3 +100,17 @@ fn create_new_post_with_title() { m.assert(); } + +#[test] +fn fetch_xchan_by_address() { + let m = mock("GET", "/api/z/1.0/xchan?address=test%40test.com") + .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.xchan().by_address("test@test.com").fetch().unwrap(); + m.assert(); +} -- cgit v1.2.3