-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test-level report granularity (#581)
Signed-off-by: Marcin Owsiany <[email protected]>
- Loading branch information
Showing
9 changed files
with
172 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,12 @@ | ||
/kuttl-ouput-step-json.txt | ||
/kuttl-ouput-step-xml.txt | ||
/kuttl-ouput-test-json.txt | ||
/kuttl-ouput-test-xml.txt | ||
/kuttl-report-step.json | ||
/kuttl-report-step.json.normalized | ||
/kuttl-report-step.xml | ||
/kuttl-report-step.xml.normalized | ||
/kuttl-report-test.json | ||
/kuttl-report-test.json.normalized | ||
/kuttl-report-test.xml | ||
/kuttl-report-test.xml.normalized |
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"name": "", | ||
"tests": 6, | ||
"failures": 4, | ||
"time": "1.0", | ||
"testsuite": [ | ||
{ | ||
"tests": 3, | ||
"failures": 2, | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0", | ||
"name": "suite1", | ||
"testcase": [ | ||
{ | ||
"classname": "suite1", | ||
"name": "test0", | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0" | ||
}, | ||
{ | ||
"classname": "suite1", | ||
"name": "test1", | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0", | ||
"failure": { | ||
"text": "command \"echo step stdout\\\\n echo \u003e\u00262 step stderr\\\\n false\" failed, exit status 1", | ||
"message": "failed in step 2-run" | ||
} | ||
}, | ||
{ | ||
"classname": "suite1", | ||
"name": "test2", | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0", | ||
"failure": { | ||
"text": "command \"echo assert stdout\\\\n echo \u003e\u00262 assert stderr\\\\n false\" failed, exit status 1", | ||
"message": "failed in step 1-run" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"tests": 3, | ||
"failures": 2, | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0", | ||
"name": "suite2", | ||
"testcase": [ | ||
{ | ||
"classname": "suite2", | ||
"name": "test0", | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0" | ||
}, | ||
{ | ||
"classname": "suite2", | ||
"name": "test1", | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0", | ||
"failure": { | ||
"text": "command \"echo step stdout\\\\n echo \u003e\u00262 step stderr\\\\n false\" failed, exit status 1", | ||
"message": "failed in step 2-run" | ||
} | ||
}, | ||
{ | ||
"classname": "suite2", | ||
"name": "test2", | ||
"timestamp": "2000-01-01T00:00:00.00000000+00:00", | ||
"time": "1.0", | ||
"failure": { | ||
"text": "command \"echo assert stdout\\\\n echo \u003e\u00262 assert stderr\\\\n false\" failed, exit status 1", | ||
"message": "failed in step 1-run" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<testsuites name="" tests="6" failures="4" time="1.0"> | ||
<testsuite tests="3" failures="2" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" name="suite1"> | ||
<testcase classname="suite1" name="test0" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" assertions="0"></testcase> | ||
<testcase classname="suite1" name="test1" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" assertions="0"> | ||
<failure message="failed in step 2-run" type="">command "echo step stdout\\n echo >&2 step stderr\\n false" failed, exit status 1</failure> | ||
</testcase> | ||
<testcase classname="suite1" name="test2" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" assertions="0"> | ||
<failure message="failed in step 1-run" type="">command "echo assert stdout\\n echo >&2 assert stderr\\n false" failed, exit status 1</failure> | ||
</testcase> | ||
</testsuite> | ||
<testsuite tests="3" failures="2" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" name="suite2"> | ||
<testcase classname="suite2" name="test0" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" assertions="0"></testcase> | ||
<testcase classname="suite2" name="test1" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" assertions="0"> | ||
<failure message="failed in step 2-run" type="">command "echo step stdout\\n echo >&2 step stderr\\n false" failed, exit status 1</failure> | ||
</testcase> | ||
<testcase classname="suite2" name="test2" timestamp="2000-01-01T00:00:00.00000000+00:00" time="1.0" assertions="0"> | ||
<failure message="failed in step 1-run" type="">command "echo assert stdout\\n echo >&2 assert stderr\\n false" failed, exit status 1</failure> | ||
</testcase> | ||
</testsuite> | ||
</testsuites> |