@@ -4,33 +4,29 @@ using Test
4
4
using Dates
5
5
using LibGit2
6
6
using Random
7
+ using Pkg
7
8
8
9
const BENCHMARK_DIR = joinpath (@__DIR__ , " .." , " benchmark" )
9
10
10
11
function temp_pkg_dir (fn:: Function ; tmp_dir= joinpath (tempdir (), randstring ()),
11
12
remove_tmp_dir:: Bool = true , initialize:: Bool = true )
12
13
# Used in tests below to set up and tear down a sandboxed package directory
13
- withenv (" JULIA_PKGDIR" => tmp_dir) do
14
- @test ! isdir (Pkg. dir ())
15
- try
16
- if initialize
17
- Pkg. init ()
18
- @test isdir (Pkg. dir ())
19
- Pkg. resolve ()
20
- else
21
- mkpath (Pkg. dir ())
22
- end
23
- fn ()
24
- finally
25
- remove_tmp_dir && try rm (tmp_dir, recursive= true ) end
26
- end
14
+ try
15
+ # TODO (nhdaly): Is this right??
16
+ Pkg. generate (tmp_dir)
17
+ Pkg. activate (tmp_dir)
18
+ Pkg. instantiate ()
19
+ fn ()
20
+ finally
21
+ # TODO (nhdaly): Is there a way to re-activate the previous environment?
22
+ Pkg. activate ()
23
+ remove_tmp_dir && try rm (tmp_dir, recursive= true ) catch end
27
24
end
28
25
end
29
26
30
27
function test_structure (g)
31
28
@test g |> keys |> collect |> Set == [" utf8" , " trigonometry" ] |> Set
32
29
@test g[" utf8" ] |> keys |> collect |> Set == [" join" , " plots" , " replace" ] |> Set
33
- @test g[" utf8" ][" plots" ] |> keys |> collect == [" fnplot" ]
34
30
35
31
_keys = Set (vec ([string ((string (f), x)) for x in (0.0 , pi ), f in (sin, cos, tan)]))
36
32
@test g[" trigonometry" ][" circular" ] |> keys |> collect |> Set == _keys
@@ -48,17 +44,19 @@ const TEST_PACKAGE_NAME = "Example"
48
44
49
45
# Set up a test package in a temp folder that we use to test things on
50
46
tmp_dir = joinpath (tempdir (), randstring ())
51
- old_pkgdir = Pkg. dir ()
47
+ old_pkgdir = Pkg. depots ()[ 1 ]
52
48
53
49
temp_pkg_dir (;tmp_dir = tmp_dir) do
54
50
test_sig
= LibGit2
. Signature (
" TEST" ,
" [email protected] " ,
round (
time (); digits
= 0 ),
0 )
55
- Pkg. add (TEST_PACKAGE_NAME)
51
+ full_repo_path = joinpath (tmp_dir, TEST_PACKAGE_NAME)
52
+ Pkg. generate (full_repo_path)
53
+ Pkg. develop (PackageSpec (path= full_repo_path))
56
54
57
55
@testset " benchmarkconfig" begin
58
56
PkgBenchmark. _withtemp (tempname ()) do f
59
57
str = """
60
58
using BenchmarkTools
61
- using Base. Test
59
+ using Test
62
60
SUITE = BenchmarkGroup()
63
61
SUITE["foo"] = @benchmarkable 1+1
64
62
@@ -70,14 +68,16 @@ temp_pkg_dir(;tmp_dir = tmp_dir) do
70
68
end
71
69
72
70
config = BenchmarkConfig (juliacmd = ` $(joinpath (Sys. BINDIR, Base. julia_exename ())) -O3` ,
73
- env = Dict (" JL_PKGBENCHMARK_TEST_ENV" => 10 ))
71
+ env = Dict (" JL_PKGBENCHMARK_TEST_ENV" => 10 ))
74
72
@test typeof (benchmarkpkg (TEST_PACKAGE_NAME, config, script= f; custom_loadpath= old_pkgdir)) == BenchmarkResults
75
- end
76
73
end
74
+ end
77
75
78
76
# Make a commit with a small benchmarks.jl file
79
77
testpkg_path = Pkg. dir (TEST_PACKAGE_NAME)
78
+ LibGit2. init (testpkg_path)
80
79
repo = LibGit2. GitRepo (testpkg_path)
80
+ initial_commit = LibGit2. commit (repo, " Initial Commit" ; author= test_sig, committer= test_sig)
81
81
LibGit2. branch! (repo, " master" )
82
82
83
83
@@ -117,7 +117,6 @@ temp_pkg_dir(;tmp_dir = tmp_dir) do
117
117
118
118
# Benchmark dirty repo
119
119
cp (joinpath (@__DIR__ , " .." , " benchmark" , " benchmarks.jl" ), joinpath (testpkg_path, " benchmark" , " benchmarks.jl" ); force= true )
120
- cp (joinpath (@__DIR__ , " .." , " benchmark" , " REQUIRE" ), joinpath (testpkg_path, " benchmark" , " REQUIRE" ))
121
120
LibGit2. add! (repo, " benchmark/benchmarks.jl" )
122
121
LibGit2. add! (repo, " benchmark/REQUIRE" )
123
122
@test LibGit2. isdirty (repo)
0 commit comments