From 5c65599e6accb35c056220b40b2b2251d0c8f4fc Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 15 Dec 2013 20:38:26 +0000 Subject: Tests lowercasing argument on cmd_connect --- tests/test_cmd_connect.c | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) (limited to 'tests/test_cmd_connect.c') diff --git a/tests/test_cmd_connect.c b/tests/test_cmd_connect.c index c60b4679..a05267ea 100644 --- a/tests/test_cmd_connect.c +++ b/tests/test_cmd_connect.c @@ -13,10 +13,10 @@ static void test_with_connection_status(jabber_conn_status_t status) { CommandHelp *help = malloc(sizeof(CommandHelp)); - + will_return(jabber_get_connection_status, status); expect_string(cons_show, output, "You are either connected already, or a login is in process."); - + gboolean result = cmd_connect(NULL, *help); assert_true(result); @@ -49,7 +49,7 @@ void cmd_connect_when_no_account(void **state) gchar *args[] = { "user@server.org", NULL }; will_return(jabber_get_connection_status, JABBER_DISCONNECTED); - + expect_string(accounts_get_account, name, "user@server.org"); will_return(accounts_get_account, NULL); @@ -74,7 +74,7 @@ void cmd_connect_with_altdomain_when_provided(void **state) gchar *args[] = { "user@server.org", "altdomain" }; will_return(jabber_get_connection_status, JABBER_DISCONNECTED); - + expect_any(accounts_get_account, name); will_return(accounts_get_account, NULL); @@ -99,7 +99,7 @@ void cmd_connect_fail_message(void **state) gchar *args[] = { "user@server.org", NULL }; will_return(jabber_get_connection_status, JABBER_DISCONNECTED); - + expect_any(accounts_get_account, name); will_return(accounts_get_account, NULL); @@ -119,3 +119,28 @@ void cmd_connect_fail_message(void **state) free(help); } + +void cmd_connect_lowercases_argument(void **state) +{ + CommandHelp *help = malloc(sizeof(CommandHelp)); + gchar *args[] = { "USER@server.ORG", NULL }; + + will_return(jabber_get_connection_status, JABBER_DISCONNECTED); + + expect_string(accounts_get_account, name, "user@server.org"); + will_return(accounts_get_account, NULL); + + will_return(ui_ask_password, strdup("password")); + + expect_any(cons_show, output); + + expect_any(jabber_connect_with_details, jid); + expect_any(jabber_connect_with_details, passwd); + expect_any(jabber_connect_with_details, altdomain); + will_return(jabber_connect_with_details, JABBER_CONNECTING); + + gboolean result = cmd_connect(args, *help); + assert_true(result); + + free(help); +} -- cgit 1.4.1-2-gfad0