2013-12-18 18:06:43 -05:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
2013-12-14 11:17:53 -05:00
|
|
|
#include <setjmp.h>
|
|
|
|
#include <cmocka.h>
|
2013-12-18 18:06:43 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
2013-12-14 11:17:53 -05:00
|
|
|
|
|
|
|
#include "xmpp/xmpp.h"
|
|
|
|
|
2013-12-18 18:06:43 -05:00
|
|
|
static jabber_conn_status_t
|
|
|
|
_mock_jabber_get_connection_status(void)
|
2013-12-14 11:17:53 -05:00
|
|
|
{
|
2013-12-18 18:06:43 -05:00
|
|
|
return (jabber_conn_status_t)mock();
|
2013-12-14 11:17:53 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 18:06:43 -05:00
|
|
|
static char *
|
|
|
|
_mock_jabber_get_account_name(void)
|
2013-12-14 11:17:53 -05:00
|
|
|
{
|
2013-12-18 18:06:43 -05:00
|
|
|
return (char *)mock();
|
2013-12-14 11:17:53 -05:00
|
|
|
}
|
|
|
|
|
2013-12-18 18:06:43 -05:00
|
|
|
static void
|
|
|
|
_mock_iq_room_list_request(gchar *conf_server)
|
2013-12-14 11:17:53 -05:00
|
|
|
{
|
2013-12-18 18:06:43 -05:00
|
|
|
check_expected(conf_server);
|
2013-12-14 11:17:53 -05:00
|
|
|
}
|
2013-12-18 17:49:43 -05:00
|
|
|
|
2013-12-26 09:48:25 -05:00
|
|
|
static jabber_conn_status_t
|
|
|
|
_mock_jabber_connect_with_details(const char * const jid,
|
2014-01-18 15:34:46 -05:00
|
|
|
const char * const passwd, const char * const altdomain, const int port)
|
2013-12-26 09:48:25 -05:00
|
|
|
{
|
|
|
|
check_expected(jid);
|
|
|
|
check_expected(passwd);
|
|
|
|
check_expected(altdomain);
|
2014-01-18 15:34:46 -05:00
|
|
|
check_expected(port);
|
2013-12-26 09:48:25 -05:00
|
|
|
return (jabber_conn_status_t)mock();
|
|
|
|
}
|
|
|
|
|
|
|
|
static jabber_conn_status_t
|
|
|
|
_mock_jabber_connect_with_account(const ProfAccount * const account)
|
|
|
|
{
|
|
|
|
check_expected(account);
|
|
|
|
return (jabber_conn_status_t)mock();
|
|
|
|
}
|
|
|
|
|
2013-12-27 09:17:24 -05:00
|
|
|
static char *
|
|
|
|
_mock_jabber_get_presence_message(void)
|
|
|
|
{
|
|
|
|
return (char *)mock();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_mock_presence_update(resource_presence_t status, const char * const msg, int idle)
|
|
|
|
{
|
|
|
|
check_expected(status);
|
|
|
|
check_expected(msg);
|
|
|
|
check_expected(idle);
|
|
|
|
}
|
|
|
|
|
2014-02-01 16:18:15 -05:00
|
|
|
static const GList *
|
|
|
|
_mock_bookmark_get_list(void)
|
|
|
|
{
|
|
|
|
return (GList *)mock();
|
|
|
|
}
|
|
|
|
|
2014-02-01 18:48:24 -05:00
|
|
|
static void
|
|
|
|
_mock_bookmark_add(const char *jid, const char *nick, gboolean autojoin)
|
|
|
|
{
|
|
|
|
check_expected(jid);
|
|
|
|
check_expected(nick);
|
|
|
|
check_expected(autojoin);
|
|
|
|
}
|
|
|
|
|
2013-12-26 09:48:25 -05:00
|
|
|
void
|
|
|
|
mock_jabber_connect_with_details(void)
|
|
|
|
{
|
|
|
|
jabber_connect_with_details = _mock_jabber_connect_with_details;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mock_jabber_connect_with_account(void)
|
|
|
|
{
|
|
|
|
jabber_connect_with_account = _mock_jabber_connect_with_account;
|
|
|
|
}
|
|
|
|
|
2013-12-27 09:17:24 -05:00
|
|
|
void
|
|
|
|
mock_presence_update(void)
|
|
|
|
{
|
|
|
|
presence_update = _mock_presence_update;
|
|
|
|
}
|
|
|
|
|
2013-12-18 18:06:43 -05:00
|
|
|
void
|
|
|
|
mock_connection_status(jabber_conn_status_t status)
|
2013-12-14 11:17:53 -05:00
|
|
|
{
|
2013-12-18 18:06:43 -05:00
|
|
|
jabber_get_connection_status = _mock_jabber_get_connection_status;
|
|
|
|
will_return(_mock_jabber_get_connection_status, status);
|
2013-12-14 11:17:53 -05:00
|
|
|
}
|
2013-12-14 13:43:19 -05:00
|
|
|
|
2014-02-01 18:48:24 -05:00
|
|
|
void
|
|
|
|
mock_bookmark_add(void)
|
|
|
|
{
|
|
|
|
bookmark_add = _mock_bookmark_add;
|
|
|
|
}
|
|
|
|
|
2014-02-01 16:18:15 -05:00
|
|
|
void
|
|
|
|
bookmark_get_list_returns(GList *bookmarks)
|
|
|
|
{
|
|
|
|
bookmark_get_list = _mock_bookmark_get_list;
|
|
|
|
will_return(_mock_bookmark_get_list, bookmarks);
|
|
|
|
}
|
|
|
|
|
2013-12-18 18:06:43 -05:00
|
|
|
void
|
|
|
|
mock_connection_account_name(char *name)
|
2013-12-14 11:17:53 -05:00
|
|
|
{
|
2013-12-18 18:06:43 -05:00
|
|
|
jabber_get_account_name = _mock_jabber_get_account_name;
|
|
|
|
will_return(_mock_jabber_get_account_name, name);
|
2013-12-14 11:17:53 -05:00
|
|
|
}
|
|
|
|
|
2013-12-27 09:17:24 -05:00
|
|
|
void
|
|
|
|
mock_connection_presence_message(char *message)
|
|
|
|
{
|
|
|
|
jabber_get_presence_message = _mock_jabber_get_presence_message;
|
|
|
|
will_return(_mock_jabber_get_presence_message, message);
|
|
|
|
}
|
|
|
|
|
2013-12-18 18:06:43 -05:00
|
|
|
void
|
|
|
|
expect_room_list_request(char *conf_server)
|
2013-12-14 11:17:53 -05:00
|
|
|
{
|
2013-12-18 18:06:43 -05:00
|
|
|
iq_room_list_request = _mock_iq_room_list_request;
|
|
|
|
expect_string(_mock_iq_room_list_request, conf_server, conf_server);
|
2013-12-14 11:17:53 -05:00
|
|
|
}
|
2013-12-26 09:48:25 -05:00
|
|
|
|
|
|
|
void
|
2014-01-18 17:02:51 -05:00
|
|
|
jabber_connect_with_details_expect_and_return(char *jid,
|
|
|
|
char *password, char *altdomain, int port, jabber_conn_status_t result)
|
2013-12-26 09:48:25 -05:00
|
|
|
{
|
|
|
|
expect_string(_mock_jabber_connect_with_details, jid, jid);
|
|
|
|
expect_string(_mock_jabber_connect_with_details, passwd, password);
|
2014-01-18 17:02:51 -05:00
|
|
|
if (altdomain == NULL) {
|
|
|
|
expect_any(_mock_jabber_connect_with_details, altdomain);
|
|
|
|
} else {
|
|
|
|
expect_string(_mock_jabber_connect_with_details, altdomain, altdomain);
|
|
|
|
}
|
|
|
|
expect_value(_mock_jabber_connect_with_details, port, port);
|
2013-12-26 09:48:25 -05:00
|
|
|
will_return(_mock_jabber_connect_with_details, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
jabber_connect_with_details_return(jabber_conn_status_t result)
|
|
|
|
{
|
|
|
|
expect_any(_mock_jabber_connect_with_details, jid);
|
|
|
|
expect_any(_mock_jabber_connect_with_details, passwd);
|
|
|
|
expect_any(_mock_jabber_connect_with_details, altdomain);
|
2014-01-18 15:49:40 -05:00
|
|
|
expect_any(_mock_jabber_connect_with_details, port);
|
2013-12-26 09:48:25 -05:00
|
|
|
will_return(_mock_jabber_connect_with_details, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
jabber_connect_with_account_expect_and_return(ProfAccount *account,
|
|
|
|
jabber_conn_status_t result)
|
|
|
|
{
|
|
|
|
expect_memory(_mock_jabber_connect_with_account, account, account, sizeof(ProfAccount));
|
|
|
|
will_return(_mock_jabber_connect_with_account, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
jabber_connect_with_account_return(ProfAccount *account,
|
|
|
|
jabber_conn_status_t result)
|
|
|
|
{
|
|
|
|
expect_any(_mock_jabber_connect_with_account, account);
|
|
|
|
will_return(_mock_jabber_connect_with_account, result);
|
|
|
|
}
|
2013-12-27 09:17:24 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
presence_update_expect(resource_presence_t presence, char *msg, int idle)
|
|
|
|
{
|
|
|
|
expect_value(_mock_presence_update, status, presence);
|
|
|
|
expect_string(_mock_presence_update, msg, msg);
|
|
|
|
expect_value(_mock_presence_update, idle, idle);
|
|
|
|
}
|
2014-02-01 18:48:24 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
expect_bookmark_add(char *expected_jid, char *expected_nick, gboolean expected_autojoin)
|
|
|
|
{
|
|
|
|
expect_string(_mock_bookmark_add, jid, expected_jid);
|
|
|
|
if (expected_nick != NULL) {
|
|
|
|
expect_string(_mock_bookmark_add, nick, expected_nick);
|
|
|
|
} else {
|
|
|
|
expect_any(_mock_bookmark_add, nick);
|
|
|
|
}
|
|
|
|
expect_value(_mock_bookmark_add, autojoin, expected_autojoin);
|
|
|
|
}
|