mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Added tests/config/helpers
This commit is contained in:
parent
79e9ab83b0
commit
5f25d99357
@ -65,6 +65,7 @@ test_sources = \
|
|||||||
tests/xmpp/mock_xmpp.h tests/xmpp/mock_xmpp.c \
|
tests/xmpp/mock_xmpp.h tests/xmpp/mock_xmpp.c \
|
||||||
tests/ui/mock_ui.h tests/ui/mock_ui.c \
|
tests/ui/mock_ui.h tests/ui/mock_ui.c \
|
||||||
tests/config/mock_accounts.h tests/config/mock_accounts.c \
|
tests/config/mock_accounts.h tests/config/mock_accounts.c \
|
||||||
|
tests/config/helpers.c tests/config/helpers.h \
|
||||||
tests/log/mock_log.c \
|
tests/log/mock_log.c \
|
||||||
tests/test_autocomplete.c \
|
tests/test_autocomplete.c \
|
||||||
tests/test_common.c \
|
tests/test_common.c \
|
||||||
|
46
tests/config/helpers.c
Normal file
46
tests/config/helpers.c
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
#define _XOPEN_SOURCE 600
|
||||||
|
#include <glib.h>
|
||||||
|
#include <setjmp.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <ftw.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <cmocka.h>
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
static int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
|
||||||
|
{
|
||||||
|
int rv = remove(fpath);
|
||||||
|
|
||||||
|
if (rv)
|
||||||
|
perror(fpath);
|
||||||
|
|
||||||
|
return rv;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int rmrf(char *path)
|
||||||
|
{
|
||||||
|
return nftw(path, unlink_cb, 64, FTW_DEPTH | FTW_PHYS);
|
||||||
|
}
|
||||||
|
|
||||||
|
void create_config_dir(void **state)
|
||||||
|
{
|
||||||
|
setenv("XDG_CONFIG_HOME", "./tests/files/xdg_config_home", 1);
|
||||||
|
gchar *xdg_config = xdg_get_config_home();
|
||||||
|
|
||||||
|
GString *profanity_dir = g_string_new(xdg_config);
|
||||||
|
g_string_append(profanity_dir, "/profanity");
|
||||||
|
|
||||||
|
if (!mkdir_recursive(profanity_dir->str)) {
|
||||||
|
assert_true(FALSE);
|
||||||
|
}
|
||||||
|
g_string_free(profanity_dir, TRUE);
|
||||||
|
|
||||||
|
g_free(xdg_config);
|
||||||
|
}
|
||||||
|
|
||||||
|
void delete_config_dir(void **state)
|
||||||
|
{
|
||||||
|
rmrf("./tests/files");
|
||||||
|
}
|
2
tests/config/helpers.h
Normal file
2
tests/config/helpers.h
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
void create_config_dir(void **state);
|
||||||
|
void delete_config_dir(void **state);
|
@ -1,7 +1,3 @@
|
|||||||
#define _XOPEN_SOURCE 600
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <ftw.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
@ -17,42 +13,6 @@
|
|||||||
|
|
||||||
#include "command/commands.h"
|
#include "command/commands.h"
|
||||||
|
|
||||||
static int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
|
|
||||||
{
|
|
||||||
int rv = remove(fpath);
|
|
||||||
|
|
||||||
if (rv)
|
|
||||||
perror(fpath);
|
|
||||||
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int rmrf(char *path)
|
|
||||||
{
|
|
||||||
return nftw(path, unlink_cb, 64, FTW_DEPTH | FTW_PHYS);
|
|
||||||
}
|
|
||||||
|
|
||||||
void create_config_dir(void **state)
|
|
||||||
{
|
|
||||||
setenv("XDG_CONFIG_HOME", "./tests/files/xdg_config_home", 1);
|
|
||||||
gchar *xdg_config = xdg_get_config_home();
|
|
||||||
|
|
||||||
GString *profanity_dir = g_string_new(xdg_config);
|
|
||||||
g_string_append(profanity_dir, "/profanity");
|
|
||||||
|
|
||||||
if (!mkdir_recursive(profanity_dir->str)) {
|
|
||||||
assert_true(FALSE);
|
|
||||||
}
|
|
||||||
g_string_free(profanity_dir, TRUE);
|
|
||||||
|
|
||||||
g_free(xdg_config);
|
|
||||||
}
|
|
||||||
|
|
||||||
void delete_config_dir(void **state)
|
|
||||||
{
|
|
||||||
rmrf("./tests/files");
|
|
||||||
}
|
|
||||||
|
|
||||||
void cmd_statuses_shows_usage_when_bad_subcmd(void **state)
|
void cmd_statuses_shows_usage_when_bad_subcmd(void **state)
|
||||||
{
|
{
|
||||||
mock_cons_show();
|
mock_cons_show();
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <cmocka.h>
|
#include <cmocka.h>
|
||||||
|
|
||||||
|
#include "config/helpers.h"
|
||||||
#include "test_autocomplete.h"
|
#include "test_autocomplete.h"
|
||||||
#include "test_common.h"
|
#include "test_common.h"
|
||||||
#include "test_contact.h"
|
#include "test_contact.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user