This repository was archived by the owner on Dec 16, 2022. It is now read-only.
forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.jl
91 lines (74 loc) · 2.07 KB
/
test.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
82
83
84
85
86
87
88
89
90
91
module Test
export Result, Success, Failure, Error,
@test, @test_fails, @test_approx_eq, @test_approx_eq_eps,
registerhandler, withhandler
abstract Result
type Success <: Result
expr
end
type Failure <: Result
expr
end
type Error <: Result
expr
err
backtrace
end
default_handler(r::Success) = nothing
default_handler(r::Failure) = error("test failed: $(r.expr)")
default_handler(r::Error) = rethrow(r)
import Base.error_show
error_show(io::IO, r::Error) = error_show(io, r, {})
function error_show(io::IO, r::Error, bt)
println(io, "test error during $(r.expr)")
error_show(io, r.err, r.backtrace)
end
const handlers = [default_handler]
function do_test(thk, qex)
handlers[end](try
thk() ? Success(qex) : Failure(qex)
catch err
Error(qex,err,catch_backtrace())
end)
end
function do_test_fails(thk, qex)
handlers[end](try
thk()
Failure(qex)
catch err
Success(qex)
end)
end
function registerhandler(handler)
handlers[end] = handler
end
function withhandler(f::Function, handler)
handler, handlers[end] = handlers[end], handler
ret = f()
handler, handlers[end] = handlers[end], handler
return ret
end
macro test(ex)
:(do_test(()->($(esc(ex))),$(Expr(:quote,ex))))
end
macro test_fails(ex)
:(do_test_fails(()->($(esc(ex))),$(Expr(:quote,ex))))
end
function test_approx_eq(va, vb, Eps, astr, bstr)
diff = max(abs(va - vb))
sdiff = string("|", astr, " - ", bstr, "| <= ", Eps)
if diff > Eps
error("assertion failed: ", sdiff,
"\n ", astr, " = ", va,
"\n ", bstr, " = ", vb,
"\n difference = ", diff, " > ", Eps)
end
end
test_approx_eq(va, vb, astr, bstr) = test_approx_eq(va, vb, 10^4*length(va)*eps(max(max(abs(va)), max(abs(vb)))) * max(1, max(abs(va)), max(abs(vb))), astr, bstr)
macro test_approx_eq_eps(a, b, c)
:(test_approx_eq($(esc(a)), $(esc(b)), $(esc(c)), $(string(a)), $(string(b))))
end
macro test_approx_eq(a, b)
:(test_approx_eq($(esc(a)), $(esc(b)), $(string(a)), $(string(b))))
end
end # module