forked from JuliaCI/PkgBenchmark.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests.jl
170 lines (146 loc) · 6.5 KB
/
runtests.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
using PkgBenchmark
using BenchmarkTools
using Statistics
using Test
using Dates
using LibGit2
using Random
using Pkg
const BENCHMARK_DIR = joinpath(@__DIR__, "..", "benchmark")
function temp_pkg_dir(fn::Function; tmp_dir=joinpath(tempdir(), randstring()),
remove_tmp_dir::Bool=true, initialize::Bool=true)
# Used in tests below to set up and tear down a sandboxed package directory
try
# TODO(nhdaly): Is this right??
Pkg.generate(tmp_dir)
Pkg.activate(tmp_dir)
Pkg.instantiate()
fn()
finally
# TODO(nhdaly): Is there a way to re-activate the previous environment?
Pkg.activate()
remove_tmp_dir && try rm(tmp_dir, recursive=true) catch end
end
end
function test_structure(g)
@test g |> keys |> collect |> Set == ["utf8", "trigonometry"] |> Set
@test g["utf8"] |> keys |> collect |> Set == ["join", "plots", "replace"] |> Set
_keys = Set(vec([string((string(f), x)) for x in (0.0, pi), f in (sin, cos, tan)]))
@test g["trigonometry"]["circular"] |> keys |> collect |> Set == _keys
end
@testset "structure" begin
results = benchmarkpkg("PkgBenchmark")
test_structure(PkgBenchmark.benchmarkgroup(results))
@test PkgBenchmark.name(results) == "PkgBenchmark"
@test Dates.Year(PkgBenchmark.date(results)) == Dates.Year(now())
export_markdown(stdout, results)
end
const TEST_PACKAGE_NAME = "Example"
# Set up a test package in a temp folder that we use to test things on
tmp_dir = joinpath(tempdir(), randstring())
old_pkgdir = Pkg.depots()[1]
temp_pkg_dir(;tmp_dir = tmp_dir) do
full_repo_path = joinpath(tmp_dir, TEST_PACKAGE_NAME)
Pkg.generate(full_repo_path)
Pkg.develop(PackageSpec(path=full_repo_path))
@testset "benchmarkconfig" begin
PkgBenchmark._withtemp(tempname()) do f
str = """
using BenchmarkTools
using Test
SUITE = BenchmarkGroup()
SUITE["foo"] = @benchmarkable 1+1
@test Base.JLOptions().opt_level == 3
@test ENV["JL_PKGBENCHMARK_TEST_ENV"] == "10"
"""
open(f, "w") do file
print(file, str)
end
config = BenchmarkConfig(juliacmd = `$(joinpath(Sys.BINDIR, Base.julia_exename())) -O3`,
env = Dict("JL_PKGBENCHMARK_TEST_ENV" => 10))
@test typeof(benchmarkpkg(TEST_PACKAGE_NAME, config, script=f; custom_loadpath=old_pkgdir)) == BenchmarkResults
end
end
@testset "postprocess" begin
PkgBenchmark._withtemp(tempname()) do f
str = """
using BenchmarkTools
SUITE = BenchmarkGroup()
SUITE["foo"] = @benchmarkable for _ in 1:100; 1+1; end
"""
open(f, "w") do file
print(file, str)
end
@test typeof(benchmarkpkg(TEST_PACKAGE_NAME, script=f;
postprocess=(r)->(r["foo"] = maximum(r["foo"]); return r))) == BenchmarkResults
end
end
# Make a commit with a small benchmarks.jl file
testpkg_path = Pkg.dir(TEST_PACKAGE_NAME)
LibGit2.init(testpkg_path)
repo = LibGit2.GitRepo(testpkg_path)
initial_commit = LibGit2.commit(repo, "Initial Commit"; author=test_sig, committer=test_sig)
LibGit2.branch!(repo, "master")
mkpath(joinpath(testpkg_path, "benchmark"))
# Make a small example benchmark file
open(joinpath(testpkg_path, "benchmark", "benchmarks.jl"), "w") do f
print(f,
"""
using BenchmarkTools
SUITE = BenchmarkGroup()
SUITE["trig"] = BenchmarkGroup()
SUITE["trig"]["sin"] = @benchmarkable sin(2.0)
""")
end
LibGit2.add!(repo, "benchmark/benchmarks.jl")
commit_master = LibGit2.commit(repo, "test"; author=test_sig, committer=test_sig)
@testset "getting back original commit / branch" begin
# Test we are on a branch and run benchmark on a commit that we end up back on the branch
LibGit2.branch!(repo, "PR")
touch(joinpath(testpkg_path, "foo"))
LibGit2.add!(repo, "foo")
commit_PR = LibGit2.commit(repo, "PR commit"; author=test_sig, committer=test_sig)
LibGit2.branch!(repo, "master")
PkgBenchmark.benchmarkpkg(TEST_PACKAGE_NAME, "PR"; custom_loadpath=old_pkgdir)
@test LibGit2.branch(repo) == "master"
# Test we are on a commit and run benchmark on another commit and end up on the commit
LibGit2.checkout!(repo, string(commit_master))
PkgBenchmark.benchmarkpkg(TEST_PACKAGE_NAME, "PR"; custom_loadpath=old_pkgdir)
@test LibGit2.revparseid(repo, "HEAD") == commit_master
end
tmp = tempname() * ".json"
# Benchmark dirty repo
cp(joinpath(@__DIR__, "..", "benchmark", "benchmarks.jl"), joinpath(testpkg_path, "benchmark", "benchmarks.jl"); force=true)
LibGit2.add!(repo, "benchmark/benchmarks.jl")
LibGit2.add!(repo, "benchmark/REQUIRE")
@test LibGit2.isdirty(repo)
@test_throws ErrorException PkgBenchmark.benchmarkpkg(TEST_PACKAGE_NAME, "HEAD"; custom_loadpath=old_pkgdir)
results = PkgBenchmark.benchmarkpkg(TEST_PACKAGE_NAME; custom_loadpath=old_pkgdir, resultfile=tmp)
test_structure(PkgBenchmark.benchmarkgroup(results))
@test isfile(tmp)
rm(tmp)
# Commit and benchmark non dirty repo
commitid = LibGit2.commit(repo, "commiting full benchmarks and REQUIRE"; author=test_sig, committer=test_sig)
@test !LibGit2.isdirty(repo)
results = PkgBenchmark.benchmarkpkg(TEST_PACKAGE_NAME, "HEAD"; custom_loadpath=old_pkgdir, resultfile=tmp)
@test PkgBenchmark.commit(results) == string(commitid)
@test PkgBenchmark.juliacommit(results) == Base.GIT_VERSION_INFO.commit
test_structure(PkgBenchmark.benchmarkgroup(results))
@test isfile(tmp)
r = readresults(tmp)
@test r.benchmarkgroup == results.benchmarkgroup
@test r.commit == results.commit
rm(tmp)
# Make a dummy commit and test comparing HEAD and HEAD~
touch(joinpath(testpkg_path, "dummy"))
LibGit2.add!(repo, "dummy")
LibGit2.commit(repo, "dummy commit"; author=test_sig, committer=test_sig)
@testset "judging" begin
judgement = judge(TEST_PACKAGE_NAME, "HEAD~", "HEAD", custom_loadpath=old_pkgdir)
test_structure(PkgBenchmark.benchmarkgroup(judgement))
export_markdown(stdout, judgement)
judgement = judge(TEST_PACKAGE_NAME, "HEAD", custom_loadpath=old_pkgdir)
test_structure(PkgBenchmark.benchmarkgroup(judgement))
end
end