Skip to content

Put the entire test suite inside a top-level @testset #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 40 additions & 37 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,44 @@

using Distributed, Test, SlurmClusterManager

# test that slurm is available
@test !(Sys.which("sinfo") === nothing)

# submit job
# project should point to top level dir so that SlurmClusterManager is available to script.jl
project_path = abspath(joinpath(@__DIR__, ".."))
println("project_path = $project_path")
jobid = withenv("JULIA_PROJECT"=>project_path) do
strip(read(`sbatch --export=ALL --parsable -n 4 -o test.out script.jl`, String))
end
println("jobid = $jobid")

# get job state from jobid
getjobstate = jobid -> begin
cmd = Cmd(`scontrol show jobid=$jobid`, ignorestatus=true)
info = read(cmd, String)
state = match(r"JobState=(\S*)", info)
return state === nothing ? nothing : state.captures[1]
end

# wait for job to complete
status = timedwait(60.0, pollint=1.0) do
@testset "SlurmClusterManager.jl" begin
# test that slurm is available
@test !(Sys.which("sinfo") === nothing)

# submit job
# project should point to top level dir so that SlurmClusterManager is available to script.jl
project_path = abspath(joinpath(@__DIR__, ".."))
println("project_path = $project_path")
jobid = withenv("JULIA_PROJECT"=>project_path) do
strip(read(`sbatch --export=ALL --parsable -n 4 -o test.out script.jl`, String))
end
println("jobid = $jobid")

# get job state from jobid
getjobstate = jobid -> begin
cmd = Cmd(`scontrol show jobid=$jobid`, ignorestatus=true)
info = read(cmd, String)
state = match(r"JobState=(\S*)", info)
return state === nothing ? nothing : state.captures[1]
end

# wait for job to complete
status = timedwait(60.0, pollint=1.0) do
state = getjobstate(jobid)
state == nothing && return false
println("jobstate = $state")
return state == "COMPLETED" || state == "FAILED"
end

state = getjobstate(jobid)
state == nothing && return false
println("jobstate = $state")
return state == "COMPLETED" || state == "FAILED"
end

state = getjobstate(jobid)

# check that job finished running within timelimit (either completed or failed)
@test status == :ok
@test state == "COMPLETED"

# print job output
output = read("test.out", String)
println("script output:")
println(output)

# check that job finished running within timelimit (either completed or failed)
@test status == :ok
@test state == "COMPLETED"

# print job output
output = read("test.out", String)
println("script output:")
println(output)

end # testset "SlurmClusterManager.jl"
Loading