Added cmd_bookmark tests
This commit is contained in:
@@ -68,6 +68,7 @@ tests_sources = \
|
|||||||
tests/helpers.c tests/helpers.h \
|
tests/helpers.c tests/helpers.h \
|
||||||
tests/test_cmd_account.c tests/test_cmd_account.h \
|
tests/test_cmd_account.c tests/test_cmd_account.h \
|
||||||
tests/test_cmd_alias.c tests/test_cmd_alias.h \
|
tests/test_cmd_alias.c tests/test_cmd_alias.h \
|
||||||
|
tests/test_cmd_bookmark.c tests/test_cmd_bookmark.h \
|
||||||
tests/test_autocomplete.c tests/test_autocomplete.h \
|
tests/test_autocomplete.c tests/test_autocomplete.h \
|
||||||
tests/testsuite.c
|
tests/testsuite.c
|
||||||
|
|
||||||
|
|||||||
@@ -6,10 +6,10 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include "ui/mock_ui.h"
|
|
||||||
#include "ui/window.h"
|
|
||||||
#include "xmpp/xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
#include "xmpp/mock_xmpp.h"
|
|
||||||
|
#include "ui/ui.h"
|
||||||
|
#include "ui/stub_ui.h"
|
||||||
|
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
@@ -18,12 +18,13 @@
|
|||||||
|
|
||||||
#include "xmpp/bookmark.h"
|
#include "xmpp/bookmark.h"
|
||||||
|
|
||||||
|
#include "helpers.h"
|
||||||
|
|
||||||
static void test_with_connection_status(jabber_conn_status_t status)
|
static void test_with_connection_status(jabber_conn_status_t status)
|
||||||
{
|
{
|
||||||
mock_cons_show();
|
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
|
|
||||||
mock_connection_status(status);
|
will_return(jabber_get_connection_status, status);
|
||||||
expect_cons_show("You are not currently connected.");
|
expect_cons_show("You are not currently connected.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(NULL, *help);
|
gboolean result = cmd_bookmark(NULL, *help);
|
||||||
@@ -59,13 +60,13 @@ void cmd_bookmark_shows_message_when_undefined(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_shows_usage_when_no_args(void **state)
|
void cmd_bookmark_shows_usage_when_no_args(void **state)
|
||||||
{
|
{
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
help->usage = "some usage";
|
help->usage = "some usage";
|
||||||
gchar *args[] = { NULL };
|
gchar *args[] = { NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
expect_cons_show("Usage: some usage");
|
expect_cons_show("Usage: some usage");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
@@ -81,10 +82,24 @@ static void _free_bookmark(Bookmark *bookmark)
|
|||||||
free(bookmark);
|
free(bookmark);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
_cmp_bookmark(Bookmark *bm1, Bookmark *bm2)
|
||||||
|
{
|
||||||
|
if (strcmp(bm1->jid, bm2->jid) != 0) {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
if (strcmp(bm1->nick, bm2->nick) != 0) {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
if (bm1->autojoin != bm2->autojoin) {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
void cmd_bookmark_list_shows_bookmarks(void **state)
|
void cmd_bookmark_list_shows_bookmarks(void **state)
|
||||||
{
|
{
|
||||||
mock_cons_show_bookmarks();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "list", NULL };
|
gchar *args[] = { "list", NULL };
|
||||||
GList *bookmarks = NULL;
|
GList *bookmarks = NULL;
|
||||||
@@ -116,10 +131,13 @@ void cmd_bookmark_list_shows_bookmarks(void **state)
|
|||||||
bookmarks = g_list_append(bookmarks, bm4);
|
bookmarks = g_list_append(bookmarks, bm4);
|
||||||
bookmarks = g_list_append(bookmarks, bm5);
|
bookmarks = g_list_append(bookmarks, bm5);
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
will_return(bookmark_get_list, bookmarks);
|
||||||
|
|
||||||
bookmark_get_list_returns(bookmarks);
|
// TODO - Custom list compare
|
||||||
expect_cons_show_bookmarks(bookmarks);
|
glist_set_cmp((GCompareFunc)_cmp_bookmark);
|
||||||
|
expect_any(cons_show_bookmarks, list);
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
assert_true(result);
|
assert_true(result);
|
||||||
@@ -130,14 +148,12 @@ void cmd_bookmark_list_shows_bookmarks(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_add_shows_message_when_invalid_jid(void **state)
|
void cmd_bookmark_add_shows_message_when_invalid_jid(void **state)
|
||||||
{
|
{
|
||||||
mock_bookmark_add();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room";
|
char *jid = "room";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "add", jid, NULL };
|
gchar *args[] = { "add", jid, NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
expect_cons_show("Can't add bookmark with JID 'room'; should be 'room@domain.tld'");
|
expect_cons_show("Can't add bookmark with JID 'room'; should be 'room@domain.tld'");
|
||||||
|
|
||||||
@@ -149,16 +165,19 @@ void cmd_bookmark_add_shows_message_when_invalid_jid(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_add_adds_bookmark_with_jid(void **state)
|
void cmd_bookmark_add_adds_bookmark_with_jid(void **state)
|
||||||
{
|
{
|
||||||
mock_bookmark_add();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room@conf.server";
|
char *jid = "room@conf.server";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "add", jid, NULL };
|
gchar *args[] = { "add", jid, NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
|
expect_string(bookmark_add, jid, jid);
|
||||||
|
expect_any(bookmark_add, nick);
|
||||||
|
expect_any(bookmark_add, password);
|
||||||
|
expect_any(bookmark_add, autojoin_str);
|
||||||
|
will_return(bookmark_add, TRUE);
|
||||||
|
|
||||||
expect_and_return_bookmark_add(jid, NULL, NULL, NULL, TRUE);
|
|
||||||
expect_cons_show("Bookmark added for room@conf.server.");
|
expect_cons_show("Bookmark added for room@conf.server.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
@@ -168,18 +187,20 @@ void cmd_bookmark_add_adds_bookmark_with_jid(void **state)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cmd_bookmark_add_adds_bookmark_with_jid_nick(void **state)
|
void cmd_bookmark_add_adds_bookmark_with_jid_nick(void **state)
|
||||||
{
|
{ char *jid = "room@conf.server";
|
||||||
mock_bookmark_add();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room@conf.server";
|
|
||||||
char *nick = "bob";
|
char *nick = "bob";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "add", jid, "nick", nick, NULL };
|
gchar *args[] = { "add", jid, "nick", nick, NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
|
expect_string(bookmark_add, jid, jid);
|
||||||
|
expect_string(bookmark_add, nick, nick);
|
||||||
|
expect_any(bookmark_add, password);
|
||||||
|
expect_any(bookmark_add, autojoin_str);
|
||||||
|
will_return(bookmark_add, TRUE);
|
||||||
|
|
||||||
expect_and_return_bookmark_add(jid, nick, NULL, NULL, TRUE);
|
|
||||||
expect_cons_show("Bookmark added for room@conf.server.");
|
expect_cons_show("Bookmark added for room@conf.server.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
@@ -190,16 +211,19 @@ void cmd_bookmark_add_adds_bookmark_with_jid_nick(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_add_adds_bookmark_with_jid_autojoin(void **state)
|
void cmd_bookmark_add_adds_bookmark_with_jid_autojoin(void **state)
|
||||||
{
|
{
|
||||||
mock_bookmark_add();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room@conf.server";
|
char *jid = "room@conf.server";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "add", jid, "autojoin", "on", NULL };
|
gchar *args[] = { "add", jid, "autojoin", "on", NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
|
expect_string(bookmark_add, jid, jid);
|
||||||
|
expect_any(bookmark_add, nick);
|
||||||
|
expect_any(bookmark_add, password);
|
||||||
|
expect_string(bookmark_add, autojoin_str, "on");
|
||||||
|
will_return(bookmark_add, TRUE);
|
||||||
|
|
||||||
expect_and_return_bookmark_add(jid, NULL, NULL, "on", TRUE);
|
|
||||||
expect_cons_show("Bookmark added for room@conf.server.");
|
expect_cons_show("Bookmark added for room@conf.server.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
@@ -210,17 +234,20 @@ void cmd_bookmark_add_adds_bookmark_with_jid_autojoin(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_add_adds_bookmark_with_jid_nick_autojoin(void **state)
|
void cmd_bookmark_add_adds_bookmark_with_jid_nick_autojoin(void **state)
|
||||||
{
|
{
|
||||||
mock_bookmark_add();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room@conf.server";
|
char *jid = "room@conf.server";
|
||||||
char *nick = "bob";
|
char *nick = "bob";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "add", jid, "nick", nick, "autojoin", "on", NULL };
|
gchar *args[] = { "add", jid, "nick", nick, "autojoin", "on", NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
|
expect_string(bookmark_add, jid, jid);
|
||||||
|
expect_string(bookmark_add, nick, nick);
|
||||||
|
expect_any(bookmark_add, password);
|
||||||
|
expect_string(bookmark_add, autojoin_str, "on");
|
||||||
|
will_return(bookmark_add, TRUE);
|
||||||
|
|
||||||
expect_and_return_bookmark_add(jid, nick, NULL, "on", TRUE);
|
|
||||||
expect_cons_show("Bookmark added for room@conf.server.");
|
expect_cons_show("Bookmark added for room@conf.server.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
@@ -231,16 +258,16 @@ void cmd_bookmark_add_adds_bookmark_with_jid_nick_autojoin(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_remove_removes_bookmark(void **state)
|
void cmd_bookmark_remove_removes_bookmark(void **state)
|
||||||
{
|
{
|
||||||
mock_bookmark_remove();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room@conf.server";
|
char *jid = "room@conf.server";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "remove", jid, NULL };
|
gchar *args[] = { "remove", jid, NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
|
expect_string(bookmark_remove, jid, jid);
|
||||||
|
will_return(bookmark_remove, TRUE);
|
||||||
|
|
||||||
expect_and_return_bookmark_remove(jid, TRUE);
|
|
||||||
expect_cons_show("Bookmark removed for room@conf.server.");
|
expect_cons_show("Bookmark removed for room@conf.server.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
@@ -251,16 +278,16 @@ void cmd_bookmark_remove_removes_bookmark(void **state)
|
|||||||
|
|
||||||
void cmd_bookmark_remove_shows_message_when_no_bookmark(void **state)
|
void cmd_bookmark_remove_shows_message_when_no_bookmark(void **state)
|
||||||
{
|
{
|
||||||
mock_bookmark_remove();
|
|
||||||
mock_cons_show();
|
|
||||||
mock_current_win_type(WIN_CONSOLE);
|
|
||||||
char *jid = "room@conf.server";
|
char *jid = "room@conf.server";
|
||||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
gchar *args[] = { "remove", jid, NULL };
|
gchar *args[] = { "remove", jid, NULL };
|
||||||
|
|
||||||
mock_connection_status(JABBER_CONNECTED);
|
will_return(jabber_get_connection_status, JABBER_CONNECTED);
|
||||||
|
will_return(ui_current_win_type, WIN_CONSOLE);
|
||||||
|
|
||||||
|
expect_any(bookmark_remove, jid);
|
||||||
|
will_return(bookmark_remove, FALSE);
|
||||||
|
|
||||||
expect_and_return_bookmark_remove(jid, FALSE);
|
|
||||||
expect_cons_show("No bookmark exists for room@conf.server.");
|
expect_cons_show("No bookmark exists for room@conf.server.");
|
||||||
|
|
||||||
gboolean result = cmd_bookmark(args, *help);
|
gboolean result = cmd_bookmark(args, *help);
|
||||||
|
|||||||
@@ -417,7 +417,7 @@ int main(int argc, char* argv[]) {
|
|||||||
unit_test_setup_teardown(test_muc_invites_count_5, muc_before_test, muc_after_test),
|
unit_test_setup_teardown(test_muc_invites_count_5, muc_before_test, muc_after_test),
|
||||||
unit_test_setup_teardown(test_muc_room_is_not_active, muc_before_test, muc_after_test),
|
unit_test_setup_teardown(test_muc_room_is_not_active, muc_before_test, muc_after_test),
|
||||||
unit_test_setup_teardown(test_muc_active, muc_before_test, muc_after_test),
|
unit_test_setup_teardown(test_muc_active, muc_before_test, muc_after_test),
|
||||||
|
*/
|
||||||
unit_test(cmd_bookmark_shows_message_when_disconnected),
|
unit_test(cmd_bookmark_shows_message_when_disconnected),
|
||||||
unit_test(cmd_bookmark_shows_message_when_disconnecting),
|
unit_test(cmd_bookmark_shows_message_when_disconnecting),
|
||||||
unit_test(cmd_bookmark_shows_message_when_connecting),
|
unit_test(cmd_bookmark_shows_message_when_connecting),
|
||||||
@@ -432,6 +432,7 @@ int main(int argc, char* argv[]) {
|
|||||||
unit_test(cmd_bookmark_add_adds_bookmark_with_jid_nick_autojoin),
|
unit_test(cmd_bookmark_add_adds_bookmark_with_jid_nick_autojoin),
|
||||||
unit_test(cmd_bookmark_remove_removes_bookmark),
|
unit_test(cmd_bookmark_remove_removes_bookmark),
|
||||||
unit_test(cmd_bookmark_remove_shows_message_when_no_bookmark),
|
unit_test(cmd_bookmark_remove_shows_message_when_no_bookmark),
|
||||||
|
/*
|
||||||
|
|
||||||
#ifdef HAVE_LIBOTR
|
#ifdef HAVE_LIBOTR
|
||||||
unit_test(cmd_otr_shows_usage_when_no_args),
|
unit_test(cmd_otr_shows_usage_when_no_args),
|
||||||
|
|||||||
@@ -86,9 +86,10 @@ int ui_close_read_wins(void)
|
|||||||
|
|
||||||
// current window actions
|
// current window actions
|
||||||
void ui_clear_current(void) {}
|
void ui_clear_current(void) {}
|
||||||
|
|
||||||
win_type_t ui_current_win_type(void)
|
win_type_t ui_current_win_type(void)
|
||||||
{
|
{
|
||||||
return WIN_CONSOLE;
|
return (win_type_t)mock();
|
||||||
}
|
}
|
||||||
|
|
||||||
int ui_current_win_index(void)
|
int ui_current_win_index(void)
|
||||||
@@ -330,7 +331,12 @@ void cons_show_account_list(gchar **accounts)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cons_show_room_list(GSList *room, const char * const conference_node) {}
|
void cons_show_room_list(GSList *room, const char * const conference_node) {}
|
||||||
void cons_show_bookmarks(const GList *list) {}
|
|
||||||
|
void cons_show_bookmarks(const GList *list)
|
||||||
|
{
|
||||||
|
check_expected(list);
|
||||||
|
}
|
||||||
|
|
||||||
void cons_show_disco_items(GSList *items, const char * const jid) {}
|
void cons_show_disco_items(GSList *items, const char * const jid) {}
|
||||||
void cons_show_disco_info(const char *from, GSList *identities, GSList *features) {}
|
void cons_show_disco_info(const char *from, GSList *identities, GSList *features) {}
|
||||||
void cons_show_room_invite(const char * const invitor, const char * const room,
|
void cons_show_room_invite(const char * const invitor, const char * const room,
|
||||||
|
|||||||
@@ -140,7 +140,11 @@ void caps_destroy(Capabilities *caps) {}
|
|||||||
|
|
||||||
gboolean bookmark_add(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
gboolean bookmark_add(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
||||||
{
|
{
|
||||||
return FALSE;
|
check_expected(jid);
|
||||||
|
check_expected(nick);
|
||||||
|
check_expected(password);
|
||||||
|
check_expected(autojoin_str);
|
||||||
|
return (gboolean)mock();
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean bookmark_update(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
gboolean bookmark_update(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
||||||
@@ -150,7 +154,8 @@ gboolean bookmark_update(const char *jid, const char *nick, const char *password
|
|||||||
|
|
||||||
gboolean bookmark_remove(const char *jid)
|
gboolean bookmark_remove(const char *jid)
|
||||||
{
|
{
|
||||||
return FALSE;
|
check_expected(jid);
|
||||||
|
return (gboolean)mock();
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean bookmark_join(const char *jid)
|
gboolean bookmark_join(const char *jid)
|
||||||
@@ -160,7 +165,7 @@ gboolean bookmark_join(const char *jid)
|
|||||||
|
|
||||||
const GList * bookmark_get_list(void)
|
const GList * bookmark_get_list(void)
|
||||||
{
|
{
|
||||||
return NULL;
|
return (GList *)mock();
|
||||||
}
|
}
|
||||||
|
|
||||||
char * bookmark_find(char *search_str)
|
char * bookmark_find(char *search_str)
|
||||||
|
|||||||
Reference in New Issue
Block a user