As9f2abc75accidentally got the ordering of some of the includes wrong, I decided to propose my initial solution again. Additional to that, I've opened a MR against CMocka to solve this on their side, since I believe that the current way this is done is not sustainable [0]. [0] https://gitlab.com/cmocka/cmocka/-/merge_requests/91 Fixes:9f2abc75("Fix tests with gcc15 (uintptr_t)") Signed-off-by: Steffen Jaeckel <s@jaeckel.eu> CProof note: our new tests need to also be updated.
107 lines
3.1 KiB
C
107 lines
3.1 KiB
C
#include "prof_cmocka.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <glib.h>
|
|
|
|
#include "xmpp/xmpp.h"
|
|
|
|
#include "ui/ui.h"
|
|
#include "ui/stub_ui.h"
|
|
|
|
#include "config/accounts.h"
|
|
#include "command/cmd_funcs.h"
|
|
|
|
#define CMD_ROOMS "/rooms"
|
|
|
|
static void
|
|
test_with_connection_status(jabber_conn_status_t status)
|
|
{
|
|
will_return(connection_get_status, status);
|
|
|
|
expect_cons_show("You are not currently connected.");
|
|
|
|
gboolean result = cmd_rooms(NULL, CMD_ROOMS, NULL);
|
|
assert_true(result);
|
|
}
|
|
|
|
void
|
|
cmd_rooms_shows_message_when_disconnected(void** state)
|
|
{
|
|
test_with_connection_status(JABBER_DISCONNECTED);
|
|
}
|
|
|
|
void
|
|
cmd_rooms_shows_message_when_disconnecting(void** state)
|
|
{
|
|
test_with_connection_status(JABBER_DISCONNECTING);
|
|
}
|
|
|
|
void
|
|
cmd_rooms_shows_message_when_connecting(void** state)
|
|
{
|
|
test_with_connection_status(JABBER_CONNECTING);
|
|
}
|
|
|
|
void
|
|
cmd_rooms_uses_account_default_when_no_arg(void** state)
|
|
{
|
|
gchar* args[] = { NULL };
|
|
|
|
ProfAccount* account = account_new(g_strdup("testaccount"), NULL, NULL, NULL, TRUE, NULL, 0, NULL, NULL, NULL,
|
|
0, 0, 0, 0, 0, g_strdup("default_conf_server"), NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0);
|
|
|
|
will_return(connection_get_status, JABBER_CONNECTED);
|
|
will_return(session_get_account_name, "account_name");
|
|
expect_any(accounts_get_account, name);
|
|
will_return(accounts_get_account, account);
|
|
|
|
expect_cons_show("");
|
|
expect_cons_show("Room list request sent: default_conf_server");
|
|
|
|
expect_string(iq_room_list_request, conferencejid, "default_conf_server");
|
|
expect_any(iq_room_list_request, filter);
|
|
|
|
gboolean result = cmd_rooms(NULL, CMD_ROOMS, args);
|
|
assert_true(result);
|
|
}
|
|
|
|
void
|
|
cmd_rooms_service_arg_used_when_passed(void** state)
|
|
{
|
|
gchar* args[] = { "service", "conf_server_arg", NULL };
|
|
|
|
will_return(connection_get_status, JABBER_CONNECTED);
|
|
|
|
expect_cons_show("");
|
|
expect_cons_show("Room list request sent: conf_server_arg");
|
|
|
|
expect_string(iq_room_list_request, conferencejid, "conf_server_arg");
|
|
expect_any(iq_room_list_request, filter);
|
|
|
|
gboolean result = cmd_rooms(NULL, CMD_ROOMS, args);
|
|
assert_true(result);
|
|
}
|
|
|
|
void
|
|
cmd_rooms_filter_arg_used_when_passed(void** state)
|
|
{
|
|
gchar* args[] = { "filter", "text", NULL };
|
|
|
|
ProfAccount* account = account_new(g_strdup("testaccount"), NULL, NULL, NULL, TRUE, NULL, 0, NULL, NULL, NULL,
|
|
0, 0, 0, 0, 0, g_strdup("default_conf_server"), NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0);
|
|
|
|
will_return(connection_get_status, JABBER_CONNECTED);
|
|
will_return(session_get_account_name, "account_name");
|
|
expect_any(accounts_get_account, name);
|
|
will_return(accounts_get_account, account);
|
|
|
|
expect_cons_show("");
|
|
expect_cons_show("Room list request sent: default_conf_server, filter: 'text'");
|
|
|
|
expect_any(iq_room_list_request, conferencejid);
|
|
expect_string(iq_room_list_request, filter, "text");
|
|
|
|
gboolean result = cmd_rooms(NULL, CMD_ROOMS, args);
|
|
assert_true(result);
|
|
}
|