aboutsummaryrefslogtreecommitdiffstats
path: root/test/rspamd_lua_test.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rspamd.com>2023-07-26 10:49:23 +0100
committerVsevolod Stakhov <vsevolod@rspamd.com>2023-07-26 10:49:23 +0100
commit537a7180a0d5132c11636c4fd8b1450cd99d352c (patch)
treefb9f8c84955a411bdffbd6371ea32f2716fb3687 /test/rspamd_lua_test.c
parent5fd7a90fdaa33f52c59bdb0ca84451e5c1e22365 (diff)
downloadrspamd-537a7180a0d5132c11636c4fd8b1450cd99d352c.tar.gz
rspamd-537a7180a0d5132c11636c4fd8b1450cd99d352c.zip
[Rework] Use clang-format to unify formatting in all sources
No meaningful changes.
Diffstat (limited to 'test/rspamd_lua_test.c')
-rw-r--r--test/rspamd_lua_test.c114
1 files changed, 57 insertions, 57 deletions
diff --git a/test/rspamd_lua_test.c b/test/rspamd_lua_test.c
index cc1e96474..87cc9b7cf 100644
--- a/test/rspamd_lua_test.c
+++ b/test/rspamd_lua_test.c
@@ -30,122 +30,122 @@ extern gchar *argv0_dirname;
extern struct rspamd_main *rspamd_main;
static int
-traceback (lua_State *L)
+traceback(lua_State *L)
{
- if (!lua_isstring (L, 1)) {
+ if (!lua_isstring(L, 1)) {
return 1;
}
- lua_getglobal (L, "debug");
+ lua_getglobal(L, "debug");
if (!lua_istable(L, -1)) {
lua_pop(L, 1);
return 1;
}
- lua_getfield (L, -1, "traceback");
+ lua_getfield(L, -1, "traceback");
if (!lua_isfunction(L, -1)) {
lua_pop(L, 2);
return 1;
}
- lua_pushvalue (L, 1);
- lua_pushinteger (L, 2);
+ lua_pushvalue(L, 1);
+ lua_pushinteger(L, 2);
lua_call(L, 2, 1);
return 1;
}
_Noreturn void
-rspamd_lua_test_func (void)
+rspamd_lua_test_func(void)
{
- lua_State *L = (lua_State *)rspamd_main->cfg->lua_state;
+ lua_State *L = (lua_State *) rspamd_main->cfg->lua_state;
gchar *lua_src, *rp, rp_buf[PATH_MAX], path_buf[PATH_MAX], *tmp, *dir, *pattern;
const gchar *old_path;
glob_t globbuf;
gint i, len;
- rspamd_lua_set_env (L, NULL, NULL, NULL);
- rspamd_lua_set_globals (rspamd_main->cfg, L);
- rspamd_lua_start_gc (rspamd_main->cfg);
+ rspamd_lua_set_env(L, NULL, NULL, NULL);
+ rspamd_lua_set_globals(rspamd_main->cfg, L);
+ rspamd_lua_start_gc(rspamd_main->cfg);
if (lua_test_case) {
- lua_pushstring (L, lua_test_case);
- lua_setglobal (L, "test_pattern");
+ lua_pushstring(L, lua_test_case);
+ lua_setglobal(L, "test_pattern");
}
- rspamd_printf ("Starting lua tests\n");
+ rspamd_printf("Starting lua tests\n");
- lua_src = g_build_filename (argv0_dirname, lua_src_name, NULL);
- if ((rp = realpath (lua_src, rp_buf)) == NULL) {
- msg_err ("cannot find path %s: %s",
- lua_src, strerror (errno));
- g_assert (0);
+ lua_src = g_build_filename(argv0_dirname, lua_src_name, NULL);
+ if ((rp = realpath(lua_src, rp_buf)) == NULL) {
+ msg_err("cannot find path %s: %s",
+ lua_src, strerror(errno));
+ g_assert(0);
}
- g_free (lua_src);
+ g_free(lua_src);
- tmp = g_strdup (rp);
- dir = dirname (tmp);
+ tmp = g_strdup(rp);
+ dir = dirname(tmp);
/* Set lua path */
- lua_getglobal (L, "package");
- lua_getfield (L, -1, "path");
- old_path = luaL_checkstring (L, -1);
+ lua_getglobal(L, "package");
+ lua_getfield(L, -1, "path");
+ old_path = luaL_checkstring(L, -1);
- rspamd_snprintf (path_buf, sizeof (path_buf), "%s;%s/?.lua;%s/unit/?.lua",
- old_path, dir, dir);
- lua_pop (L, 1);
- lua_pushstring (L, path_buf);
- lua_setfield (L, -2, "path");
- lua_pop (L, 1);
+ rspamd_snprintf(path_buf, sizeof(path_buf), "%s;%s/?.lua;%s/unit/?.lua",
+ old_path, dir, dir);
+ lua_pop(L, 1);
+ lua_pushstring(L, path_buf);
+ lua_setfield(L, -2, "path");
+ lua_pop(L, 1);
- lua_newtable (L);
+ lua_newtable(L);
globbuf.gl_offs = 0;
- len = strlen (dir) + sizeof ("/unit/") + sizeof ("*.lua");
- pattern = g_malloc (len);
- rspamd_snprintf (pattern, len, "%s/unit/%s", dir, "*.lua");
+ len = strlen(dir) + sizeof("/unit/") + sizeof("*.lua");
+ pattern = g_malloc(len);
+ rspamd_snprintf(pattern, len, "%s/unit/%s", dir, "*.lua");
gint lua_test_len = 0;
gint inserted_file = 1;
gint path_start;
if (lua_test) {
- lua_test_len = strlen (lua_test);
+ lua_test_len = strlen(lua_test);
}
- if (glob (pattern, GLOB_DOOFFS, NULL, &globbuf) == 0) {
- for (i = 0; i < (gint)globbuf.gl_pathc; i++) {
+ if (glob(pattern, GLOB_DOOFFS, NULL, &globbuf) == 0) {
+ for (i = 0; i < (gint) globbuf.gl_pathc; i++) {
if (lua_test) {
- path_start = strlen (globbuf.gl_pathv[i]) - lua_test_len;
+ path_start = strlen(globbuf.gl_pathv[i]) - lua_test_len;
if (path_start < 0 ||
- strncmp (globbuf.gl_pathv[i] + path_start, lua_test, lua_test_len) != 0) {
+ strncmp(globbuf.gl_pathv[i] + path_start, lua_test, lua_test_len) != 0) {
continue;
}
}
- lua_pushinteger (L, inserted_file);
- lua_pushstring (L, globbuf.gl_pathv[i]);
- lua_settable (L, -3);
+ lua_pushinteger(L, inserted_file);
+ lua_pushstring(L, globbuf.gl_pathv[i]);
+ lua_settable(L, -3);
- inserted_file ++;
+ inserted_file++;
}
- globfree (&globbuf);
- g_free (pattern);
+ globfree(&globbuf);
+ g_free(pattern);
}
else {
- msg_err ("pattern %s doesn't match: %s", pattern,
- strerror (errno));
- g_assert (0);
+ msg_err("pattern %s doesn't match: %s", pattern,
+ strerror(errno));
+ g_assert(0);
}
- lua_setglobal (L, "tests_list");
- rspamd_lua_set_path (L, NULL, NULL);
+ lua_setglobal(L, "tests_list");
+ rspamd_lua_set_path(L, NULL, NULL);
- lua_pushcfunction (L, traceback);
- luaL_loadfile (L, rp);
+ lua_pushcfunction(L, traceback);
+ luaL_loadfile(L, rp);
- if (lua_pcall (L, 0, 0, lua_gettop (L) - 1) != 0) {
- msg_err ("run test failed: %s", lua_tostring (L, -1));
- g_assert (0);
+ if (lua_pcall(L, 0, 0, lua_gettop(L) - 1) != 0) {
+ msg_err("run test failed: %s", lua_tostring(L, -1));
+ g_assert(0);
}
- exit (EXIT_SUCCESS);
+ exit(EXIT_SUCCESS);
}