1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-01 19:24:15 -04:00
profanity/tests/unittests/test_cmd_account.c

924 lines
27 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>
2013-12-15 17:28:22 -05:00
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2013-12-15 17:28:22 -05:00
#include "xmpp/xmpp.h"
2013-12-18 18:06:43 -05:00
#include "ui/ui.h"
#include "ui/stub_ui.h"
2013-12-18 18:06:43 -05:00
2013-12-26 08:37:22 -05:00
#include "config/accounts.h"
2016-05-22 18:59:52 -04:00
#include "command/cmd_funcs.h"
2013-12-15 17:28:22 -05:00
2015-07-26 19:04:48 -04:00
#define CMD_ACCOUNT "/account"
2020-07-07 08:18:57 -04:00
void
cmd_account_shows_usage_when_not_connected_and_no_args(void** state)
2013-12-15 17:28:22 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { NULL };
2013-12-15 17:28:22 -05:00
2016-05-05 18:51:49 -04:00
will_return(connection_get_status, JABBER_DISCONNECTED);
2013-12-15 17:28:22 -05:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2013-12-15 17:28:22 -05:00
2015-07-26 19:04:48 -04:00
gboolean result = cmd_account(NULL, CMD_ACCOUNT, args);
2013-12-15 17:28:22 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_shows_account_when_connected_and_no_args(void** state)
2013-12-15 17:28:22 -05:00
{
2020-07-07 08:18:57 -04:00
ProfAccount* account = account_new("jabber_org", "me@jabber.org", NULL, NULL,
TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
gchar* args[] = { NULL };
2013-12-15 17:28:22 -05:00
2016-05-05 18:51:49 -04:00
will_return(connection_get_status, JABBER_CONNECTED);
2016-05-05 19:53:03 -04:00
will_return(session_get_account_name, "account_name");
2014-12-24 16:34:11 -05:00
expect_any(accounts_get_account, name);
2014-12-23 16:42:01 -05:00
will_return(accounts_get_account, account);
2013-12-15 17:28:22 -05:00
2014-12-23 16:42:01 -05:00
expect_memory(cons_show_account, account, account, sizeof(ProfAccount));
2013-12-15 17:28:22 -05:00
2015-07-26 19:04:48 -04:00
gboolean result = cmd_account(NULL, CMD_ACCOUNT, args);
2013-12-15 17:28:22 -05:00
assert_true(result);
2013-12-15 18:07:53 -05:00
}
2014-12-24 08:06:32 -05:00
2020-07-07 08:18:57 -04:00
void
cmd_account_list_shows_accounts(void** state)
2013-12-15 18:07:53 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "list", NULL };
2013-12-15 18:07:53 -05:00
2020-07-07 08:18:57 -04:00
gchar** accounts = malloc(sizeof(gchar*) * 4);
2013-12-15 18:07:53 -05:00
accounts[0] = strdup("account1");
accounts[1] = strdup("account2");
accounts[2] = strdup("account3");
accounts[3] = NULL;
2014-12-24 08:06:32 -05:00
will_return(accounts_get_list, accounts);
2013-12-15 18:07:53 -05:00
2014-12-24 08:06:32 -05:00
expect_memory(cons_show_account_list, accounts, accounts, sizeof(accounts));
2013-12-15 18:07:53 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_list(NULL, CMD_ACCOUNT, args);
2013-12-15 18:07:53 -05:00
assert_true(result);
2013-12-15 17:28:22 -05:00
}
2020-07-07 08:18:57 -04:00
void
cmd_account_show_shows_usage_when_no_arg(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "show", NULL };
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_show(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_show_shows_message_when_account_does_not_exist(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "show", "account_name", NULL };
2014-12-24 16:34:11 -05:00
expect_any(accounts_get_account, name);
2014-12-24 08:06:32 -05:00
will_return(accounts_get_account, NULL);
2013-12-19 16:05:39 -05:00
expect_cons_show("No such account.");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_show(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_show_shows_account_when_exists(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "show", "account_name", NULL };
ProfAccount* account = account_new("jabber_org", "me@jabber.org", NULL, NULL,
TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2014-12-24 16:34:11 -05:00
expect_any(accounts_get_account, name);
2014-12-24 08:06:32 -05:00
will_return(accounts_get_account, account);
2014-12-24 08:06:32 -05:00
expect_memory(cons_show_account, account, account, sizeof(account));
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_show(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2013-12-15 18:30:09 -05:00
2020-07-07 08:18:57 -04:00
void
cmd_account_add_shows_usage_when_no_arg(void** state)
2013-12-15 18:30:09 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "add", NULL };
2013-12-15 18:30:09 -05:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2013-12-15 18:30:09 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_add(NULL, CMD_ACCOUNT, args);
2013-12-15 18:30:09 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_add_adds_account(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "add", "new_account", NULL };
2014-12-24 08:06:32 -05:00
expect_string(accounts_add, jid, "new_account");
expect_value(accounts_add, altdomain, NULL);
expect_value(accounts_add, port, 0);
expect_cons_show("Account created.");
2013-12-19 16:05:39 -05:00
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_add(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2013-12-15 18:51:29 -05:00
2020-07-07 08:18:57 -04:00
void
cmd_account_enable_shows_usage_when_no_arg(void** state)
2013-12-15 18:51:29 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "enable", NULL };
2013-12-15 18:51:29 -05:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2013-12-15 18:51:29 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_enable(NULL, CMD_ACCOUNT, args);
2013-12-15 18:51:29 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_enable_enables_account(void** state)
2013-12-15 18:51:29 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "enable", "account_name", NULL };
2013-12-15 18:51:29 -05:00
2014-12-24 08:06:32 -05:00
expect_string(accounts_enable, name, "account_name");
2014-12-24 09:41:33 -05:00
will_return(accounts_enable, TRUE);
2013-12-15 18:51:29 -05:00
2013-12-19 16:05:39 -05:00
expect_cons_show("Account enabled.");
expect_cons_show("");
2013-12-15 18:51:29 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_enable(NULL, CMD_ACCOUNT, args);
2013-12-15 18:51:29 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_enable_shows_message_when_account_doesnt_exist(void** state)
2013-12-15 18:51:29 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "enable", "account_name", NULL };
2013-12-15 18:51:29 -05:00
2014-12-24 09:41:33 -05:00
expect_any(accounts_enable, name);
will_return(accounts_enable, FALSE);
2013-12-15 18:51:29 -05:00
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
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_enable(NULL, CMD_ACCOUNT, args);
2013-12-15 18:51:29 -05:00
assert_true(result);
}
2013-12-15 18:55:59 -05:00
2020-07-07 08:18:57 -04:00
void
cmd_account_disable_shows_usage_when_no_arg(void** state)
2013-12-15 18:55:59 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "disable", NULL };
2013-12-15 18:55:59 -05:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2013-12-15 18:55:59 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_disable(NULL, CMD_ACCOUNT, args);
2013-12-15 18:55:59 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_disable_disables_account(void** state)
2013-12-15 18:55:59 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "disable", "account_name", NULL };
2013-12-15 18:55:59 -05:00
2014-12-24 09:41:33 -05:00
expect_string(accounts_disable, name, "account_name");
will_return(accounts_disable, TRUE);
2013-12-15 18:55:59 -05:00
2013-12-19 16:05:39 -05:00
expect_cons_show("Account disabled.");
expect_cons_show("");
2013-12-15 18:55:59 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_disable(NULL, CMD_ACCOUNT, args);
2013-12-15 18:55:59 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_disable_shows_message_when_account_doesnt_exist(void** state)
2013-12-15 18:55:59 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "disable", "account_name", NULL };
2013-12-15 18:55:59 -05:00
2014-12-24 09:41:33 -05:00
expect_any(accounts_disable, name);
will_return(accounts_disable, FALSE);
2013-12-15 18:55:59 -05:00
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
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_disable(NULL, CMD_ACCOUNT, args);
2013-12-15 18:55:59 -05:00
assert_true(result);
}
2013-12-15 19:12:07 -05:00
2020-07-07 08:18:57 -04:00
void
cmd_account_rename_shows_usage_when_no_args(void** state)
2013-12-15 19:12:07 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "rename", NULL };
2013-12-15 19:12:07 -05:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2013-12-15 19:12:07 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_rename(NULL, CMD_ACCOUNT, args);
2013-12-15 19:12:07 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_rename_shows_usage_when_one_arg(void** state)
2013-12-15 19:12:07 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "rename", "original_name", NULL };
2013-12-15 19:12:07 -05:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2013-12-15 19:12:07 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_rename(NULL, CMD_ACCOUNT, args);
2013-12-15 19:12:07 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_rename_renames_account(void** state)
2013-12-15 19:12:07 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "rename", "original_name", "new_name", NULL };
2013-12-15 19:12:07 -05:00
2014-12-24 12:35:02 -05:00
expect_string(accounts_rename, account_name, "original_name");
expect_string(accounts_rename, new_name, "new_name");
will_return(accounts_rename, TRUE);
2013-12-15 19:12:07 -05:00
2013-12-19 16:05:39 -05:00
expect_cons_show("Account renamed.");
expect_cons_show("");
2013-12-15 19:12:07 -05:00
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_rename(NULL, CMD_ACCOUNT, args);
2013-12-15 19:12:07 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_rename_shows_message_when_not_renamed(void** state)
2013-12-15 19:12:07 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "rename", "original_name", "new_name", NULL };
2013-12-15 19:12:07 -05:00
2014-12-24 12:35:02 -05:00
expect_any(accounts_rename, account_name);
expect_any(accounts_rename, new_name);
will_return(accounts_rename, FALSE);
2013-12-15 19:12:07 -05:00
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
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_rename(NULL, CMD_ACCOUNT, args);
2013-12-15 19:12:07 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_shows_usage_when_no_args(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", NULL };
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_shows_usage_when_one_arg(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", NULL };
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_shows_usage_when_two_args(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "a_property", NULL };
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_shows_message_when_account_doesnt_exist(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "a_property", "a_value", NULL };
2014-12-24 12:35:02 -05:00
expect_string(accounts_account_exists, account_name, "a_account");
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("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_jid_shows_message_for_malformed_jid(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "jid", "@malformed", NULL };
2014-12-24 12:35:02 -05:00
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");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_jid_sets_barejid(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "jid", "a_local@a_domain", NULL };
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2014-12-24 12:35:02 -05:00
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");
2014-12-24 12:35:02 -05:00
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_jid_sets_resource(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "jid", "a_local@a_domain/a_resource", NULL };
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2014-12-24 12:35:02 -05:00
expect_string(accounts_set_jid, account_name, "a_account");
expect_string(accounts_set_jid, value, "a_local@a_domain");
expect_cons_show("Updated jid for account a_account: a_local@a_domain");
2014-12-24 12:35:02 -05:00
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("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2013-12-17 17:33:49 -05:00
2020-07-07 08:18:57 -04:00
void
cmd_account_set_server_sets_server(void** state)
2013-12-17 17:33:49 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "server", "a_server", NULL };
2013-12-17 17:33:49 -05:00
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2013-12-17 17:33:49 -05:00
2014-12-24 12:35:02 -05:00
expect_string(accounts_set_server, account_name, "a_account");
expect_string(accounts_set_server, value, "a_server");
2013-12-17 17:33:49 -05:00
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated server for account a_account: a_server");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
2013-12-17 17:33:49 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_resource_sets_resource(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "resource", "a_resource", NULL };
2016-05-05 18:51:49 -04:00
will_return(connection_get_status, JABBER_DISCONNECTED);
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2014-12-24 12:35:02 -05:00
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("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_resource_sets_resource_with_online_message(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "resource", "a_resource", NULL };
2016-05-05 18:51:49 -04:00
will_return(connection_get_status, JABBER_CONNECTED);
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");
2016-04-27 20:13:42 -04:00
expect_cons_show("Updated resource for account a_account: a_resource, reconnect to pick up the change.");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_password_sets_password(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "password", "a_password", NULL };
ProfAccount* account = account_new("a_account", NULL, NULL, NULL,
TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2015-01-07 22:03:51 -05:00
expect_string(accounts_get_account, name, "a_account");
will_return(accounts_get_account, account);
2014-12-24 12:35:02 -05:00
expect_string(accounts_set_password, account_name, "a_account");
expect_string(accounts_set_password, value, "a_password");
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated password for account a_account");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
2015-01-12 20:04:37 -05:00
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_eval_password_sets_eval_password(void** state)
2015-01-12 20:04:37 -05:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "eval_password", "a_password", NULL };
ProfAccount* account = account_new("a_account", NULL, NULL, NULL,
TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2015-01-12 20:04:37 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_get_account, name, "a_account");
will_return(accounts_get_account, account);
expect_string(accounts_set_eval_password, account_name, "a_account");
expect_string(accounts_set_eval_password, value, "a_password");
expect_cons_show("Updated eval_password for account a_account");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
2015-01-12 20:04:37 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_password_when_eval_password_set(void** state)
{
gchar* args[] = { "set", "a_account", "password", "a_password", NULL };
ProfAccount* account = account_new("a_account", NULL, NULL, "a_password",
TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2015-01-12 20:04:37 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_get_account, name, "a_account");
will_return(accounts_get_account, account);
expect_cons_show("Cannot set password when eval_password is set.");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
2015-01-12 20:04:37 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_eval_password_when_password_set(void** state)
{
gchar* args[] = { "set", "a_account", "eval_password", "a_password", NULL };
ProfAccount* account = account_new("a_account", NULL, "a_password", NULL,
TRUE, NULL, 0, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2015-01-12 20:04:37 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
expect_string(accounts_get_account, name, "a_account");
will_return(accounts_get_account, account);
expect_cons_show("Cannot set eval_password when password is set.");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
2015-01-12 20:04:37 -05:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_muc_sets_muc(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "muc", "a_muc", NULL };
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2014-12-24 12:35:02 -05:00
expect_string(accounts_set_muc_service, account_name, "a_account");
expect_string(accounts_set_muc_service, value, "a_muc");
2013-12-19 16:05:39 -05:00
expect_cons_show("Updated muc service for account a_account: a_muc");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_set_nick_sets_nick(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "nick", "a_nick", NULL };
2014-12-24 12:35:02 -05:00
expect_any(accounts_account_exists, account_name);
will_return(accounts_account_exists, TRUE);
2014-12-24 12:35:02 -05:00
expect_string(accounts_set_muc_nick, account_name, "a_account");
expect_string(accounts_set_muc_nick, value, "a_nick");
expect_cons_show("Updated muc nick for account a_account: a_nick");
expect_cons_show("");
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_account_show_message_for_missing_otr_policy(void** state)
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "set", "a_account", "otr", NULL };
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ACCOUNT);
2016-04-26 19:30:33 -04:00
gboolean result = cmd_account_set(NULL, CMD_ACCOUNT, args);
assert_true(result);
}
2013-12-17 18:17:02 -05:00