mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Added ping response test
This commit is contained in:
parent
16b88a6d8f
commit
7fb00a1e15
@ -37,6 +37,9 @@ int main(int argc, char* argv[]) {
|
||||
unit_test_setup_teardown(multiple_pings,
|
||||
init_prof_test,
|
||||
close_prof_test),
|
||||
unit_test_setup_teardown(responds_to_ping,
|
||||
init_prof_test,
|
||||
close_prof_test),
|
||||
};
|
||||
|
||||
return run_tests(all_tests);
|
||||
|
@ -166,3 +166,25 @@ multiple_pings(void **state)
|
||||
"</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 sends_rooms_iq(void **state);
|
||||
void multiple_pings(void **state);
|
||||
void responds_to_ping(void **state);
|
||||
|
Loading…
Reference in New Issue
Block a user