2015-05-28 15:02:16 -04:00
|
|
|
#include <glib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <cmocka.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <stabber.h>
|
|
|
|
#include <expect.h>
|
|
|
|
|
|
|
|
#include "proftest.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
ping_multiple(void **state)
|
|
|
|
{
|
2015-06-01 17:02:45 -04:00
|
|
|
stbbr_for_id("prof_ping_2",
|
2015-12-29 19:12:24 -05:00
|
|
|
"<iq id='prof_ping_2' type='result' to='stabber@localhost/profanity'/>"
|
2015-05-28 15:02:16 -04:00
|
|
|
);
|
2015-06-13 14:41:11 -04:00
|
|
|
stbbr_for_id("prof_ping_3",
|
2015-12-29 19:12:24 -05:00
|
|
|
"<iq id='prof_ping_3' type='result' to='stabber@localhost/profanity'/>"
|
2015-06-13 14:41:11 -04:00
|
|
|
);
|
2015-05-28 15:02:16 -04:00
|
|
|
|
2015-06-13 14:41:11 -04:00
|
|
|
prof_connect();
|
2015-05-28 15:02:16 -04:00
|
|
|
|
|
|
|
prof_input("/ping");
|
|
|
|
assert_true(stbbr_received(
|
2015-12-29 19:12:24 -05:00
|
|
|
"<iq id='prof_ping_2' type='get'>"
|
|
|
|
"<ping xmlns='urn:xmpp:ping'/>"
|
2015-05-28 15:02:16 -04:00
|
|
|
"</iq>"
|
|
|
|
));
|
2015-05-28 20:01:34 -04:00
|
|
|
assert_true(prof_output_exact("Ping response from server"));
|
2015-05-28 15:02:16 -04:00
|
|
|
|
|
|
|
prof_input("/ping");
|
|
|
|
assert_true(stbbr_received(
|
2015-12-29 19:12:24 -05:00
|
|
|
"<iq id='prof_ping_3' type='get'>"
|
|
|
|
"<ping xmlns='urn:xmpp:ping'/>"
|
2015-05-28 15:02:16 -04:00
|
|
|
"</iq>"
|
|
|
|
));
|
2015-05-28 20:01:34 -04:00
|
|
|
assert_true(prof_output_exact("Ping response from server"));
|
2015-05-28 15:02:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ping_responds(void **state)
|
|
|
|
{
|
2015-06-13 14:41:11 -04:00
|
|
|
prof_connect();
|
2015-05-28 15:02:16 -04:00
|
|
|
|
|
|
|
stbbr_send(
|
2015-12-29 19:12:24 -05:00
|
|
|
"<iq id='pingtest1' type='get' to='stabber@localhost/profanity' from='localhost'>"
|
|
|
|
"<ping xmlns='urn:xmpp:ping'/>"
|
2015-05-28 15:02:16 -04:00
|
|
|
"</iq>"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_true(stbbr_received(
|
2015-12-29 19:12:24 -05:00
|
|
|
"<iq id='pingtest1' type='result' from='stabber@localhost/profanity' to='localhost'/>"
|
2015-05-28 15:02:16 -04:00
|
|
|
));
|
|
|
|
}
|