class TreeReporter(Reporter): (source)
Constructor: TreeReporter(stream, *args, **kwargs)
Print out the tests in the form a tree.
Tests are indented according to which class and module they belong. Results are printed in ANSI color.
Method | __init__ |
Undocumented |
Method | add |
Called when a test raises an error. If realtime is set, then it prints the error to the stream. |
Method | add |
Report that the given test failed, and was expected to do so. |
Method | add |
Called when a test fails. If realtime is set, then it prints the error to the stream. |
Method | add |
Report that the given test was skipped. |
Method | add |
Report that the given test succeeded. |
Method | add |
Report that the given test succeeded against expectations. |
Method | cleanup |
Undocumented |
Method | end |
Print 'message' in the given color. |
Method | get |
Return the name of the method which 'test' represents. This is what gets displayed in the leaves of the tree. |
Method | start |
Called when test starts. Writes the tests name to the stream using a tree format. |
Method | up |
Undocumented |
Constant | ERROR |
Undocumented |
Constant | FAILURE |
Undocumented |
Constant | SKIP |
Undocumented |
Constant | SUCCESS |
Undocumented |
Constant | TODO |
Undocumented |
Constant | TODONE |
Undocumented |
Class Variable | columns |
Undocumented |
Class Variable | indent |
Undocumented |
Instance Variable | current |
Undocumented |
Method | _get |
Return a list of all non-leaf segments to display in the tree. |
Method | _print |
Print a line summarising the test results to the stream, and color the status result. |
Method | _test |
Write the name of the test to the stream, indenting it appropriately. |
Method | _write |
Safely write to the reporter's stream. |
Instance Variable | _colorizer |
Undocumented |
Instance Variable | _last |
Undocumented |
Inherited from Reporter
:
Method | done |
Summarize the result of the test run. |
Instance Variable | realtime |
Undocumented |
Instance Variable | tbformat |
Undocumented |
Method | _format |
Undocumented |
Method | _get |
Return a formatted count of tests status results. |
Method | _group |
Group tests together based on their results. |
Method | _observe |
Observe warning events and write them to self._stream. |
Method | _print |
Print all of the non-success results to the stream in full. |
Method | _print |
Undocumented |
Method | _print |
Print a group of errors to the stream. |
Method | _print |
Undocumented |
Method | _trim |
Trim frames to remove internal paths. |
Method | _writeln |
Safely write a line to the reporter's stream. Newline is appended to the format string. |
Class Variable | _double |
Undocumented |
Class Variable | _separator |
Undocumented |
Instance Variable | _publisher |
The log publisher which will be observed for warning events. |
Instance Variable | _start |
The time when the first test was started. It defaults to None , which means that no test was actually launched. |
Instance Variable | _stream |
Undocumented |
Instance Variable | _warning |
A set of tuples of warning message (file, line, text, category) which have already been written to the output stream during the currently executing test. This is used to avoid writing duplicates of the same warning to the output stream. |
Inherited from TestResult
(via Reporter
):
Method | __repr__ |
Undocumented |
Method | stop |
This must be called after the given test is completed. |
Method | was |
Report whether or not this test suite was successful or not. |
Class Variable | __test__ |
Undocumented |
Instance Variable | expected |
Undocumented |
Instance Variable | skips |
Undocumented |
Instance Variable | successes |
count the number of successes achieved by the test run. |
Instance Variable | unexpected |
Undocumented |
Method | _get |
Convert a sys.exc_info()-style tuple to a Failure , if necessary. |
Method | _get |
Undocumented |
Constant | _DEFAULT |
Undocumented |
Instance Variable | _last |
The duration of the current test run. It defaults to None , which means that the test was skipped. |
Instance Variable | _test |
Undocumented |
Instance Variable | _timings |
Undocumented |
twisted.trial.reporter.Reporter.addError
Called when a test raises an error. If realtime is set, then it prints the error to the stream.
Parameters | |
*args | Undocumented |
test | ITestCase that raised the error. |
error | failure.Failure containing the error. |
Report that the given test failed, and was expected to do so.
In Trial, tests can be marked 'todo'. That is, they are expected to fail.
Parameters | |
*args | Undocumented |
test:pyunit.TestCase | Undocumented |
error:Failure | Undocumented |
todo:unittest.Todo , or None , in which case a default todo message is provided. | Undocumented |
Called when a test fails. If realtime is set, then it prints the error to the stream.
Parameters | |
*args | Undocumented |
test | ITestCase that failed. |
fail | failure.Failure containing the error. |
Report that the given test was skipped.
In Trial, tests can be 'skipped'. Tests are skipped mostly because there is some platform or configuration issue that prevents them from being run correctly.
Parameters | |
*args | Undocumented |
test:pyunit.TestCase | Undocumented |
reason:str | Undocumented |
Report that the given test succeeded against expectations.
In Trial, tests can be marked 'todo'. That is, they are expected to fail. When a test that is expected to fail instead succeeds, it should call this method to report the unexpected success.
Parameters | |
*args | Undocumented |
test:pyunit.TestCase | Undocumented |
todo:unittest.Todo , or None , in which case a default todo message is provided. | Undocumented |
Print 'message' in the given color.
Parameters | |
message | A string message, usually '[OK]' or something similar. |
color | A string color, 'red', 'green' and so forth. |
Return the name of the method which 'test' represents. This is what gets displayed in the leaves of the tree.
e.g. getDescription(TestCase('test_foo')) ==> test_foo
Return a list of all non-leaf segments to display in the tree.
Normally this is the module and class name.
Write the name of the test to the stream, indenting it appropriately.
If the test is the first test in a new 'branch' of the tree, also write all of the parents in that branch.
twisted.trial.reporter.Reporter._write
Safely write to the reporter's stream.
Parameters | |
format | A format string to write. |
*args | The arguments for the format string. |