rspamd/test/lua/rspamd_test_helper.lua
2018-09-21 09:54:51 +01:00

18 lines
392 B
Lua

local ffi = require "ffi"
local cfg = rspamd_config
ffi.cdef[[
void rspamd_url_init (const char *tld_file);
]]
local exports = {}
function exports.init_url_parser(file)
if not file then
local test_dir = string.gsub(debug.getinfo(1).source, "^@(.+/)[^/]+$", "%1")
file = string.format('%s/unit/%s', test_dir, "test_tld.dat")
end
ffi.C.rspamd_url_init(file)
end
return exports