#include #include #include #include #include #include #include #include #include "proftest.h" #include "xmpp/xmpp.h" #include "ui/stub_ui.h" #include "command/command.h" void connect_jid(void **state) { char *connect = "/connect stabber@localhost port 5230"; char *password = "password"; stbbr_auth_passwd(password); will_return(ui_ask_password, strdup(password)); expect_cons_show("Connecting as stabber@localhost"); cmd_process_input(strdup(connect)); prof_process_xmpp(); jabber_conn_status_t status = jabber_get_connection_status(); assert_true(status == JABBER_CONNECTED); } void connect_bad_password(void **state) { char *connect = "/connect stabber@localhost port 5230"; stbbr_auth_passwd("password"); will_return(ui_ask_password, strdup("badpassword")); expect_cons_show("Connecting as stabber@localhost"); expect_cons_show_error("Login failed."); cmd_process_input(strdup(connect)); prof_process_xmpp(); jabber_conn_status_t status = jabber_get_connection_status(); assert_true(status == JABBER_DISCONNECTED); }