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_presence.c

205 lines
5.0 KiB
C
Raw Normal View History

2014-01-19 01:25:04 +00:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
2014-01-19 01:25:04 +00:00
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2014-01-19 01:25:04 +00:00
2014-01-19 16:17:34 +00:00
#include "config/preferences.h"
#include "ui/ui.h"
#include "ui/stub_ui.h"
2014-01-19 01:25:04 +00:00
2016-05-22 22:59:52 +00:00
#include "command/cmd_funcs.h"
2014-01-19 01:25:04 +00:00
#define CMD_PRESENCE "/presence"
2015-07-26 23:04:48 +00:00
2020-07-07 12:18:57 +00:00
void
cmd_presence_shows_usage_when_bad_subcmd(void** state)
2014-01-19 01:25:04 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "badcmd", NULL };
2014-01-19 01:25:04 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_PRESENCE);
2014-01-19 01:25:04 +00:00
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 01:25:04 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_shows_usage_when_bad_console_setting(void** state)
2014-01-19 01:25:04 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "console", "badsetting", NULL };
2014-01-19 01:25:04 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_PRESENCE);
2014-01-19 01:25:04 +00:00
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 01:25:04 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_shows_usage_when_bad_chat_setting(void** state)
2014-01-19 01:25:04 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "chat", "badsetting", NULL };
2014-01-19 01:25:04 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_PRESENCE);
2014-01-19 01:25:04 +00:00
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 01:25:04 +00:00
assert_true(result);
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_shows_usage_when_bad_muc_setting(void** state)
2014-01-19 01:25:04 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "muc", "badsetting", NULL };
2014-01-19 01:25:04 +00:00
expect_string(cons_bad_cmd_usage, cmd, CMD_PRESENCE);
2014-01-19 01:25:04 +00:00
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 01:25:04 +00:00
assert_true(result);
}
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
void
cmd_presence_console_sets_all(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "console", "all", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("All presence updates will appear in the console.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_CONSOLE);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("all", setting);
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_console_sets_online(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "console", "online", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("Only online/offline presence updates will appear in the console.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_CONSOLE);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("online", setting);
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_console_sets_none(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "console", "none", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("Presence updates will not appear in the console.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_CONSOLE);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("none", setting);
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_chat_sets_all(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "chat", "all", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("All presence updates will appear in chat windows.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_CHAT);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("all", setting);
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_chat_sets_online(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "chat", "online", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("Only online/offline presence updates will appear in chat windows.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_CHAT);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("online", setting);
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_chat_sets_none(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "chat", "none", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("Presence updates will not appear in chat windows.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_CHAT);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("none", setting);
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_room_sets_all(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "room", "all", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("All presence updates will appear in chat room windows.");
2014-01-19 16:17:34 +00:00
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_MUC);
2014-01-19 16:17:34 +00:00
assert_non_null(setting);
assert_string_equal("all", setting);
2014-01-19 16:17:34 +00:00
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_room_sets_online(void** state)
2014-01-19 16:17:34 +00:00
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "room", "online", NULL };
2014-01-19 16:17:34 +00:00
expect_cons_show("Only join/leave presence updates will appear in chat room windows.");
2014-01-19 16:17:34 +00:00
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2014-01-19 16:17:34 +00:00
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_MUC);
assert_non_null(setting);
assert_string_equal("online", setting);
assert_true(result);
g_free(setting);
}
2020-07-07 12:18:57 +00:00
void
cmd_presence_room_sets_none(void** state)
{
2020-07-07 12:18:57 +00:00
gchar* args[] = { "room", "none", NULL };
expect_cons_show("Presence updates will not appear in chat room windows.");
gboolean result = cmd_presence(NULL, CMD_PRESENCE, args);
2020-07-07 12:18:57 +00:00
char* setting = prefs_get_string(PREF_STATUSES_MUC);
assert_non_null(setting);
assert_string_equal("none", setting);
2014-01-19 16:17:34 +00:00
assert_true(result);
g_free(setting);
2014-01-19 16:17:34 +00:00
}