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

142 lines
2.6 KiB
C
Raw Normal View History

2014-01-19 11:32:31 -05:00
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdlib.h>
#include <cmocka.h>
#include <glib.h>
#include <stdio.h>
2014-01-20 13:40:48 -05:00
#include <unistd.h>
2014-01-19 11:32:31 -05:00
#include "common.h"
#include "helpers.h"
#include "config/preferences.h"
2016-07-24 09:23:55 -04:00
#include "xmpp/chat_session.h"
2014-01-19 11:32:31 -05:00
2020-07-07 08:18:57 -04:00
void
create_config_dir(void** state)
2014-01-19 11:32:31 -05:00
{
setenv("XDG_CONFIG_HOME", "./tests/files/xdg_config_home", 1);
2016-07-24 16:35:12 -04:00
if (!mkdir_recursive("./tests/files/xdg_config_home/profanity")) {
2014-01-19 11:32:31 -05:00
assert_true(FALSE);
}
}
2020-07-07 08:18:57 -04:00
void
remove_config_dir(void** state)
{
rmdir("./tests/files/xdg_config_home/profanity");
rmdir("./tests/files/xdg_config_home");
}
2020-07-07 08:18:57 -04:00
void
create_data_dir(void** state)
{
setenv("XDG_DATA_HOME", "./tests/files/xdg_data_home", 1);
2016-07-24 16:35:12 -04:00
if (!mkdir_recursive("./tests/files/xdg_data_home/profanity")) {
assert_true(FALSE);
}
}
2014-01-19 11:32:31 -05:00
2020-07-07 08:18:57 -04:00
void
remove_data_dir(void** state)
{
rmdir("./tests/files/xdg_data_home/profanity");
rmdir("./tests/files/xdg_data_home");
}
2020-07-07 08:18:57 -04:00
void
load_preferences(void** state)
{
create_config_dir(state);
2020-07-07 08:18:57 -04:00
FILE* f = fopen("./tests/files/xdg_config_home/profanity/profrc", "ab+");
2014-01-24 19:50:07 -05:00
if (f) {
prefs_load(NULL);
2014-01-24 19:50:07 -05:00
}
fclose(f);
2014-01-19 11:32:31 -05:00
}
2020-07-07 08:18:57 -04:00
void
close_preferences(void** state)
2014-01-19 11:32:31 -05:00
{
2014-01-20 13:40:48 -05:00
prefs_close();
remove("./tests/files/xdg_config_home/profanity/profrc");
remove_config_dir(state);
2014-01-20 13:40:48 -05:00
rmdir("./tests/files");
2014-01-19 11:32:31 -05:00
}
2014-02-01 16:18:15 -05:00
2020-07-07 08:18:57 -04:00
void
init_chat_sessions(void** state)
2015-01-06 16:22:09 -05:00
{
2015-01-06 16:56:14 -05:00
load_preferences(NULL);
2015-01-06 16:22:09 -05:00
chat_sessions_init();
}
2020-07-07 08:18:57 -04:00
void
close_chat_sessions(void** state)
2015-01-06 16:22:09 -05:00
{
chat_sessions_clear();
2015-01-06 16:56:14 -05:00
close_preferences(NULL);
2015-01-06 16:22:09 -05:00
}
2015-01-27 17:13:09 -05:00
int
2020-07-07 08:18:57 -04:00
utf8_pos_to_col(char* str, int utf8_pos)
2015-01-27 17:13:09 -05:00
{
int col = 0;
int i = 0;
2020-07-07 08:18:57 -04:00
for (i = 0; i < utf8_pos; i++) {
2015-01-27 17:13:09 -05:00
col++;
2020-07-07 08:18:57 -04:00
gchar* ch = g_utf8_offset_to_pointer(str, i);
2015-01-27 17:13:09 -05:00
gunichar uni = g_utf8_get_char(ch);
if (g_unichar_iswide(uni)) {
col++;
}
}
return col;
}
2014-02-01 16:18:15 -05:00
static GCompareFunc cmp_func;
void
glist_set_cmp(GCompareFunc func)
{
cmp_func = func;
}
int
2020-07-07 08:18:57 -04:00
glist_contents_equal(const void* actual, const void* expected)
2014-02-01 16:18:15 -05:00
{
2020-07-07 08:18:57 -04:00
GList* ac = (GList*)actual;
GList* ex = (GList*)expected;
2014-02-01 16:18:15 -05:00
2020-07-07 08:18:57 -04:00
GList* p = ex;
2014-02-01 16:18:15 -05:00
printf("\nExpected\n");
2020-07-07 08:18:57 -04:00
while (ex) {
2014-02-01 16:18:15 -05:00
printf("\n\n%s\n", (char*)p->data);
ex = g_list_next(ex);
}
printf("\n\n");
p = ac;
printf("\nActual\n");
2020-07-07 08:18:57 -04:00
while (ac) {
printf("\n\n%s\n", (char*)p->data);
2014-02-01 16:18:15 -05:00
ac = g_list_next(ac);
}
printf("\n\n");
if (g_list_length(ex) != g_list_length(ac)) {
return 0;
}
2020-07-07 08:18:57 -04:00
GList* ex_curr = ex;
2014-02-01 16:18:15 -05:00
while (ex_curr != NULL) {
if (g_list_find_custom(ac, ex_curr->data, cmp_func) == NULL) {
return 0;
}
ex_curr = g_list_next(ex_curr);
}
return 1;
}