mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-24 23:06:20 +00:00
Added ping response test
This commit is contained in:
@@ -37,6 +37,9 @@ int main(int argc, char* argv[]) {
|
|||||||
unit_test_setup_teardown(multiple_pings,
|
unit_test_setup_teardown(multiple_pings,
|
||||||
init_prof_test,
|
init_prof_test,
|
||||||
close_prof_test),
|
close_prof_test),
|
||||||
|
unit_test_setup_teardown(responds_to_ping,
|
||||||
|
init_prof_test,
|
||||||
|
close_prof_test),
|
||||||
};
|
};
|
||||||
|
|
||||||
return run_tests(all_tests);
|
return run_tests(all_tests);
|
||||||
|
|||||||
@@ -166,3 +166,25 @@ multiple_pings(void **state)
|
|||||||
"</iq>"
|
"</iq>"
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
responds_to_ping(void **state)
|
||||||
|
{
|
||||||
|
will_return(ui_ask_password, strdup("password"));
|
||||||
|
|
||||||
|
expect_any_cons_show();
|
||||||
|
|
||||||
|
cmd_process_input(strdup("/connect stabber@localhost port 5230"));
|
||||||
|
prof_process_xmpp(20);
|
||||||
|
|
||||||
|
stbbr_send(
|
||||||
|
"<iq id=\"ping1\" type=\"get\" to=\"stabber@localhost\" from=\"localhost\">"
|
||||||
|
"<ping xmlns=\"urn:xmpp:ping\"/>"
|
||||||
|
"</iq>");
|
||||||
|
|
||||||
|
prof_process_xmpp(20);
|
||||||
|
|
||||||
|
assert_true(stbbr_verify(
|
||||||
|
"<iq id=\"ping1\" type=\"result\" from=\"stabber@localhost\" to=\"localhost\"/>"
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|||||||
@@ -5,3 +5,4 @@ void connect_jid_requests_bookmarks(void **state);
|
|||||||
void connect_bad_password(void **state);
|
void connect_bad_password(void **state);
|
||||||
void sends_rooms_iq(void **state);
|
void sends_rooms_iq(void **state);
|
||||||
void multiple_pings(void **state);
|
void multiple_pings(void **state);
|
||||||
|
void responds_to_ping(void **state);
|
||||||
|
|||||||
Reference in New Issue
Block a user