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
|
2017-06-15 19:59:21 -04:00
|
|
|
ping_server(void **state)
|
2015-05-28 15:02:16 -04:00
|
|
|
{
|
2017-06-15 18:27:30 -04:00
|
|
|
stbbr_for_id("prof_disco_info_onconnect_2",
|
|
|
|
"<iq id='prof_disco_info_onconnect_2' to='stabber@localhost/profanity' type='result' from='localhost'>"
|
|
|
|
"<query xmlns='http://jabber.org/protocol/disco#info'>"
|
|
|
|
"<identity category='server' type='im' name='Prosody'/>"
|
|
|
|
"<feature var='urn:xmpp:ping'/>"
|
|
|
|
"</query>"
|
|
|
|
"</iq>"
|
|
|
|
);
|
|
|
|
|
2016-04-12 17:28:21 -04:00
|
|
|
stbbr_for_id("prof_ping_4",
|
|
|
|
"<iq id='prof_ping_4' type='result' to='stabber@localhost/profanity'/>"
|
|
|
|
);
|
2016-05-01 14:39:39 -04:00
|
|
|
stbbr_for_id("prof_ping_5",
|
|
|
|
"<iq id='prof_ping_5' type='result' to='stabber@localhost/profanity'/>"
|
|
|
|
);
|
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(
|
2016-05-01 14:39:39 -04:00
|
|
|
"<iq id='prof_ping_4' type='get'>"
|
2015-12-29 19:12:24 -05:00
|
|
|
"<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(
|
2016-05-01 14:39:39 -04:00
|
|
|
"<iq id='prof_ping_5' type='get'>"
|
2015-12-29 19:12:24 -05:00
|
|
|
"<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
|
|
|
}
|
|
|
|
|
2017-06-15 18:27:30 -04:00
|
|
|
void
|
2017-06-15 19:59:21 -04:00
|
|
|
ping_server_not_supported(void **state)
|
2017-06-15 18:27:30 -04:00
|
|
|
{
|
|
|
|
stbbr_for_id("prof_disco_info_onconnect_2",
|
|
|
|
"<iq id='prof_disco_info_onconnect_2' to='stabber@localhost/profanity' type='result' from='localhost'>"
|
|
|
|
"<query xmlns='http://jabber.org/protocol/disco#info'>"
|
2017-06-15 18:30:39 -04:00
|
|
|
"<identity category='server' type='im' name='Stabber'/>"
|
2017-06-15 18:27:30 -04:00
|
|
|
"</query>"
|
|
|
|
"</iq>"
|
|
|
|
);
|
|
|
|
|
|
|
|
prof_connect();
|
|
|
|
|
|
|
|
prof_input("/ping");
|
|
|
|
assert_true(prof_output_exact("Server does not support ping requests."));
|
|
|
|
}
|
|
|
|
|
2015-05-28 15:02:16 -04:00
|
|
|
void
|
2017-06-15 19:59:21 -04:00
|
|
|
ping_responds_to_server_request(void **state)
|
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
|
|
|
|
|
|
|
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
|
|
|
));
|
|
|
|
}
|
2017-06-15 19:59:21 -04:00
|
|
|
|
|
|
|
void ping_jid(void **state)
|
|
|
|
{
|
|
|
|
stbbr_for_id("prof_caps_4",
|
|
|
|
"<iq id='prof_caps_4' to='stabber@localhost/profanity' type='result' from='buddy1@localhost/mobile'>"
|
2019-05-03 04:46:41 -04:00
|
|
|
"<query xmlns='http://jabber.org/protocol/disco#info' node='http://profanity-im.github.io#LpT2xs3nun7jC2sq4gg3WRDQFZ4='>"
|
2017-06-15 19:59:21 -04:00
|
|
|
"<identity category='client' type='console' name='Profanity0.6.0'/>"
|
|
|
|
"<feature var='urn:xmpp:ping'/>"
|
|
|
|
"<feature var='http://jabber.org/protocol/disco#info'/>"
|
|
|
|
"<feature var='http://jabber.org/protocol/caps'/>"
|
|
|
|
"</query>"
|
|
|
|
"</iq>"
|
|
|
|
);
|
|
|
|
|
|
|
|
prof_connect();
|
|
|
|
|
|
|
|
stbbr_send(
|
|
|
|
"<presence to='stabber@localhost' from='buddy1@localhost/mobile'>"
|
|
|
|
"<priority>10</priority>"
|
|
|
|
"<status>I'm here</status>"
|
|
|
|
"<c "
|
|
|
|
"hash='sha-1' "
|
|
|
|
"xmlns='http://jabber.org/protocol/caps' "
|
2019-05-03 04:46:41 -04:00
|
|
|
"node='http://profanity-im.github.io' "
|
2017-06-15 19:59:21 -04:00
|
|
|
"ver='LpT2xs3nun7jC2sq4gg3WRDQFZ4='"
|
|
|
|
"/>"
|
|
|
|
"</presence>"
|
|
|
|
);
|
|
|
|
assert_true(prof_output_exact("Buddy1 (mobile) is online, \"I'm here\""));
|
|
|
|
|
|
|
|
assert_true(stbbr_received(
|
|
|
|
"<iq id='prof_caps_4' to='buddy1@localhost/mobile' type='get'>"
|
2019-05-03 04:46:41 -04:00
|
|
|
"<query xmlns='http://jabber.org/protocol/disco#info' node='http://profanity-im.github.io#LpT2xs3nun7jC2sq4gg3WRDQFZ4='/>"
|
2017-06-15 19:59:21 -04:00
|
|
|
"</iq>"
|
|
|
|
));
|
|
|
|
|
|
|
|
stbbr_for_id("prof_ping_5",
|
|
|
|
"<iq from='buddy1@localhost/mobile' to='stabber@localhost' id='prof_ping_5' type='result'/>"
|
|
|
|
);
|
|
|
|
|
|
|
|
prof_input("/ping buddy1@localhost/mobile");
|
|
|
|
|
|
|
|
assert_true(stbbr_received(
|
|
|
|
"<iq id='prof_ping_5' type='get' to='buddy1@localhost/mobile'>"
|
|
|
|
"<ping xmlns='urn:xmpp:ping'/>"
|
|
|
|
"</iq>"
|
|
|
|
));
|
|
|
|
assert_true(prof_output_exact("Ping response from buddy1@localhost/mobile"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ping_jid_not_supported(void **state)
|
|
|
|
{
|
|
|
|
stbbr_for_id("prof_caps_4",
|
|
|
|
"<iq id='prof_caps_4' to='stabber@localhost/profanity' type='result' from='buddy1@localhost/mobile'>"
|
2019-05-03 04:46:41 -04:00
|
|
|
"<query xmlns='http://jabber.org/protocol/disco#info' node='http://profanity-im.github.io#LpT2xs3nun7jC2sq4gg3WRDQFZ4='>"
|
2017-06-15 19:59:21 -04:00
|
|
|
"<identity category='client' type='console' name='Profanity0.6.0'/>"
|
|
|
|
"<feature var='http://jabber.org/protocol/disco#info'/>"
|
|
|
|
"<feature var='http://jabber.org/protocol/caps'/>"
|
|
|
|
"</query>"
|
|
|
|
"</iq>"
|
|
|
|
);
|
|
|
|
|
|
|
|
prof_connect();
|
|
|
|
|
|
|
|
stbbr_send(
|
|
|
|
"<presence to='stabber@localhost' from='buddy1@localhost/mobile'>"
|
|
|
|
"<priority>10</priority>"
|
|
|
|
"<status>I'm here</status>"
|
|
|
|
"<c "
|
|
|
|
"hash='sha-1' "
|
|
|
|
"xmlns='http://jabber.org/protocol/caps' "
|
2019-05-03 04:46:41 -04:00
|
|
|
"node='http://profanity-im.github.io' "
|
2017-06-15 19:59:21 -04:00
|
|
|
"ver='LpT2xs3nun7jC2sq4gg3WRDQFZ4='"
|
|
|
|
"/>"
|
|
|
|
"</presence>"
|
|
|
|
);
|
|
|
|
assert_true(prof_output_exact("Buddy1 (mobile) is online, \"I'm here\""));
|
|
|
|
|
|
|
|
assert_true(stbbr_received(
|
|
|
|
"<iq id='prof_caps_4' to='buddy1@localhost/mobile' type='get'>"
|
2019-05-03 04:46:41 -04:00
|
|
|
"<query xmlns='http://jabber.org/protocol/disco#info' node='http://profanity-im.github.io#LpT2xs3nun7jC2sq4gg3WRDQFZ4='/>"
|
2017-06-15 19:59:21 -04:00
|
|
|
"</iq>"
|
|
|
|
));
|
|
|
|
|
|
|
|
prof_input("/ping buddy1@localhost/mobile");
|
|
|
|
assert_true(prof_output_exact("buddy1@localhost/mobile does not support ping requests."));
|
|
|
|
}
|