aboutsummaryrefslogtreecommitdiffstats
path: root/test/lua/tests.lua
blob: 82c546903b7cf3adefaa7b253cf189c912a81aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- Run all unit tests in 'unit' directory

local telescope = require "telescope"
require "rspamd_assertions"
local loaded, luacov = pcall(require, 'luacov.runner')
if not loaded then
  luacov = {
    init = function() end,
    shutdown = function() end,
    run_report = function() end
  }
end
luacov.init()

local contexts = {}

for _,t in ipairs(tests_list) do
  telescope.load_contexts(t, contexts)
end
local function test_filter(test)
  return test.name:match(test_pattern)
end
if not test_pattern then
  test_filter = function(_) return true end
end

local buffer = {}
local results = telescope.run(contexts, callbacks, test_filter)
local summary, data = telescope.summary_report(contexts, results)

table.insert(buffer, telescope.test_report(contexts, results))
table.insert(buffer, summary)

local report = telescope.error_report(contexts, results)

if report then
  table.insert(buffer, "")
  table.insert(buffer, report)
end

if #buffer > 0 then print(table.concat(buffer, "\n")) end

for _, v in pairs(results) do
  if v.status_code == telescope.status_codes.err or
    v.status_code == telescope.status_codes.fail then
    os.exit(1)
  end
end

luacov:shutdown()
luacov:run_report()