This repository has been archived by the owner on Dec 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Add HTML report specification. #19
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Terms | ||
|
||
* Test is a single functionality check. | ||
* Properties: | ||
* package name; | ||
* class name; | ||
* name; | ||
* duration; | ||
* log; | ||
* stacktrace (optional); | ||
* completion status (passed | failed | ignored); | ||
* device name; | ||
* list of properties — property is a key-value pair; | ||
* list of files; | ||
* list of screenshots. | ||
* Test suite is a combination of all tests available. | ||
* Properties: | ||
* list of tests; | ||
* success tests count; | ||
* failure tests count; | ||
* ignored tests count; | ||
* list of devices: | ||
* device id; | ||
* instrumentation output; | ||
* logcat; | ||
* duration. | ||
* Test suite can be run different ways. | ||
* Single device — just a single run of all tests in a test suite. | ||
* Multiple devices. | ||
* Sharding — all tests in a test suite are being split evenly between all devices. | ||
* Duplicating — all tests in a test suite are being run the same way on each device available. | ||
|
||
# Report Pages | ||
|
||
## Device List | ||
|
||
This page should be skipped if sharding was used to run the test suite. | ||
|
||
Contains a list of items with following properties: | ||
|
||
* device name; | ||
* test run duration; | ||
* instrumentation output; | ||
* logcat output; | ||
* test suite success tests count; | ||
* test suite failure tests count; | ||
* test suite ignored tests count. | ||
|
||
Available actions: | ||
|
||
* click on the list item opens the Test Suite page. | ||
|
||
## Test Suite | ||
|
||
Contains following blocks from top to bottom. | ||
|
||
* Summary with following properties: | ||
* success tests count; | ||
* failure tests count; | ||
* ignored tests count; | ||
* duration. | ||
* Search input. | ||
* List of tests with following properties: | ||
* package name; | ||
* class name; | ||
* name; | ||
* device name. | ||
|
||
Available actions: | ||
|
||
* click on the list item opens the Test page; | ||
* changing search input contents changes list of tests content. | ||
|
||
## Test | ||
|
||
Contains following blocks from top to bottom. | ||
|
||
* Summary: | ||
* package name; | ||
* class name; | ||
* name; | ||
* device name; | ||
* duration. | ||
* Properties: | ||
* list of key-value pairs. | ||
* Files: | ||
* list of file links. | ||
* Screenshots: | ||
* list of screenshot images. | ||
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. grid 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. |
||
* Log. | ||
|
||
Available actions: | ||
|
||
* click on a file starts its downloading; | ||
* click on a screenshot opens in a new tab full-size. |
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.
(for now simple text search)