-
Notifications
You must be signed in to change notification settings - Fork 2
Support custom records #51
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
Draft
vchuravy
wants to merge
6
commits into
main
Choose a base branch
from
vc/custom_record
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
638117d
Support custom records
vchuravy bb47b34
fixup! Support custom records
vchuravy ed34667
fix test for CustomTestRecord
vchuravy f45b757
public ...
vchuravy e2ad6b1
Merge branch 'main' into vc/custom_record
giordano b4bdff5
refactor inner
vchuravy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| name = "ParallelTestRunner" | ||
| uuid = "d3525ed8-44d0-4b2c-a655-542cee43accc" | ||
| authors = ["Valentin Churavy <[email protected]>"] | ||
| version = "1.0.2" | ||
| version = "1.1.0" | ||
|
|
||
| [deps] | ||
| Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,7 @@ | ||||||
| module ParallelTestRunner | ||||||
|
|
||||||
| export runtests, addworkers, addworker | ||||||
| # public extract_flag! | ||||||
|
|
||||||
| using Distributed | ||||||
| using Dates | ||||||
|
|
@@ -100,7 +101,7 @@ struct TestIOContext | |||||
| rss_align::Int | ||||||
| end | ||||||
|
|
||||||
| function test_IOContext(::Type{TestRecord}, stdout::IO, stderr::IO, lock::ReentrantLock, name_align::Int) | ||||||
| function test_IOContext(::Type{<:AbstractTestRecord}, stdout::IO, stderr::IO, lock::ReentrantLock, name_align::Int) | ||||||
| elapsed_align = textwidth("Time (s)") | ||||||
| gc_align = textwidth("GC (s)") | ||||||
| percent_align = textwidth("GC %") | ||||||
|
|
@@ -115,7 +116,7 @@ function test_IOContext(::Type{TestRecord}, stdout::IO, stderr::IO, lock::Reentr | |||||
| ) | ||||||
| end | ||||||
|
|
||||||
| function print_header(::Type{TestRecord}, ctx::TestIOContext, testgroupheader, workerheader) | ||||||
| function print_header(::Type{<:AbstractTestRecord}, ctx::TestIOContext, testgroupheader, workerheader) | ||||||
| lock(ctx.lock) | ||||||
| try | ||||||
| printstyled(ctx.stdout, " "^(ctx.name_align + textwidth(testgroupheader) - 3), " │ ") | ||||||
|
|
@@ -129,7 +130,7 @@ function print_header(::Type{TestRecord}, ctx::TestIOContext, testgroupheader, w | |||||
| end | ||||||
| end | ||||||
|
|
||||||
| function print_test_started(::Type{TestRecord}, wrkr, test, ctx::TestIOContext) | ||||||
| function print_test_started(::Type{<:AbstractTestRecord}, wrkr, test, ctx::TestIOContext) | ||||||
| lock(ctx.lock) | ||||||
| try | ||||||
| printstyled(ctx.stdout, test, lpad("($wrkr)", ctx.name_align - textwidth(test) + 1, " "), " │", color = :white) | ||||||
|
|
@@ -143,7 +144,7 @@ function print_test_started(::Type{TestRecord}, wrkr, test, ctx::TestIOContext) | |||||
| end | ||||||
| end | ||||||
|
|
||||||
| function print_test_finished(record::TestRecord, wrkr, test, ctx::TestIOContext) | ||||||
| function print_test_finished(record::AbstractTestRecord, wrkr, test, ctx::TestIOContext) | ||||||
| lock(ctx.lock) | ||||||
| try | ||||||
| printstyled(ctx.stdout, test, color = :white) | ||||||
|
|
@@ -158,7 +159,7 @@ function print_test_finished(record::TestRecord, wrkr, test, ctx::TestIOContext) | |||||
| alloc_str = @sprintf("%5.2f", record.bytes / 2^20) | ||||||
| printstyled(ctx.stdout, lpad(alloc_str, ctx.alloc_align, " "), " │ ", color = :white) | ||||||
|
|
||||||
| rss_str = @sprintf("%5.2f", record.rss / 2^20) | ||||||
| rss_str = @sprintf("%5.2f", memory_usage(record) / 2^20) | ||||||
| printstyled(ctx.stdout, lpad(rss_str, ctx.rss_align, " "), " │\n", color = :white) | ||||||
|
|
||||||
| flush(ctx.stdout) | ||||||
|
|
@@ -167,7 +168,7 @@ function print_test_finished(record::TestRecord, wrkr, test, ctx::TestIOContext) | |||||
| end | ||||||
| end | ||||||
|
|
||||||
| function print_test_failed(record::TestRecord, wrkr, test, ctx::TestIOContext) | ||||||
| function print_test_failed(record::AbstractTestRecord, wrkr, test, ctx::TestIOContext) | ||||||
| lock(ctx.lock) | ||||||
| try | ||||||
| printstyled(ctx.stderr, test, color = :red) | ||||||
|
|
@@ -193,7 +194,7 @@ function print_test_failed(record::TestRecord, wrkr, test, ctx::TestIOContext) | |||||
| end | ||||||
| end | ||||||
|
|
||||||
| function print_test_crashed(::Type{TestRecord}, wrkr, test, ctx::TestIOContext) | ||||||
| function print_test_crashed(::Type{<:AbstractTestRecord}, wrkr, test, ctx::TestIOContext) | ||||||
| lock(ctx.lock) | ||||||
| try | ||||||
| printstyled(ctx.stderr, test, color = :red) | ||||||
|
|
@@ -212,9 +213,9 @@ end | |||||
|
|
||||||
| # | ||||||
| # entry point | ||||||
| # | ||||||
| # | ||||||
|
|
||||||
| function runtest(::Type{TestRecord}, f, name, init_code, color) | ||||||
| function runtest(::Type{TestRecord}, f, name, init_code, color, custom_args) | ||||||
| function inner() | ||||||
| # generate a temporary module to execute the tests in | ||||||
| mod = @eval(Main, module $(gensym(name)) end) | ||||||
|
|
@@ -466,7 +467,8 @@ Workers are automatically recycled when they exceed memory limits to prevent out | |||||
| issues during long test runs. The memory limit is set based on system architecture. | ||||||
| """ | ||||||
| function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = TestRecord, | ||||||
| custom_tests::Dict{String, Expr}=Dict{String, Expr}(), init_code = :(), | ||||||
| custom_tests::Dict{String, Expr}=Dict{String, Expr}(), init_code = :(), | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unrelated whitespace change
Suggested change
|
||||||
| custom_record_init = :(), custom_args = (;), | ||||||
| test_worker = Returns(nothing), stdout = Base.stdout, stderr = Base.stderr) | ||||||
| # | ||||||
| # set-up | ||||||
|
|
@@ -789,8 +791,9 @@ function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = T | |||||
| put!(printer_channel, (:started, test, wrkr)) | ||||||
| result = try | ||||||
| Distributed.remotecall_eval(Main, wrkr, :(import ParallelTestRunner)) | ||||||
| custom_record_init != :() && Distributed.remotecall_eval(Main, wrkr, custom_record_init) | ||||||
| remotecall_fetch(runtest, wrkr, RecordType, test_runners[test], test, | ||||||
| init_code, io_ctx.color) | ||||||
| init_code, io_ctx.color, custom_args) | ||||||
| catch ex | ||||||
| if isa(ex, InterruptException) | ||||||
| # the worker got interrupted, signal other tasks to stop | ||||||
|
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,6 +75,99 @@ end | |
| @test contains(str, "SUCCESS") | ||
| end | ||
|
|
||
| @testset "custom testrecord" begin | ||
| custom_record_init = quote | ||
| import ParallelTestRunner: Test | ||
| struct CustomTestRecord <: ParallelTestRunner.AbstractTestRecord | ||
| # TODO: Would it be better to wrap "ParallelTestRunner.TestRecord " | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @maleadt this is probably the biggest open design question. |
||
| value::Any # AbstractTestSet or TestSetException | ||
| output::String # captured stdout/stderr | ||
|
|
||
| # stats | ||
| time::Float64 | ||
| bytes::UInt64 | ||
| gctime::Float64 | ||
| rss::UInt64 | ||
| end | ||
| function ParallelTestRunner.memory_usage(rec::CustomTestRecord) | ||
| return rec.rss | ||
| end | ||
| function ParallelTestRunner.test_IOContext(::Type{CustomTestRecord}, stdout::IO, stderr::IO, lock::ReentrantLock, name_align::Int64) | ||
| return ParallelTestRunner.test_IOContext(ParallelTestRunner.TestRecord, stdout, stderr, lock, name_align) | ||
| end | ||
| function ParallelTestRunner.runtest(::Type{CustomTestRecord}, f, name, init_code, color, (; say_hello)) | ||
| function inner() | ||
| # generate a temporary module to execute the tests in | ||
| mod = Core.eval(Main, Expr(:module, true, gensym(name), Expr(:block))) | ||
| @eval(mod, import ParallelTestRunner: Test, Random) | ||
| @eval(mod, using .Test, .Random) | ||
|
|
||
| Core.eval(mod, init_code) | ||
|
|
||
| data = @eval mod begin | ||
| GC.gc(true) | ||
| Random.seed!(1) | ||
|
|
||
| mktemp() do path, io | ||
| stats = redirect_stdio(stdout=io, stderr=io) do | ||
| @timed try | ||
| # Since we are in a double quote we need to use this form to escape `$` | ||
| if $(Expr(:$, :say_hello)) | ||
| println("Hello from test '" * $(Expr(:$, :name)) * "'") | ||
| end | ||
| @testset $(Expr(:$, :name)) begin | ||
| $(Expr(:$, :f)) | ||
| end | ||
| catch err | ||
| isa(err, Test.TestSetException) || rethrow() | ||
|
|
||
| # return the error to package it into a TestRecord | ||
| err | ||
| end | ||
| end | ||
| close(io) | ||
| output = read(path, String) | ||
| (; testset=stats.value, output, stats.time, stats.bytes, stats.gctime) | ||
|
|
||
| end | ||
| end | ||
|
|
||
| # process results | ||
| rss = Sys.maxrss() | ||
| record = CustomTestRecord(data..., rss) | ||
|
|
||
| GC.gc(true) | ||
| return record | ||
| end | ||
|
|
||
| @static if VERSION >= v"1.13.0-DEV.1044" | ||
vchuravy marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| @with Test.TESTSET_PRINT_ENABLE => false begin | ||
| inner() | ||
| end | ||
| else | ||
| old_print_setting = Test.TESTSET_PRINT_ENABLE[] | ||
| Test.TESTSET_PRINT_ENABLE[] = false | ||
| try | ||
| inner() | ||
| finally | ||
| Test.TESTSET_PRINT_ENABLE[] = old_print_setting | ||
| end | ||
| end | ||
| end | ||
| end # quote | ||
| eval(custom_record_init) | ||
|
|
||
| io = IOBuffer() | ||
|
|
||
| runtests(ParallelTestRunner, ["--verbose"]; custom_record_init, RecordType=CustomTestRecord, custom_args=(; say_hello=true), stdout=io, stderr=io) | ||
| str = String(take!(io)) | ||
|
|
||
| @test contains(str, r"basic .+ started at") | ||
| @test contains(str, r"Hello from test 'basic'") | ||
| @test contains(str, "SUCCESS") | ||
| end | ||
|
|
||
|
|
||
| @testset "failing test" begin | ||
| custom_tests = Dict( | ||
| "failing test" => quote | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we passing color here?