1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 17:55:24 -04:00
profanity/tests/test_cmd_account.c

973 lines
26 KiB
C
Raw Normal View History

2013-12-15 17:28:22 -05:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include "xmpp/xmpp.h"
2013-12-18 18:06:43 -05:00
#include "xmpp/mock_xmpp.h"
2013-12-15 18:07: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-15 17:28:22 -05:00
#include "command/commands.h"
void cmd_account_shows_usage_when_not_connected_and_no_args(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 17:28:22 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { NULL };
mock_connection_status(JABBER_DISCONNECTED);
2013-12-15 17:28:22 -05:00
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
2013-12-15 17:28:22 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_shows_account_when_connected_and_no_args(void **state)
{
mock_cons_show_account();
2013-12-15 17:28:22 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
ProfAccount *account = malloc(sizeof(ProfAccount));
gchar *args[] = { NULL };
mock_connection_status(JABBER_CONNECTED);
mock_connection_account_name("account_name");
2013-12-15 17:28:22 -05:00
expect_any(accounts_get_account, name);
2013-12-15 17:28:22 -05:00
will_return(accounts_get_account, account);
expect_cons_show_account(account);
2013-12-15 17:28:22 -05:00
expect_any(accounts_free_account, account);
gboolean result = cmd_account(args, *help);
assert_true(result);
2013-12-15 18:07:53 -05:00
free(help);
free(account);
}
void cmd_account_list_shows_accounts(void **state)
{
mock_cons_show_account_list();
2013-12-15 18:07:53 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "list", NULL };
2013-12-15 18:07:53 -05:00
gchar **accounts = malloc(sizeof(gchar *) * 4);
accounts[0] = strdup("account1");
accounts[1] = strdup("account2");
accounts[2] = strdup("account3");
accounts[3] = NULL;
will_return(accounts_get_list, accounts);
expect_cons_show_account_list(accounts);
2013-12-15 18:07:53 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
2013-12-15 17:28:22 -05:00
free(help);
}
void cmd_account_show_shows_usage_when_no_arg(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "show", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_show_shows_message_when_account_does_not_exist(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "show", "account_name", NULL };
expect_any(accounts_get_account, name);
will_return(accounts_get_account, NULL);
2013-12-19 16:05:39 -05:00
expect_cons_show("No such account.");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-19 16:05:39 -05:00
void cmd_account_show_shows_account_when_exists(void **state)
{
mock_cons_show_account();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "show", "account_name", NULL };
ProfAccount *account = malloc(sizeof(ProfAccount));
expect_any(accounts_get_account, name);
will_return(accounts_get_account, account);
expect_cons_show_account(account);
expect_any(accounts_free_account, account);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-15 18:30:09 -05:00
void cmd_account_add_shows_usage_when_no_arg(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:30:09 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "add", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
2013-12-15 18:30:09 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_add_adds_account(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "add", "new_account", NULL };
expect_string(accounts_add, jid, "new_account");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_add_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "add", "new_account", NULL };
expect_any(accounts_add, jid);
2013-12-19 16:05:39 -05:00
expect_cons_show("Account created.");;
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-15 18:51:29 -05:00
void cmd_account_enable_shows_usage_when_no_arg(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:51:29 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "enable", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
2013-12-15 18:51:29 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_enable_enables_account(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
2013-12-15 18:51:29 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
2013-12-15 19:12:07 -05:00
gchar *args[] = { "enable", "account_name", NULL };
2013-12-15 18:51:29 -05:00
expect_string(accounts_enable, name, "account_name");
will_return(accounts_enable, TRUE);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_enable_shows_message_when_enabled(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:51:29 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
2013-12-15 19:12:07 -05:00
gchar *args[] = { "enable", "account_name", NULL };
2013-12-15 18:51:29 -05:00
expect_any(accounts_enable, name);
will_return(accounts_enable, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Account enabled.");
expect_cons_show("");
2013-12-15 18:51:29 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_enable_shows_message_when_account_doesnt_exist(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:51:29 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
2013-12-15 19:12:07 -05:00
gchar *args[] = { "enable", "account_name", NULL };
2013-12-15 18:51:29 -05:00
expect_any(accounts_enable, name);
will_return(accounts_enable, FALSE);
2013-12-19 16:05:39 -05:00
expect_cons_show("No such account: account_name");
expect_cons_show("");
2013-12-15 18:51:29 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-15 18:55:59 -05:00
void cmd_account_disable_shows_usage_when_no_arg(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:55:59 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "disable", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
2013-12-15 18:55:59 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_disable_disables_account(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
2013-12-15 18:55:59 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
2013-12-15 19:12:07 -05:00
gchar *args[] = { "disable", "account_name", NULL };
2013-12-15 18:55:59 -05:00
expect_string(accounts_disable, name, "account_name");
will_return(accounts_disable, TRUE);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_disable_shows_message_when_disabled(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:55:59 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
2013-12-15 19:12:07 -05:00
gchar *args[] = { "disable", "account_name", NULL };
2013-12-15 18:55:59 -05:00
expect_any(accounts_disable, name);
will_return(accounts_disable, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Account disabled.");
expect_cons_show("");
2013-12-15 18:55:59 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_disable_shows_message_when_account_doesnt_exist(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 18:55:59 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
2013-12-15 19:12:07 -05:00
gchar *args[] = { "disable", "account_name", NULL };
2013-12-15 18:55:59 -05:00
expect_any(accounts_disable, name);
will_return(accounts_disable, FALSE);
2013-12-19 16:05:39 -05:00
expect_cons_show("No such account: account_name");
expect_cons_show("");
2013-12-15 18:55:59 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-15 19:12:07 -05:00
void cmd_account_rename_shows_usage_when_no_args(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 19:12:07 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "rename", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
2013-12-15 19:12:07 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_rename_shows_usage_when_one_arg(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 19:12:07 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "rename", "original_name", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
2013-12-15 19:12:07 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_rename_renames_account(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
2013-12-15 19:12:07 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "rename", "original_name", "new_name", NULL };
expect_string(accounts_rename, account_name, "original_name");
expect_string(accounts_rename, new_name, "new_name");
will_return(accounts_rename, TRUE);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_rename_shows_message_when_renamed(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 19:12:07 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "rename", "original_name", "new_name", NULL };
expect_any(accounts_rename, account_name);
expect_any(accounts_rename, new_name);
2013-12-15 19:12:07 -05:00
will_return(accounts_rename, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Account renamed.");
expect_cons_show("");
2013-12-15 19:12:07 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_rename_shows_message_when_not_renamed(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-15 19:12:07 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "rename", "original_name", "new_name", NULL };
expect_any(accounts_rename, account_name);
expect_any(accounts_rename, new_name);
2013-12-15 19:12:07 -05:00
will_return(accounts_rename, FALSE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Either account original_name doesn't exist, or account new_name already exists.");
expect_cons_show("");
2013-12-15 19:12:07 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_shows_usage_when_no_args(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "set", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_shows_usage_when_one_arg(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "set", "a_account", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_shows_usage_when_two_args(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
help->usage = "some usage";
gchar *args[] = { "set", "a_account", "a_property", NULL };
2013-12-19 16:05:39 -05:00
expect_cons_show("Usage: some usage");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_checks_account_exists(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "a_property", "a_value", NULL };
expect_string(accounts_account_exists, account_name, "a_account");
will_return(accounts_account_exists, FALSE);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_shows_message_when_account_doesnt_exist(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "a_property", "a_value", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, FALSE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Account a_account doesn't exist");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_jid_shows_message_for_malformed_jid(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "jid", "@malformed", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Malformed jid: @malformed");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_jid_sets_barejid(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "jid", "a_local@a_domain/a_resource", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_jid, account_name, "a_account");
expect_string(accounts_set_jid, value, "a_local@a_domain");
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated jid for account a_account: a_local@a_domain");
expect_any(accounts_set_resource, account_name);
expect_any(accounts_set_resource, value);
2013-12-19 16:05:39 -05:00
expect_cons_show_calls(2);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_jid_sets_resource(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "jid", "a_local@a_domain/a_resource", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_jid, account_name);
expect_any(accounts_set_jid, value);
2013-12-19 16:05:39 -05:00
expect_cons_show_calls(1);
expect_string(accounts_set_resource, account_name, "a_account");
expect_string(accounts_set_resource, value, "a_resource");
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated resource for account a_account: a_resource");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-17 17:33:49 -05:00
void cmd_account_set_server_sets_server(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
2013-12-17 17:33:49 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "server", "a_server", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_server, account_name, "a_account");
expect_string(accounts_set_server, value, "a_server");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_server_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-17 17:33:49 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "server", "a_server", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_server, account_name);
expect_any(accounts_set_server, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated server for account a_account: a_server");
expect_cons_show("");
2013-12-17 17:33:49 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_resource_sets_resource(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "resource", "a_resource", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_resource, account_name, "a_account");
expect_string(accounts_set_resource, value, "a_resource");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_resource_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "resource", "a_resource", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_resource, account_name);
expect_any(accounts_set_resource, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated resource for account a_account: a_resource");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_password_sets_password(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "password", "a_password", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_password, account_name, "a_account");
expect_string(accounts_set_password, value, "a_password");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_password_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "password", "a_password", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_password, account_name);
expect_any(accounts_set_password, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated password for account a_account");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_muc_sets_muc(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "muc", "a_muc", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_muc_service, account_name, "a_account");
expect_string(accounts_set_muc_service, value, "a_muc");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_muc_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "muc", "a_muc", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_muc_service, account_name);
expect_any(accounts_set_muc_service, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated muc service for account a_account: a_muc");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_nick_sets_nick(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "nick", "a_nick", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_muc_nick, account_name, "a_account");
expect_string(accounts_set_muc_nick, value, "a_nick");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_nick_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "nick", "a_nick", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_muc_nick, account_name);
expect_any(accounts_set_muc_nick, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated muc nick for account a_account: a_nick");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
2013-12-17 18:17:02 -05:00
void cmd_account_set_status_shows_message_when_invalid_status(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-17 18:17:02 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "status", "bad_status", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Invalid status: bad_status");
expect_cons_show("");
2013-12-17 18:17:02 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_status_sets_status_when_valid(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
2013-12-17 18:17:02 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "status", "away", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_login_presence, account_name, "a_account");
expect_string(accounts_set_login_presence, value, "away");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_status_sets_status_when_last(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
2013-12-17 18:17:02 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "status", "last", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_login_presence, account_name, "a_account");
expect_string(accounts_set_login_presence, value, "last");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_status_shows_message_when_set_valid(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-17 18:17:02 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "status", "away", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_login_presence, account_name);
expect_any(accounts_set_login_presence, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated login status for account a_account: away");
expect_cons_show("");
2013-12-17 18:17:02 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_status_shows_message_when_set_last(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
2013-12-17 18:17:02 -05:00
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "status", "last", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_any(accounts_set_login_presence, account_name);
expect_any(accounts_set_login_presence, value);
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated login status for account a_account: last");
expect_cons_show("");
2013-12-17 18:17:02 -05:00
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_invalid_presence_string_priority_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "blah", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Invalid property: blah");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_last_priority_shows_message(void **state)
{
2013-12-19 16:05:39 -05:00
mock_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "last", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2013-12-19 16:05:39 -05:00
expect_cons_show("Invalid property: last");
expect_cons_show("");
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_online_priority_sets_preference(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "online", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_priority_online, account_name, "a_account");
expect_value(accounts_set_priority_online, value, 10);
mock_connection_status(JABBER_DISCONNECTED);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_chat_priority_sets_preference(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "chat", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_priority_chat, account_name, "a_account");
expect_value(accounts_set_priority_chat, value, 10);
mock_connection_status(JABBER_DISCONNECTED);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_away_priority_sets_preference(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "away", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_priority_away, account_name, "a_account");
expect_value(accounts_set_priority_away, value, 10);
mock_connection_status(JABBER_DISCONNECTED);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_xa_priority_sets_preference(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "xa", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_priority_xa, account_name, "a_account");
expect_value(accounts_set_priority_xa, value, 10);
mock_connection_status(JABBER_DISCONNECTED);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
void cmd_account_set_dnd_priority_sets_preference(void **state)
{
2013-12-19 16:05:39 -05:00
stub_cons_show();
CommandHelp *help = malloc(sizeof(CommandHelp));
gchar *args[] = { "set", "a_account", "dnd", "10", NULL };
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_set_priority_dnd, account_name, "a_account");
expect_value(accounts_set_priority_dnd, value, 10);
mock_connection_status(JABBER_DISCONNECTED);
gboolean result = cmd_account(args, *help);
assert_true(result);
free(help);
}
// test message shown when set
// test invalid priority low
// test invalid priority high
// test presence updated when connected as account and current presence equals setting