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
|
function temp_pkg_dir(fn::Function)
# Used in tests below to setup and teardown a sandboxed package directory
const tmpdir = ENV["JULIA_PKGDIR"] = abspath(string("tmp.",randstring()))
@test !isdir(Pkg.dir())
try
Pkg.init()
@test isdir(Pkg.dir())
Pkg.resolve()
fn()
finally
rm(tmpdir, recursive=true)
end
end
# Test adding a removing a package
temp_pkg_dir() do
@test isempty(Pkg.installed())
Pkg.add("Example")
@test [keys(Pkg.installed())...] == ["Example"]
Pkg.rm("Example")
@test isempty(Pkg.installed())
end
# testing a package with test dependencies causes them to be installed for the duration of the test
temp_pkg_dir() do
Pkg.generate("PackageWithTestDependencies", "MIT", config=["user.name"=>"Julia Test", "user.email"=>"test@julialang.org"])
@test [keys(Pkg.installed())...] == ["PackageWithTestDependencies"]
isdir(Pkg.dir("PackageWithTestDependencies","test")) || mkdir(Pkg.dir("PackageWithTestDependencies","test"))
open(Pkg.dir("PackageWithTestDependencies","test","REQUIRE"),"w") do f
println(f,"Example")
end
open(Pkg.dir("PackageWithTestDependencies","test","runtests.jl"),"w") do f
println(f,"using Base.Test")
println(f,"@test haskey(Pkg.installed(), \"Example\")")
end
Pkg.resolve()
@test [keys(Pkg.installed())...] == ["PackageWithTestDependencies"]
Pkg.test("PackageWithTestDependencies")
@test [keys(Pkg.installed())...] == ["PackageWithTestDependencies"]
end
# testing a package with no runtests.jl errors
temp_pkg_dir() do
Pkg.generate("PackageWithNoTests", "MIT", config=["user.name"=>"Julia Test", "user.email"=>"test@julialang.org"])
if isfile(Pkg.dir("PackageWithNoTests", "test", "runtests.jl"))
rm(Pkg.dir("PackageWithNoTests", "test", "runtests.jl"))
end
try
Pkg.test("PackageWithNoTests")
catch err
@test err.msg == "PackageWithNoTests did not provide a test/runtests.jl file"
end
end
# testing a package with failing tests errors
temp_pkg_dir() do
Pkg.generate("PackageWithFailingTests", "MIT", config=["user.name"=>"Julia Test", "user.email"=>"test@julialang.org"])
isdir(Pkg.dir("PackageWithFailingTests","test")) || mkdir(Pkg.dir("PackageWithFailingTests","test"))
open(Pkg.dir("PackageWithFailingTests", "test", "runtests.jl"),"w") do f
println(f,"using Base.Test")
println(f,"@test false")
end
try
Pkg.test("PackageWithFailingTests")
catch err
@test err.msg == "PackageWithFailingTests had test errors"
end
end
|