1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/tests/unittests/test_cmd_roster.c

254 lines
6.1 KiB
C
Raw Normal View History

2014-03-16 01:23:12 +00:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
2014-03-16 01:23:12 +00:00
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2014-03-16 01:23:12 +00:00
#include "ui/ui.h"
#include "ui/stub_ui.h"
2014-03-16 01:23:12 +00:00
#include "xmpp/xmpp.h"
#include "xmpp/roster_list.h"
#include "command/cmd_funcs.h"
2014-03-16 01:23:12 +00:00
2015-07-26 23:04:48 +00:00
#define CMD_ROSTER "/roster"
2020-07-07 12:18:57 +00:00
static void
test_with_connection_status(jabber_conn_status_t status)
2014-03-16 01:23:12 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { NULL };
2014-03-16 01:23:12 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, status);
2014-03-16 01:23:12 +00:00
expect_cons_show("You are not currently connected.");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 01:23:12 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_shows_message_when_disconnecting(void** state)
2014-03-16 01:23:12 +00:00
{
test_with_connection_status(JABBER_DISCONNECTING);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_shows_message_when_connecting(void** state)
2014-03-16 01:23:12 +00:00
{
test_with_connection_status(JABBER_CONNECTING);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_shows_message_when_disconnected(void** state)
2014-03-16 01:23:12 +00:00
{
test_with_connection_status(JABBER_DISCONNECTED);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_shows_roster_when_no_args(void** state)
2014-03-16 01:23:12 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { NULL };
2014-03-16 01:23:12 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
roster_create();
2014-03-16 01:23:12 +00:00
roster_add("bob@server.org", "bob", NULL, "both", FALSE);
2020-07-07 12:18:57 +00:00
GSList* roster = roster_get_contacts(ROSTER_ORD_NAME);
2014-12-24 23:59:26 +00:00
expect_memory(cons_show_roster, list, roster, sizeof(roster));
2014-03-16 01:23:12 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 01:23:12 +00:00
assert_true(result);
2019-10-13 21:23:02 +00:00
g_slist_free(roster);
roster_destroy();
2014-03-16 01:23:12 +00:00
}
2014-03-16 01:46:18 +00:00
2020-07-07 12:18:57 +00:00
void
cmd_roster_add_shows_message_when_no_jid(void** state)
2014-03-16 01:46:18 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "add", NULL };
2014-03-16 01:46:18 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2015-07-26 23:04:48 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ROSTER);
2014-03-16 01:46:18 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 01:46:18 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_add_sends_roster_add_request(void** state)
2014-03-16 01:46:18 +00:00
{
2020-07-07 12:18:57 +00:00
char* jid = "bob@server.org";
char* nick = "bob";
gchar* args[] = { "add", jid, nick, NULL };
2014-03-16 01:46:18 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
expect_string(roster_send_add_new, barejid, jid);
expect_string(roster_send_add_new, name, nick);
2014-03-16 01:46:18 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 01:46:18 +00:00
assert_true(result);
}
2014-03-16 16:00:10 +00:00
2020-07-07 12:18:57 +00:00
void
cmd_roster_remove_shows_message_when_no_jid(void** state)
2014-03-16 16:00:10 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "remove", NULL };
2014-03-16 16:00:10 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2015-07-26 23:04:48 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ROSTER);
2014-03-16 16:00:10 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 16:00:10 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_remove_sends_roster_remove_request(void** state)
2014-03-16 16:00:10 +00:00
{
2020-07-07 12:18:57 +00:00
char* jid = "bob@server.org";
gchar* args[] = { "remove", jid, NULL };
2014-03-16 16:00:10 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
expect_string(roster_send_remove, barejid, jid);
2014-03-16 16:00:10 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 16:00:10 +00:00
assert_true(result);
}
2014-03-16 17:53:41 +00:00
2020-07-07 12:18:57 +00:00
void
cmd_roster_nick_shows_message_when_no_jid(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "nick", NULL };
2014-03-16 17:53:41 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2015-07-26 23:04:48 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ROSTER);
2014-03-16 17:53:41 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_nick_shows_message_when_no_nick(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "nick", "bob@server.org", NULL };
2014-03-16 17:53:41 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2015-07-26 23:04:48 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ROSTER);
2014-03-16 17:53:41 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_nick_shows_message_when_no_contact_exists(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "nick", "bob@server.org", "bobster", NULL };
2014-03-16 17:53:41 +00:00
roster_create();
2014-12-24 23:59:26 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2014-03-16 17:53:41 +00:00
expect_cons_show("Contact not found in roster: bob@server.org");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
roster_destroy();
2014-03-16 17:53:41 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_nick_sends_name_change_request(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
char* jid = "bob@server.org";
char* nick = "bobster";
gchar* args[] = { "nick", jid, nick, NULL };
2014-03-16 17:53:41 +00:00
roster_create();
2020-07-07 12:18:57 +00:00
GSList* groups = NULL;
groups = g_slist_append(groups, strdup("group1"));
2014-03-16 17:53:41 +00:00
roster_add(jid, "bob", groups, "both", FALSE);
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
expect_string(roster_send_name_change, barejid, jid);
expect_string(roster_send_name_change, new_name, nick);
expect_memory(roster_send_name_change, groups, groups, sizeof(groups));
2014-03-16 17:53:41 +00:00
expect_cons_show("Nickname for bob@server.org set to: bobster.");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
PContact contact = roster_get_contact(jid);
assert_string_equal(p_contact_name(contact), nick);
roster_destroy();
2014-03-16 17:53:41 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_clearnick_shows_message_when_no_jid(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "clearnick", NULL };
2014-03-16 17:53:41 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2015-07-26 23:04:48 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_ROSTER);
2014-03-16 17:53:41 +00:00
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_clearnick_shows_message_when_no_contact_exists(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "clearnick", "bob@server.org", NULL };
2014-03-16 17:53:41 +00:00
roster_create();
2014-12-24 23:59:26 +00:00
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
2014-03-16 17:53:41 +00:00
expect_cons_show("Contact not found in roster: bob@server.org");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
roster_destroy();
2014-03-16 17:53:41 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_roster_clearnick_sends_name_change_request_with_empty_nick(void** state)
2014-03-16 17:53:41 +00:00
{
2020-07-07 12:18:57 +00:00
char* jid = "bob@server.org";
gchar* args[] = { "clearnick", jid, NULL };
2014-03-16 17:53:41 +00:00
roster_create();
2020-07-07 12:18:57 +00:00
GSList* groups = NULL;
groups = g_slist_append(groups, strdup("group1"));
2014-03-16 17:53:41 +00:00
roster_add(jid, "bob", groups, "both", FALSE);
2016-05-05 22:51:49 +00:00
will_return(connection_get_status, JABBER_CONNECTED);
2014-12-24 23:59:26 +00:00
expect_string(roster_send_name_change, barejid, jid);
expect_value(roster_send_name_change, new_name, NULL);
expect_memory(roster_send_name_change, groups, groups, sizeof(groups));
2014-03-16 17:53:41 +00:00
expect_cons_show("Nickname for bob@server.org removed.");
2015-07-26 23:04:48 +00:00
gboolean result = cmd_roster(NULL, CMD_ROSTER, args);
2014-03-16 17:53:41 +00:00
assert_true(result);
PContact contact = roster_get_contact(jid);
assert_null(p_contact_name(contact));
roster_destroy();
2014-03-16 17:53:41 +00:00
}