visitor
Visitors can be used to easily traverse result structures.
This module contains :class:ResultVisitor
for traversing the whole
:class:~robot.result.executionresult.Result
object. It extends
:class:~robot.model.visitor.SuiteVisitor
that contains visiting logic
for the test suite structure.
ResultVisitor
¶
Bases: SuiteVisitor
Abstract class to conveniently travel :class:~robot.result.executionresult.Result
objects.
A visitor implementation can be given to the :meth:visit
method of a
result object. This will cause the result object to be traversed and the
visitor's :meth:visit_x
, :meth:start_x
, and :meth:end_x
methods to
be called for each suite, test, keyword and message, as well as for errors,
statistics, and other information in the result object. See methods below
for a full list of available visitor methods.
See the :mod:result package level <robot.result>
documentation for
more information about handling results and a concrete visitor example.
For more information about the visitor algorithm see documentation in
:mod:robot.model.visitor
module.
Source code in src/robot/result/visitor.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
end_body_item(item)
¶
Called, by default, when keywords, messages or control structures end.
More specific :meth:end_keyword
, :meth:end_message
, :meth:
end_for`,
etc. can be implemented to visit only keywords, messages or specific control
structures.
Default implementation does nothing.
Source code in src/robot/model/visitor.py
end_break(break_)
¶
Called when a BREAK element ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_continue(continue_)
¶
Called when a CONTINUE element ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_error(error)
¶
Called when a ERROR element ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_for(for_)
¶
Called when a FOR loop ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_for_iteration(iteration)
¶
Called when a FOR loop iteration ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_if(if_)
¶
Called when an IF/ELSE structure ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_if_branch(branch)
¶
Called when an IF/ELSE branch ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_keyword(keyword)
¶
Called when a keyword ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_message(message)
¶
Called when a message ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_return(return_)
¶
Called when a RETURN element ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_suite(suite)
¶
end_test(test)
¶
end_try(try_)
¶
Called when a TRY/EXCEPT structure ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_try_branch(branch)
¶
Called when TRY, EXCEPT, ELSE and FINALLY branches end.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_var(var)
¶
Called when a VAR element ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_while(while_)
¶
Called when a WHILE loop ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
end_while_iteration(iteration)
¶
Called when a WHILE loop iteration ends.
By default, calls :meth:end_body_item
which, by default, does nothing.
start_body_item(item)
¶
Called, by default, when keywords, messages or control structures start.
More specific :meth:start_keyword
, :meth:start_message
, :meth:
start_for`,
etc. can be implemented to visit only keywords, messages or specific control
structures.
Can return explicit False
to stop visiting. Default implementation does
nothing.
Source code in src/robot/model/visitor.py
start_break(break_)
¶
Called when a BREAK element starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_continue(continue_)
¶
Called when a CONTINUE element starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_error(error)
¶
Called when a ERROR element starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_for(for_)
¶
Called when a FOR loop starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_for_iteration(iteration)
¶
Called when a FOR loop iteration starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_if(if_)
¶
Called when an IF/ELSE structure starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_if_branch(branch)
¶
Called when an IF/ELSE branch starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_keyword(keyword)
¶
Called when a keyword starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_message(message)
¶
Called when a message starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_return(return_)
¶
Called when a RETURN element starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_suite(suite)
¶
Called when a suite starts. Default implementation does nothing.
Can return explicit False
to stop visiting.
start_test(test)
¶
Called when a test starts. Default implementation does nothing.
Can return explicit False
to stop visiting.
start_try(try_)
¶
Called when a TRY/EXCEPT structure starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_try_branch(branch)
¶
Called when TRY, EXCEPT, ELSE or FINALLY branches start.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_var(var)
¶
Called when a VAR element starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_while(while_)
¶
Called when a WHILE loop starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
start_while_iteration(iteration)
¶
Called when a WHILE loop iteration starts.
By default, calls :meth:start_body_item
which, by default, does nothing.
Can return explicit False
to stop visiting.
Source code in src/robot/model/visitor.py
visit_break(break_)
¶
visit_continue(continue_)
¶
visit_error(error)
¶
Visits body items resulting from invalid syntax.
Examples include syntax like END
or ELSE
in wrong place and
invalid setting like [Invalid]
.
Source code in src/robot/model/visitor.py
visit_for(for_)
¶
Implements traversing through FOR loops.
Can be overridden to allow modifying the passed in for_
without
calling :meth:start_for
or :meth:end_for
nor visiting body.
Source code in src/robot/model/visitor.py
visit_for_iteration(iteration)
¶
Implements traversing through single FOR loop iteration.
This is only used with the result side model because on the running side there are no iterations.
Can be overridden to allow modifying the passed in iteration
without
calling :meth:start_for_iteration
or :meth:end_for_iteration
nor visiting
body.
Source code in src/robot/model/visitor.py
visit_if(if_)
¶
Implements traversing through IF/ELSE structures.
Notice that if_
does not have any data directly. Actual IF/ELSE
branches are in its body
and they are visited separately using
:meth:visit_if_branch
.
Can be overridden to allow modifying the passed in if_
without
calling :meth:start_if
or :meth:end_if
nor visiting branches.
Source code in src/robot/model/visitor.py
visit_if_branch(branch)
¶
Implements traversing through single IF/ELSE branch.
Can be overridden to allow modifying the passed in branch
without
calling :meth:start_if_branch
or :meth:end_if_branch
nor visiting body.
Source code in src/robot/model/visitor.py
visit_keyword(keyword)
¶
Implements traversing through keywords.
Can be overridden to allow modifying the passed in kw
without
calling :meth:start_keyword
or :meth:end_keyword
nor visiting
the body of the keyword
Source code in src/robot/model/visitor.py
visit_message(message)
¶
Implements visiting messages.
Can be overridden to allow modifying the passed in msg
without
calling :meth:start_message
or :meth:end_message
.
Source code in src/robot/model/visitor.py
visit_return(return_)
¶
visit_suite(suite)
¶
Implements traversing through suites.
Can be overridden to allow modifying the passed in suite
without
calling :meth:start_suite
or :meth:end_suite
nor visiting child
suites, tests or setup and teardown at all.
Source code in src/robot/model/visitor.py
visit_test(test)
¶
Implements traversing through tests.
Can be overridden to allow modifying the passed in test
without calling
:meth:start_test
or :meth:end_test
nor visiting the body of the test.
Source code in src/robot/model/visitor.py
visit_try(try_)
¶
Implements traversing through TRY/EXCEPT structures.
This method is used with the TRY/EXCEPT root element. Actual TRY, EXCEPT, ELSE
and FINALLY branches are visited separately using :meth:visit_try_branch
.
Source code in src/robot/model/visitor.py
visit_try_branch(branch)
¶
Visits individual TRY, EXCEPT, ELSE and FINALLY branches.
visit_var(var)
¶
visit_while(while_)
¶
Implements traversing through WHILE loops.
Can be overridden to allow modifying the passed in while_
without
calling :meth:start_while
or :meth:end_while
nor visiting body.
Source code in src/robot/model/visitor.py
visit_while_iteration(iteration)
¶
Implements traversing through single WHILE loop iteration.
This is only used with the result side model because on the running side there are no iterations.
Can be overridden to allow modifying the passed in iteration
without
calling :meth:start_while_iteration
or :meth:end_while_iteration
nor visiting
body.