1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-11 18:54:16 -04:00
profanity/tests/test_cmd_rooms.c

96 lines
2.1 KiB
C
Raw Normal View History

2013-12-14 11:17:53 -05:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
2013-12-14 12:15:43 -05:00
#include <glib.h>
2013-12-14 11:17:53 -05:00
#include "xmpp/xmpp.h"
2013-12-18 18:06:43 -05:00
#include "xmpp/mock_xmpp.h"
2013-12-14 11:17:53 -05:00
#include "ui/ui.h"
2013-12-19 16:05:39 -05:00
#include "ui/mock_ui.h"
2013-12-18 18:06:43 -05:00
2013-12-26 08:37:22 -05:00
#include "config/accounts.h"
#include "config/mock_accounts.h"
#include "command/commands.h"
2013-12-14 11:17:53 -05:00
static void test_with_connection_status(jabber_conn_status_t status)
2013-12-14 11:17:53 -05:00
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-14 12:15:43 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
mock_connection_status(status);
2013-12-19 16:05:39 -05:00
expect_cons_show("You are not currently connected.");
gboolean result = cmd_rooms(NULL, *help);
assert_true(result);
free(help);
}
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_shows_message_when_started(void **state)
{
test_with_connection_status(JABBER_STARTED);
}
void cmd_rooms_shows_message_when_undefined(void **state)
{
test_with_connection_status(JABBER_UNDEFINED);
}
void cmd_rooms_uses_account_default_when_no_arg(void **state)
{
2013-12-26 08:37:22 -05:00
mock_accounts_get_account();
CommandHelp *help = malloc(sizeof(CommandHelp));
ProfAccount *account = malloc(sizeof(ProfAccount));
account->muc_service = "default_conf_server";
gchar *args[] = { NULL };
mock_connection_status(JABBER_CONNECTED);
mock_connection_account_name("account_name");
2013-12-26 08:37:22 -05:00
accounts_get_account_return(account);
expect_room_list_request("default_conf_server");
gboolean result = cmd_rooms(args, *help);
2013-12-14 11:17:53 -05:00
2013-12-14 12:15:43 -05:00
assert_true(result);
2013-12-14 11:17:53 -05:00
free(help);
free(account);
2013-12-14 11:17:53 -05:00
}
2013-12-15 13:08:26 -05:00
void cmd_rooms_arg_used_when_passed(void **state)
{
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "conf_server_arg" };
mock_connection_status(JABBER_CONNECTED);
expect_room_list_request("conf_server_arg");
gboolean result = cmd_rooms(args, *help);
assert_true(result);
free(help);
}