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-15 18:07:53 -05:00
|
|
|
#include "ui/ui.h"
|
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)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { NULL };
|
|
|
|
|
|
|
|
will_return(jabber_get_connection_status, JABBER_DISCONNECTED);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_shows_account_when_connected_and_no_args(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
ProfAccount *account = malloc(sizeof(ProfAccount));
|
|
|
|
gchar *args[] = { NULL };
|
|
|
|
|
|
|
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
2013-12-15 18:07:53 -05:00
|
|
|
|
2013-12-15 17:28:22 -05:00
|
|
|
will_return(jabber_get_account_name, "account_name");
|
|
|
|
|
2013-12-15 19:18:38 -05:00
|
|
|
expect_any(accounts_get_account, name);
|
2013-12-15 17:28:22 -05:00
|
|
|
will_return(accounts_get_account, account);
|
|
|
|
|
|
|
|
expect_memory(cons_show_account, account, account, sizeof(ProfAccount));
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
2013-12-15 18:17:35 -05:00
|
|
|
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_memory(cons_show_account_list, accounts, accounts, sizeof(accounts));
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
2013-12-15 17:28:22 -05:00
|
|
|
free(help);
|
|
|
|
}
|
2013-12-15 18:17:35 -05:00
|
|
|
|
|
|
|
void cmd_account_show_shows_usage_when_no_arg(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { "show", NULL };
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
2013-12-15 18:26:02 -05:00
|
|
|
|
2013-12-15 18:17:35 -05:00
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
2013-12-15 18:22:22 -05:00
|
|
|
|
|
|
|
void cmd_account_show_shows_message_when_account_does_not_exist(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
2013-12-15 18:36:20 -05:00
|
|
|
gchar *args[] = { "show", "account_name", NULL };
|
2013-12-15 18:22:22 -05:00
|
|
|
|
2013-12-15 19:18:38 -05:00
|
|
|
expect_any(accounts_get_account, name);
|
2013-12-15 18:22:22 -05:00
|
|
|
will_return(accounts_get_account, NULL);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "No such account.");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
2013-12-15 18:26:02 -05:00
|
|
|
|
|
|
|
void cmd_account_show_shows_message_when_account_exists(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
2013-12-15 18:36:20 -05:00
|
|
|
gchar *args[] = { "show", "account_name", NULL };
|
2013-12-15 18:26:02 -05:00
|
|
|
ProfAccount *account = malloc(sizeof(ProfAccount));
|
|
|
|
|
2013-12-15 19:18:38 -05:00
|
|
|
expect_any(accounts_get_account, name);
|
2013-12-15 18:26:02 -05:00
|
|
|
will_return(accounts_get_account, account);
|
|
|
|
|
|
|
|
expect_memory(cons_show_account, account, account, sizeof(ProfAccount));
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { "add", NULL };
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
2013-12-15 18:36:20 -05:00
|
|
|
|
|
|
|
void cmd_account_add_adds_account(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
gchar *args[] = { "add", "new_account", NULL };
|
|
|
|
|
|
|
|
expect_string(accounts_add, jid, "new_account");
|
|
|
|
|
|
|
|
expect_any_count(cons_show, output, 2);
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
2013-12-15 18:39:04 -05:00
|
|
|
|
|
|
|
void cmd_account_add_shows_message(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
gchar *args[] = { "add", "new_account", NULL };
|
|
|
|
|
|
|
|
expect_any(accounts_add, jid);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Account created.");;
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { "enable", NULL };
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_enable_enables_account(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_any_count(cons_show, output, 2);
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_enable_shows_message_when_enabled(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Account enabled.");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_enable_shows_message_when_account_doesnt_exist(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "No such account: account_name");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { "disable", NULL };
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_disable_disables_account(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_any_count(cons_show, output, 2);
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_disable_shows_message_when_disabled(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Account disabled.");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_disable_shows_message_when_account_doesnt_exist(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "No such account: account_name");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { "rename", NULL };
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_rename_shows_usage_when_one_arg(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
help->usage = "some usage";
|
|
|
|
gchar *args[] = { "rename", "original_name", NULL };
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Usage: some usage");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_rename_renames_account(void **state)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
expect_any_count(cons_show, output, 2);
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_rename_shows_message_when_renamed(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
gchar *args[] = { "rename", "original_name", "new_name", NULL };
|
|
|
|
|
2013-12-15 19:18:38 -05:00
|
|
|
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);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Account renamed.");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmd_account_rename_shows_message_when_not_renamed(void **state)
|
|
|
|
{
|
|
|
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
|
|
|
gchar *args[] = { "rename", "original_name", "new_name", NULL };
|
|
|
|
|
2013-12-15 19:18:38 -05:00
|
|
|
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);
|
|
|
|
|
|
|
|
expect_string(cons_show, output, "Either account original_name doesn't exist, or account new_name already exists.");
|
|
|
|
expect_string(cons_show, output, "");
|
|
|
|
|
|
|
|
gboolean result = cmd_account(args, *help);
|
|
|
|
assert_true(result);
|
|
|
|
|
|
|
|
free(help);
|
|
|
|
}
|