about summary refs log tree commit diff stats
path: root/tests/test_cmd_account.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-12-15 22:28:22 +0000
committerJames Booth <boothj5@gmail.com>2013-12-15 22:28:22 +0000
commit683da12c3aae53bb02ede52c924300580be9cc80 (patch)
tree0f047bd4d4d382a713c95584a806a5151da4036e /tests/test_cmd_account.c
parent6d75ebb8e9ebd292a57adb54ff22cac52b463dbd (diff)
downloadprofani-tty-683da12c3aae53bb02ede52c924300580be9cc80.tar.gz
Added cmd_account test
Diffstat (limited to 'tests/test_cmd_account.c')
-rw-r--r--tests/test_cmd_account.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/test_cmd_account.c b/tests/test_cmd_account.c
new file mode 100644
index 00000000..a857ca1c
--- /dev/null
+++ b/tests/test_cmd_account.c
@@ -0,0 +1,49 @@
+#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"
+#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);
+    
+    will_return(jabber_get_account_name, "account_name");
+
+    expect_string(accounts_get_account, name, "account_name");
+    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);
+}