Skip to content

Commit d120625

Browse files
authored
Merge pull request #83 from JuliaTesting/mm/pass-info
Use Pass info in v1.7 and later
2 parents e170f9d + acbbedc commit d120625

15 files changed

+82
-46
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "TestReports"
22
uuid = "dcd651b4-b50a-5b6b-8f22-87e9f253a252"
3-
version = "0.6.3"
3+
version = "0.7.0"
44

55
[deps]
66
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ to report an test failure in [DataDepsGenerators.jl](https://github.com/oxinabox
4949

5050
![Screenshot of GoCD web-interface showing failing tests](docs/src/assets/FailingTests.PNG)
5151

52-
The corresponding `testlog.xml` file (after pretty printing) is below.
52+
The corresponding `testlog.xml` file (produced with an earlier version of `TestReports`, and therefore missing some of the new features, and after pretty printing) is below.
5353

5454
```xml
5555
<?xml version="1.0" encoding="UTF-8"?>
@@ -77,8 +77,4 @@ The corresponding `testlog.xml` file (after pretty printing) is below.
7777
<testcase name="pass (info lost)" id="_testcase_id_"/>
7878
</testsuite>
7979
</testsuites>
80-
```
81-
### Using directly
82-
I actually don't recommend using this directly in your tests.
83-
It is more flexible to just keep using the default testset type,
84-
and then use something like the Runner script to generate a wrapper of your tests with this testset around it.
80+
```

docs/src/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ to report an test failure in [DataDepsGenerators.jl](https://github.com/oxinabox
5151

5252
![Screenshot of GoCD web-interface showing failing tests](assets/FailingTests.PNG)
5353

54-
The corresponding `testlog.xml` file (after pretty printing) is below.
54+
The corresponding `testlog.xml` file (produced with an earlier version of `TestReports`, and therefore missing some of the new features, and after pretty printing) is below.
5555

5656
```xml
5757
<?xml version="1.0" encoding="UTF-8"?>

docs/src/manual.md

+8-19
Original file line numberDiff line numberDiff line change
@@ -146,17 +146,6 @@ This script creates a file `testlog.xml` in the current directory.
146146

147147
## Known Limitations
148148

149-
### `Pass` Result Information
150-
151-
When a `Test` passes, the information about the test is not retained in the `Result`.
152-
This means that it cannot be reported, and the testcase for each passing test will be:
153-
154-
```xml
155-
<testcase name="pass (info lost)" id="_testcase_id_"/>
156-
```
157-
158-
This will hopefully be improved in the future - [see Julia#25483](https://github.com/JuliaLang/julia/issues/25483).
159-
160149
### Single Nesting
161150

162151
Julia `TestSet`s can be nested to an arbitary degree, but this is not allowed
@@ -185,16 +174,16 @@ Will generate the following XML (when pretty printed):
185174

186175
```xml
187176
<?xml version="1.0" encoding="UTF-8"?>
188-
<testsuites name="" id="_id_" tests="4" failures="0" errors="0">
189-
<testsuite name="TopLevel/Middle1" id="_id_" tests="2" failures="0" errors="0">
190-
<testcase name="pass (info lost)" id="_testcase_id_"/>
191-
<testcase name="pass (info lost)" id="_testcase_id_"/>
177+
<testsuites tests="4" failures="0" errors="0">
178+
<testsuite name="TopLevel/Middle1" tests="2" failures="0" errors="0" time="0.156" timestamp="2022-03-30T07:55:12.173" hostname="hostname" id="0">
179+
<testcase name="1 == 1" id="1" classname="TopLevel/Middle1" time="0.028"/>
180+
<testcase name="2 == 2" id="2" classname="TopLevel/Middle1" time="0.000"/>
192181
</testsuite>
193-
<testsuite name="TopLevel/Middle2/Inner1" id="_id_" tests="1" failures="0" errors="0">
194-
<testcase name="pass (info lost)" id="_testcase_id_"/>
182+
<testsuite name="TopLevel/Middle2/Inner1" tests="1" failures="0" errors="0" time="0.000" timestamp="2022-03-30T07:55:12.329" hostname="hostname" id="1">
183+
<testcase name="1 == 1" id="1" classname="TopLevel/Middle2/Inner1" time="0.000"/>
195184
</testsuite>
196-
<testsuite name="TopLevel" id="_id_" tests="1" failures="0" errors="0">
197-
<testcase name="pass (info lost)" id="_testcase_id_"/>
185+
<testsuite name="TopLevel" tests="1" failures="0" errors="0" time="0.156" timestamp="2022-03-30T07:55:12.173" hostname="hostname" id="2">
186+
<testcase name="1 == 1" id="1" classname="TopLevel" time="0.000"/>
198187
</testsuite>
199188
</testsuites>
200189
```

src/testsets.jl

+10
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ For a `Result`, return Dates.Millisecond(0).
2727
time_taken(result::ReportingResult) = result.time_taken
2828
time_taken(result::Result) = Dates.Millisecond(0)
2929

30+
"""
31+
ispass(result)
32+
33+
Return `true` if `result` is a `Pass` or a `ReportingResult{Pass}`, otherwise
34+
return `false`.
35+
"""
36+
ispass(::Pass) = true
37+
ispass(result::ReportingResult{Pass}) = ispass(result.result)
38+
ispass(result) = false
39+
3040
"""
3141
ReportingTestSet
3242

src/to_xml.jl

+13-5
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ function to_xml(ts::AbstractTestSet)
199199
set_attribute!(x_testcase, "classname", ts.description)
200200
set_attribute!(x_testcase, "time", time_taken(result)::Millisecond)
201201
# Set attributes which require variables in this scope
202-
(result isa Pass || result isa ReportingResult{Pass}) && set_attribute!(x_testcase, "name", x_testcase["name"] * " (Test $total_ntests)")
202+
ntests > 0 && set_attribute!(x_testcase, "id", total_ntests) # Ignore both testsuites and errors outside of tests
203+
ispass(result) && VERSION < v"1.7.0" && set_attribute!(x_testcase, "name", x_testcase["name"] * " (Test $total_ntests)")
203204
x_testcase
204205
end
205206

@@ -218,9 +219,16 @@ end
218219
Create a testcase node from the result and return it along with
219220
information on number of tests.
220221
"""
221-
function to_xml(res::Pass)
222-
x_testcase = testcase_xml("pass (info lost)", "_testcase_id_", [])
223-
x_testcase, 1, 0, 0 # Increment number of tests by 1
222+
@static if VERSION >= v"1.7.0"
223+
function to_xml(res::Pass)
224+
x_testcase = testcase_xml(res.orig_expr, "_testcase_id_", [])
225+
x_testcase, 1, 0, 0 # Increment number of tests by 1
226+
end
227+
else
228+
function to_xml(res::Pass)
229+
x_testcase = testcase_xml("pass (info lost)", "_testcase_id_", [])
230+
x_testcase, 1, 0, 0 # Increment number of tests by 1
231+
end
224232
end
225233

226234
function to_xml(v::Fail)
@@ -231,7 +239,7 @@ end
231239

232240
function to_xml(v::Broken)
233241
x_testcase = testcase_xml(v, [skip_xml()]) # it is not actually skipped
234-
x_testcase, 0, 0, 0
242+
x_testcase, 1, 0, 0
235243
end
236244

237245
function to_xml(v::Error)

test/recordproperty.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@
6464
TestReports.test(pkg)
6565
end
6666
logfile = joinpath(@__DIR__, "testlog.xml")
67-
@test_reference "references/test_with_properties.txt" open(f->read(f, String), logfile) |> clean_output
67+
test_file = VERSION >= v"1.7.0" ? "references/test_with_properties.txt" : "references/test_with_properties_pre_1_7.txt"
68+
@test_reference test_file open(f->read(f, String), logfile) |> clean_output
6869
end
6970

7071
# Test for warning when ID set twice

test/references/complexexample.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<testsuites tests="18" failures="6" errors="4"><testsuite name="Math/Multiplication" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="0"><testcase name="pass (info lost) (Test 1)" id="_testcase_id_" classname="Math/Multiplication" time="0.0"/><testcase name="1 * 2 == 5" id="_testcase_id_" classname="Math/Multiplication" time="0.0"><failure message="2 == 5" type="test">Test Failed
2+
<testsuites tests="19" failures="6" errors="4"><testsuite name="Math/Multiplication" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="0"><testcase name="1 * 3 == 3" id="1" classname="Math/Multiplication" time="0.0"/><testcase name="1 * 2 == 5" id="2" classname="Math/Multiplication" time="0.0"><failure message="2 == 5" type="test">Test Failed
33
Expression: 1 * 2 == 5
4-
Evaluated: 2 == 5</failure></testcase><testcase name="pass (info lost) (Test 3)" id="_testcase_id_" classname="Math/Multiplication" time="0.0"/></testsuite><testsuite name="Math/addition/negative addition" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="1"><testcase name="pass (info lost) (Test 1)" id="_testcase_id_" classname="Math/addition/negative addition" time="0.0"/><testcase name="1 + -2 == 1" id="_testcase_id_" classname="Math/addition/negative addition" time="0.0"><failure message="-1 == 1" type="test">Test Failed
4+
Evaluated: 2 == 5</failure></testcase><testcase name="1 * 4 == 4" id="3" classname="Math/Multiplication" time="0.0"/></testsuite><testsuite name="Math/addition/negative addition" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="1"><testcase name="1 + -1 == 0" id="1" classname="Math/addition/negative addition" time="0.0"/><testcase name="1 + -2 == 1" id="2" classname="Math/addition/negative addition" time="0.0"><failure message="-1 == 1" type="test">Test Failed
55
Expression: 1 + -2 == 1
6-
Evaluated: -1 == 1</failure></testcase><testcase name="pass (info lost) (Test 3)" id="_testcase_id_" classname="Math/addition/negative addition" time="0.0"/></testsuite><testsuite name="Math/addition" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="2"><testcase name="pass (info lost) (Test 1)" id="_testcase_id_" classname="Math/addition" time="0.0"/><testcase name="1 + 2 == 5" id="_testcase_id_" classname="Math/addition" time="0.0"><failure message="3 == 5" type="test">Test Failed
6+
Evaluated: -1 == 1</failure></testcase><testcase name="10 + -5 == 5" id="3" classname="Math/addition/negative addition" time="0.0"/></testsuite><testsuite name="Math/addition" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="2"><testcase name="1 + 1 == 2" id="1" classname="Math/addition" time="0.0"/><testcase name="1 + 2 == 5" id="2" classname="Math/addition" time="0.0"><failure message="3 == 5" type="test">Test Failed
77
Expression: 1 + 2 == 5
8-
Evaluated: 3 == 5</failure></testcase><testcase name="pass (info lost) (Test 3)" id="_testcase_id_" classname="Math/addition" time="0.0"/></testsuite><testsuite name="Math/other" tests="3" failures="0" errors="3" time="0.0" timestamp="0" hostname="localhost" id="3"><testcase name="sqrt(-1)" id="_testcase_id_" classname="Math/other" time="0.0"><skip/></testcase><error message="Expression evaluated to non-Boolean" type="Expression evaluated to non-Boolean" classname="Math/other" time="0.0"></error><error message="Nooo" type="ErrorException" classname="Math/other" time="0.0">Nooo
9-
</error><error message="Got correct result, please change to @test if no longer broken." type="Unexpected Pass" classname="Math/other" time="0.0"></error></testsuite><testsuite name="Math/Error outside of tests" tests="0" failures="0" errors="1" time="0.0" timestamp="0" hostname="localhost" id="4"><error message="Got exception outside of a @test" type="ErrorException" classname="Math/Error outside of tests" time="0.0">Outside of tests
10-
</error></testsuite><testsuite name="Math/Different failures" tests="2" failures="2" errors="0" time="0.0" timestamp="0" hostname="localhost" id="5"><testcase name="throw(ArgumentError(&quot;1&quot;))" id="_testcase_id_" classname="Math/Different failures" time="0.0"><failure message="Wrong exception type thrown" type="test_throws_wrong">Test Failed
8+
Evaluated: 3 == 5</failure></testcase><testcase name="1 + 4 == 5" id="3" classname="Math/addition" time="0.0"/></testsuite><testsuite name="Math/other" tests="4" failures="0" errors="3" time="0.0" timestamp="0" hostname="localhost" id="3"><testcase name="sqrt(-1)" id="1" classname="Math/other" time="0.0"><skip/></testcase><error message="Expression evaluated to non-Boolean" type="Expression evaluated to non-Boolean" classname="Math/other" time="0.0" id="2"></error><error message="Nooo" type="ErrorException" classname="Math/other" time="0.0" id="3">Nooo
9+
</error><error message="Got correct result, please change to @test if no longer broken." type="Unexpected Pass" classname="Math/other" time="0.0" id="4"></error></testsuite><testsuite name="Math/Error outside of tests" tests="0" failures="0" errors="1" time="0.0" timestamp="0" hostname="localhost" id="4"><error message="Got exception outside of a @test" type="ErrorException" classname="Math/Error outside of tests" time="0.0">Outside of tests
10+
</error></testsuite><testsuite name="Math/Different failures" tests="2" failures="2" errors="0" time="0.0" timestamp="0" hostname="localhost" id="5"><testcase name="throw(ArgumentError(&quot;1&quot;))" id="1" classname="Math/Different failures" time="0.0"><failure message="Wrong exception type thrown" type="test_throws_wrong">Test Failed
1111
Expression: throw(ArgumentError("1"))
1212
Expected: DimensionMismatch
13-
Thrown: ArgumentError</failure></testcase><testcase name="true" id="_testcase_id_" classname="Math/Different failures" time="0.0"><failure message="No exception thrown" type="test_throws_nothing">Test Failed
13+
Thrown: ArgumentError</failure></testcase><testcase name="true" id="2" classname="Math/Different failures" time="0.0"><failure message="No exception thrown" type="test_throws_nothing">Test Failed
1414
Expression: true
1515
Expected: DimensionMismatch
16-
No exception thrown</failure></testcase></testsuite><testsuite name="Math/using function from a module" tests="1" failures="0" errors="0" time="0.0" timestamp="0" hostname="localhost" id="6"><testcase name="pass (info lost) (Test 1)" id="_testcase_id_" classname="Math/using function from a module" time="0.0"/></testsuite><testsuite name="Math" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="7"><testcase name="pass (info lost) (Test 1)" id="_testcase_id_" classname="Math" time="0.0"/><testcase name="sqrt(20) == 5" id="_testcase_id_" classname="Math" time="0.0"><failure message="4.47213595499958 == 5" type="test">Test Failed
16+
No exception thrown</failure></testcase></testsuite><testsuite name="Math/using function from a module" tests="1" failures="0" errors="0" time="0.0" timestamp="0" hostname="localhost" id="6"><testcase name="nthreads() &gt; 0" id="1" classname="Math/using function from a module" time="0.0"/></testsuite><testsuite name="Math" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="7"><testcase name="4 % 2 == 0" id="1" classname="Math" time="0.0"/><testcase name="sqrt(20) == 5" id="2" classname="Math" time="0.0"><failure message="4.47213595499958 == 5" type="test">Test Failed
1717
Expression: sqrt(20) == 5
18-
Evaluated: 4.47213595499958 == 5</failure></testcase><testcase name="pass (info lost) (Test 3)" id="_testcase_id_" classname="Math" time="0.0"/></testsuite></testsuites>
18+
Evaluated: 4.47213595499958 == 5</failure></testcase><testcase name="16 == 16" id="3" classname="Math" time="0.0"/></testsuite></testsuites>
1919

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<testsuites tests="19" failures="6" errors="4"><testsuite name="Math/Multiplication" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="0"><testcase name="pass (info lost) (Test 1)" id="1" classname="Math/Multiplication" time="0.0"/><testcase name="1 * 2 == 5" id="2" classname="Math/Multiplication" time="0.0"><failure message="2 == 5" type="test">Test Failed
3+
Expression: 1 * 2 == 5
4+
Evaluated: 2 == 5</failure></testcase><testcase name="pass (info lost) (Test 3)" id="3" classname="Math/Multiplication" time="0.0"/></testsuite><testsuite name="Math/addition/negative addition" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="1"><testcase name="pass (info lost) (Test 1)" id="1" classname="Math/addition/negative addition" time="0.0"/><testcase name="1 + -2 == 1" id="2" classname="Math/addition/negative addition" time="0.0"><failure message="-1 == 1" type="test">Test Failed
5+
Expression: 1 + -2 == 1
6+
Evaluated: -1 == 1</failure></testcase><testcase name="pass (info lost) (Test 3)" id="3" classname="Math/addition/negative addition" time="0.0"/></testsuite><testsuite name="Math/addition" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="2"><testcase name="pass (info lost) (Test 1)" id="1" classname="Math/addition" time="0.0"/><testcase name="1 + 2 == 5" id="2" classname="Math/addition" time="0.0"><failure message="3 == 5" type="test">Test Failed
7+
Expression: 1 + 2 == 5
8+
Evaluated: 3 == 5</failure></testcase><testcase name="pass (info lost) (Test 3)" id="3" classname="Math/addition" time="0.0"/></testsuite><testsuite name="Math/other" tests="4" failures="0" errors="3" time="0.0" timestamp="0" hostname="localhost" id="3"><testcase name="sqrt(-1)" id="1" classname="Math/other" time="0.0"><skip/></testcase><error message="Expression evaluated to non-Boolean" type="Expression evaluated to non-Boolean" classname="Math/other" time="0.0" id="2"></error><error message="Nooo" type="ErrorException" classname="Math/other" time="0.0" id="3">Nooo
9+
</error><error message="Got correct result, please change to @test if no longer broken." type="Unexpected Pass" classname="Math/other" time="0.0" id="4"></error></testsuite><testsuite name="Math/Error outside of tests" tests="0" failures="0" errors="1" time="0.0" timestamp="0" hostname="localhost" id="4"><error message="Got exception outside of a @test" type="ErrorException" classname="Math/Error outside of tests" time="0.0">Outside of tests
10+
</error></testsuite><testsuite name="Math/Different failures" tests="2" failures="2" errors="0" time="0.0" timestamp="0" hostname="localhost" id="5"><testcase name="throw(ArgumentError(&quot;1&quot;))" id="1" classname="Math/Different failures" time="0.0"><failure message="Wrong exception type thrown" type="test_throws_wrong">Test Failed
11+
Expression: throw(ArgumentError("1"))
12+
Expected: DimensionMismatch
13+
Thrown: ArgumentError</failure></testcase><testcase name="true" id="2" classname="Math/Different failures" time="0.0"><failure message="No exception thrown" type="test_throws_nothing">Test Failed
14+
Expression: true
15+
Expected: DimensionMismatch
16+
No exception thrown</failure></testcase></testsuite><testsuite name="Math/using function from a module" tests="1" failures="0" errors="0" time="0.0" timestamp="0" hostname="localhost" id="6"><testcase name="pass (info lost) (Test 1)" id="1" classname="Math/using function from a module" time="0.0"/></testsuite><testsuite name="Math" tests="3" failures="1" errors="0" time="0.0" timestamp="0" hostname="localhost" id="7"><testcase name="pass (info lost) (Test 1)" id="1" classname="Math" time="0.0"/><testcase name="sqrt(20) == 5" id="2" classname="Math" time="0.0"><failure message="4.47213595499958 == 5" type="test">Test Failed
17+
Expression: sqrt(20) == 5
18+
Evaluated: 4.47213595499958 == 5</failure></testcase><testcase name="pass (info lost) (Test 3)" id="3" classname="Math" time="0.0"/></testsuite></testsuites>
19+

test/references/singlenest.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<testsuites tests="1" failures="0" errors="0"><testsuite name="a" tests="1" failures="0" errors="0" time="0.0" timestamp="0" hostname="localhost" id="0"><testcase name="pass (info lost) (Test 1)" id="_testcase_id_" classname="a" time="0.0"/></testsuite></testsuites>
2+
<testsuites tests="1" failures="0" errors="0"><testsuite name="a" tests="1" failures="0" errors="0" time="0.0" timestamp="0" hostname="localhost" id="0"><testcase name="1 == 1" id="1" classname="a" time="0.0"/></testsuite></testsuites>
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<testsuites tests="1" failures="0" errors="0"><testsuite name="a" tests="1" failures="0" errors="0" time="0.0" timestamp="0" hostname="localhost" id="0"><testcase name="pass (info lost) (Test 1)" id="1" classname="a" time="0.0"/></testsuite></testsuites>

0 commit comments

Comments
 (0)