1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/tests/unittests/test_cmd_rooms.c

110 lines
3.1 KiB
C
Raw Normal View History

2013-12-14 16:17:53 +00:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
2013-12-14 16:17:53 +00:00
#include <stdlib.h>
2014-11-01 01:48:36 +00:00
#include <string.h>
#include <glib.h>
2013-12-14 16:17:53 +00:00
#include "xmpp/xmpp.h"
2013-12-18 23:06:43 +00:00
#include "ui/ui.h"
#include "ui/stub_ui.h"
2013-12-18 23:06:43 +00:00
#include "config/accounts.h"
#include "command/cmd_funcs.h"
2013-12-14 16:17:53 +00:00
2015-07-26 23:04:48 +00:00
#define CMD_ROOMS "/rooms"
2020-07-07 12:18:57 +00:00
static void
test_with_connection_status(jabber_conn_status_t status)
2013-12-14 16:17:53 +00:00
{
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, status);
2014-12-24 23:38:23 +00:00
2013-12-19 21:05:39 +00:00
expect_cons_show("You are not currently connected.");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_rooms(NULL, CMD_ROOMS, NULL);
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_rooms_shows_message_when_disconnected(void** state)
{
test_with_connection_status(JABBER_DISCONNECTED);
}
2020-07-07 12:18:57 +00:00
void
cmd_rooms_shows_message_when_disconnecting(void** state)
{
test_with_connection_status(JABBER_DISCONNECTING);
}
2020-07-07 12:18:57 +00:00
void
cmd_rooms_shows_message_when_connecting(void** state)
{
test_with_connection_status(JABBER_CONNECTING);
}
2020-07-07 12:18:57 +00:00
void
cmd_rooms_uses_account_default_when_no_arg(void** state)
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { NULL };
2015-10-18 23:57:01 +00:00
2020-07-07 12:18:57 +00:00
ProfAccount* account = account_new("testaccount", NULL, NULL, NULL, TRUE, NULL, 0, NULL, NULL, NULL,
0, 0, 0, 0, 0, "default_conf_server", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2016-05-05 23:53:03 +00:00
will_return(session_get_account_name, "account_name");
2014-12-24 23:38:23 +00:00
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");
2014-12-24 23:38:23 +00:00
expect_string(iq_room_list_request, conferencejid, "default_conf_server");
2018-01-27 23:51:03 +00:00
expect_any(iq_room_list_request, filter);
2015-07-26 23:04:48 +00:00
gboolean result = cmd_rooms(NULL, CMD_ROOMS, args);
2013-12-14 17:15:43 +00:00
assert_true(result);
2013-12-14 16:17:53 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_rooms_service_arg_used_when_passed(void** state)
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "service", "conf_server_arg", NULL };
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
expect_cons_show("");
expect_cons_show("Room list request sent: conf_server_arg");
2014-12-24 23:38:23 +00:00
expect_string(iq_room_list_request, conferencejid, "conf_server_arg");
2018-01-27 23:51:03 +00:00
expect_any(iq_room_list_request, filter);
gboolean result = cmd_rooms(NULL, CMD_ROOMS, args);
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_rooms_filter_arg_used_when_passed(void** state)
2018-01-27 23:51:03 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "filter", "text", NULL };
2020-07-07 12:18:57 +00:00
ProfAccount* account = account_new("testaccount", NULL, NULL, NULL, TRUE, NULL, 0, NULL, NULL, NULL,
0, 0, 0, 0, 0, "default_conf_server", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2018-01-27 23:51:03 +00:00
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'");
2018-01-27 23:51:03 +00:00
expect_any(iq_room_list_request, conferencejid);
expect_string(iq_room_list_request, filter, "text");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_rooms(NULL, CMD_ROOMS, args);
assert_true(result);
}