1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Added tests for "/account disable"

This commit is contained in:
James Booth 2013-12-15 23:55:59 +00:00
parent 4216949b2e
commit 3c0bbed717
4 changed files with 73 additions and 0 deletions

View File

@ -71,6 +71,7 @@ gboolean accounts_enable(const char * const name)
gboolean accounts_disable(const char * const name)
{
check_expected(name);
return (gboolean)mock();
}

View File

@ -229,3 +229,67 @@ void cmd_account_enable_shows_message_when_account_doesnt_exist(void **state)
free(help);
}
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));
gchar *args[] = { "disable", "account_name" };
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));
gchar *args[] = { "disable", "account_name" };
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));
gchar *args[] = { "disable", "account_name" };
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);
}

View File

@ -11,3 +11,7 @@ void cmd_account_enable_shows_usage_when_no_arg(void **state);
void cmd_account_enable_enables_account(void **state);
void cmd_account_enable_shows_message_when_enabled(void **state);
void cmd_account_enable_shows_message_when_account_doesnt_exist(void **state);
void cmd_account_disable_shows_usage_when_no_arg(void **state);
void cmd_account_disable_disables_account(void **state);
void cmd_account_disable_shows_message_when_disabled(void **state);
void cmd_account_disable_shows_message_when_account_doesnt_exist(void **state);

View File

@ -41,6 +41,10 @@ int main(int argc, char* argv[]) {
unit_test(cmd_account_enable_enables_account),
unit_test(cmd_account_enable_shows_message_when_enabled),
unit_test(cmd_account_enable_shows_message_when_account_doesnt_exist),
unit_test(cmd_account_disable_shows_usage_when_no_arg),
unit_test(cmd_account_disable_disables_account),
unit_test(cmd_account_disable_shows_message_when_disabled),
unit_test(cmd_account_disable_shows_message_when_account_doesnt_exist),
unit_test(cmd_rooms_shows_message_when_disconnected),
unit_test(cmd_rooms_shows_message_when_disconnecting),