-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest_util.jl
81 lines (68 loc) · 2.57 KB
/
test_util.jl
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# All `using` calls are in this file, so that one can run any test file
# after running only this file.
using Test: @test, @testset, @test_throws
using PointNeighbors
# Load `PointNeighborsCellListMapExt`
import CellListMap
"""
@trixi_testset "name of the testset" #= code to test #=
Similar to `@testset`, but wraps the code inside a temporary module to avoid
namespace pollution.
"""
macro trixi_testset(name, expr)
@assert name isa String
mod = gensym()
# TODO: `@eval` is evil
quote
@eval module $mod
using Test
using PointNeighbors
# We also include this file again to provide the definition of
# the other testing macros. This allows to use `@trixi_testset`
# in a nested fashion and also call `@test_nowarn_mod` from
# there.
include(@__FILE__)
@testset verbose=true $name $expr
end
nothing
end
end
"""
@test_nowarn_mod expr
Modified version of `@test_nowarn expr` that prints the content of `stderr` when
it is not empty and ignores some common info statements printed in Trixi.jl
uses.
"""
macro test_nowarn_mod(expr, additional_ignore_content = String[])
quote
let fname = tempname()
try
ret = open(fname, "w") do f
redirect_stderr(f) do
$(esc(expr))
end
end
stderr_content = read(fname, String)
if !isempty(stderr_content)
println("Content of `stderr`:\n", stderr_content)
end
# Patterns matching the following ones will be ignored. Additional patterns
# passed as arguments can also be regular expressions, so we just use the
# type `Any` for `ignore_content`.
ignore_content = Any["[ Info: You just called `trixi_include`. Julia may now compile the code, please be patient.\n"]
append!(ignore_content, $additional_ignore_content)
for pattern in ignore_content
stderr_content = replace(stderr_content, pattern => "")
end
# We also ignore simple module redefinitions for convenience. Thus, we
# check whether every line of `stderr_content` is of the form of a
# module replacement warning.
@test occursin(r"^(WARNING: replacing module .+\.\n)*$", stderr_content)
ret
finally
rm(fname, force = true)
end
end
end
end
include("point_cloud.jl")