2014-12-23 16:42:01 -05:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <cmocka.h>
|
2014-12-23 14:26:45 -05:00
|
|
|
|
2014-12-23 16:42:01 -05:00
|
|
|
#include "xmpp/xmpp.h"
|
2014-12-23 14:26:45 -05:00
|
|
|
|
|
|
|
// connection functions
|
|
|
|
void jabber_init(const int disable_tls) {}
|
|
|
|
|
|
|
|
jabber_conn_status_t jabber_connect_with_details(const char * const jid,
|
|
|
|
const char * const passwd, const char * const altdomain, const int port)
|
|
|
|
{
|
2014-12-24 16:34:11 -05:00
|
|
|
check_expected(jid);
|
|
|
|
check_expected(passwd);
|
|
|
|
check_expected(altdomain);
|
|
|
|
check_expected(port);
|
|
|
|
return (jabber_conn_status_t)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
jabber_conn_status_t jabber_connect_with_account(const ProfAccount * const account)
|
|
|
|
{
|
2014-12-24 16:34:11 -05:00
|
|
|
check_expected(account);
|
|
|
|
return (jabber_conn_status_t)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void jabber_disconnect(void) {}
|
|
|
|
void jabber_shutdown(void) {}
|
2015-05-17 17:05:43 -04:00
|
|
|
void jabber_process_events(int millis) {}
|
2014-12-23 14:26:45 -05:00
|
|
|
const char * jabber_get_fulljid(void)
|
|
|
|
{
|
2015-01-09 20:06:52 -05:00
|
|
|
return (char *)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const char * jabber_get_domain(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jabber_conn_status_t jabber_get_connection_status(void)
|
|
|
|
{
|
2014-12-23 16:42:01 -05:00
|
|
|
return (jabber_conn_status_t)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
char* jabber_get_presence_message(void)
|
|
|
|
{
|
2014-12-24 12:35:02 -05:00
|
|
|
return (char*)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
char* jabber_get_account_name(void)
|
|
|
|
{
|
2014-12-23 16:42:01 -05:00
|
|
|
return (char*)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
GList * jabber_get_available_resources(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// message functions
|
2015-03-11 19:47:11 -04:00
|
|
|
char* message_send_chat(const char * const barejid, const char * const msg)
|
2014-12-24 18:32:32 -05:00
|
|
|
{
|
|
|
|
check_expected(barejid);
|
|
|
|
check_expected(msg);
|
2015-03-11 19:47:11 -04:00
|
|
|
return NULL;
|
2014-12-24 18:32:32 -05:00
|
|
|
}
|
|
|
|
|
2015-03-11 19:47:11 -04:00
|
|
|
char* message_send_chat_encrypted(const char * const barejid, const char * const msg)
|
2015-03-10 17:16:34 -04:00
|
|
|
{
|
|
|
|
check_expected(barejid);
|
|
|
|
check_expected(msg);
|
2015-03-11 19:47:11 -04:00
|
|
|
return NULL;
|
2015-03-10 17:16:34 -04:00
|
|
|
}
|
|
|
|
|
2014-12-23 14:26:45 -05:00
|
|
|
void message_send_private(const char * const fulljid, const char * const msg) {}
|
|
|
|
void message_send_groupchat(const char * const roomjid, const char * const msg) {}
|
|
|
|
void message_send_groupchat_subject(const char * const roomjid, const char * const subject) {}
|
|
|
|
|
|
|
|
void message_send_inactive(const char * const barejid) {}
|
|
|
|
void message_send_composing(const char * const barejid) {}
|
|
|
|
void message_send_paused(const char * const barejid) {}
|
|
|
|
void message_send_gone(const char * const barejid) {}
|
|
|
|
|
|
|
|
void message_send_invite(const char * const room, const char * const contact,
|
|
|
|
const char * const reason) {}
|
|
|
|
|
|
|
|
// presence functions
|
|
|
|
void presence_subscription(const char * const jid, const jabber_subscr_t action) {}
|
|
|
|
|
|
|
|
GSList* presence_get_subscription_requests(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint presence_sub_request_count(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void presence_reset_sub_request_search(void) {}
|
|
|
|
|
2015-01-16 17:50:40 -05:00
|
|
|
char * presence_sub_request_find(const char * const search_str)
|
2014-12-23 14:26:45 -05:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-12-24 17:36:48 -05:00
|
|
|
void presence_join_room(char *room, char *nick, char * passwd)
|
|
|
|
{
|
|
|
|
check_expected(room);
|
|
|
|
check_expected(nick);
|
|
|
|
check_expected(passwd);
|
|
|
|
}
|
|
|
|
|
2014-12-23 14:26:45 -05:00
|
|
|
void presence_change_room_nick(const char * const room, const char * const nick) {}
|
|
|
|
void presence_leave_chat_room(const char * const room_jid) {}
|
2014-12-24 12:35:02 -05:00
|
|
|
|
2015-05-07 19:07:21 -04:00
|
|
|
void presence_send(resource_presence_t status, const char * const msg, int idle, char *signed_status)
|
2014-12-24 12:35:02 -05:00
|
|
|
{
|
|
|
|
check_expected(status);
|
|
|
|
check_expected(msg);
|
|
|
|
check_expected(idle);
|
2015-05-07 19:07:21 -04:00
|
|
|
check_expected(signed_status);
|
2014-12-24 12:35:02 -05:00
|
|
|
}
|
2014-12-23 14:26:45 -05:00
|
|
|
|
|
|
|
gboolean presence_sub_request_exists(const char * const bare_jid)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// iq functions
|
2015-02-02 05:10:05 -05:00
|
|
|
void iq_disable_carbons() {};
|
|
|
|
void iq_enable_carbons() {};
|
2014-12-23 14:26:45 -05:00
|
|
|
void iq_send_software_version(const char * const fulljid) {}
|
2014-12-24 18:38:23 -05:00
|
|
|
|
|
|
|
void iq_room_list_request(gchar *conferencejid)
|
|
|
|
{
|
|
|
|
check_expected(conferencejid);
|
|
|
|
}
|
|
|
|
|
2014-12-23 14:26:45 -05:00
|
|
|
void iq_disco_info_request(gchar *jid) {}
|
|
|
|
void iq_disco_items_request(gchar *jid) {}
|
|
|
|
void iq_set_autoping(int seconds) {}
|
|
|
|
void iq_confirm_instant_room(const char * const room_jid) {}
|
|
|
|
void iq_destroy_room(const char * const room_jid) {}
|
|
|
|
void iq_request_room_config_form(const char * const room_jid) {}
|
|
|
|
void iq_submit_room_config(const char * const room, DataForm *form) {}
|
|
|
|
void iq_room_config_cancel(const char * const room_jid) {}
|
|
|
|
void iq_send_ping(const char * const target) {}
|
|
|
|
void iq_send_caps_request(const char * const to, const char * const id,
|
|
|
|
const char * const node, const char * const ver) {}
|
|
|
|
void iq_send_caps_request_for_jid(const char * const to, const char * const id,
|
|
|
|
const char * const node, const char * const ver) {}
|
|
|
|
void iq_send_caps_request_legacy(const char * const to, const char * const id,
|
|
|
|
const char * const node, const char * const ver) {}
|
2015-03-28 20:55:33 -04:00
|
|
|
void iq_room_info_request(const char * const room, gboolean display) {}
|
2014-12-23 14:26:45 -05:00
|
|
|
void iq_room_affiliation_list(const char * const room, char *affiliation) {}
|
|
|
|
void iq_room_affiliation_set(const char * const room, const char * const jid, char *affiliation,
|
|
|
|
const char * const reason) {}
|
|
|
|
void iq_room_kick_occupant(const char * const room, const char * const nick, const char * const reason) {}
|
|
|
|
void iq_room_role_set(const char * const room, const char * const nick, char *role,
|
|
|
|
const char * const reason) {}
|
|
|
|
void iq_room_role_list(const char * const room, char *role) {}
|
|
|
|
|
|
|
|
// caps functions
|
|
|
|
Capabilities* caps_lookup(const char * const jid)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void caps_close(void) {}
|
|
|
|
void caps_destroy(Capabilities *caps) {}
|
|
|
|
|
|
|
|
gboolean bookmark_add(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
|
|
|
{
|
2014-12-24 15:41:28 -05:00
|
|
|
check_expected(jid);
|
|
|
|
check_expected(nick);
|
|
|
|
check_expected(password);
|
|
|
|
check_expected(autojoin_str);
|
|
|
|
return (gboolean)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean bookmark_update(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean bookmark_remove(const char *jid)
|
|
|
|
{
|
2014-12-24 15:41:28 -05:00
|
|
|
check_expected(jid);
|
|
|
|
return (gboolean)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean bookmark_join(const char *jid)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GList * bookmark_get_list(void)
|
|
|
|
{
|
2014-12-24 15:41:28 -05:00
|
|
|
return (GList *)mock();
|
2014-12-23 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
2015-01-16 17:50:40 -05:00
|
|
|
char * bookmark_find(const char * const search_str)
|
2014-12-23 14:26:45 -05:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bookmark_autocomplete_reset(void) {}
|
|
|
|
|
2014-12-24 18:59:26 -05:00
|
|
|
void roster_send_name_change(const char * const barejid, const char * const new_name, GSList *groups)
|
|
|
|
{
|
|
|
|
check_expected(barejid);
|
|
|
|
check_expected(new_name);
|
|
|
|
check_expected(groups);
|
|
|
|
}
|
|
|
|
|
2014-12-23 14:26:45 -05:00
|
|
|
void roster_send_add_to_group(const char * const group, PContact contact) {}
|
|
|
|
void roster_send_remove_from_group(const char * const group, PContact contact) {}
|
2014-12-24 18:59:26 -05:00
|
|
|
|
|
|
|
void roster_send_add_new(const char * const barejid, const char * const name)
|
|
|
|
{
|
|
|
|
check_expected(barejid);
|
|
|
|
check_expected(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void roster_send_remove(const char * const barejid)
|
|
|
|
{
|
|
|
|
check_expected(barejid);
|
2015-01-04 18:40:10 -05:00
|
|
|
}
|