executionresult
CombinedResult
¶
Bases: Result
Combined results of multiple test executions.
Source code in src/robot/result/executionresult.py
return_code: int
property
¶
Execution return code.
By default, returns the number of failed tests or tasks (max 250),
but can be :func:configured <configure>
to always return 0.
statistics: Statistics
property
¶
Execution statistics.
Statistics are created based on the contained suite
and possible
:func:configuration <configure>
.
Statistics are created every time this property is accessed. Saving them to a variable is thus often a good idea to avoid re-creating them unnecessarily::
1 2 3 4 5 6 7 8 9 |
|
configure(status_rc=True, suite_config=None, stat_config=None)
¶
Configures the result object and objects it contains.
:param status_rc: If set to False
, :attr:return_code
always
returns 0.
:param suite_config: A dictionary of configuration options passed
to :meth:~.result.testsuite.TestSuite.configure
method of
the contained suite
.
:param stat_config: A dictionary of configuration options used when
creating :attr:statistics
.
Source code in src/robot/result/executionresult.py
from_json(source)
classmethod
¶
Construct a result object from JSON data.
The data is given as the source
parameter. It can be:
- a string (or bytes) containing the data directly,
- an open file object where to read the data from, or
- a path (
pathlib.Path
or string) to a UTF-8 encoded file to read.
Data can contain either:
- full result data (contains suite information, execution errors, etc.)
got, for example, from the :meth:
to_json
method, or - only suite information got, for example, from
:meth:
result.testsuite.TestSuite.to_json <TestSuite.to_json>
.
:attr:statistics
are populated automatically based on suite information
and thus ignored if they are present in the data.
New in Robot Framework 7.2.
Source code in src/robot/result/executionresult.py
handle_suite_teardown_failures()
¶
save(target=None, legacy_output=False)
¶
Save results as XML or JSON file.
:param target: Target where to save results to. Can be a path
(pathlib.Path
or str
) or an open file object. If omitted,
uses the :attr:source
which overwrites the original file.
:param legacy_output: Save XML results in Robot Framework 6.x compatible
format. New in Robot Framework 7.0.
File type is got based on the target
. The type is JSON if the target
is a path that has a .json
suffix or if it is an open file that has
a name
attribute with a .json
suffix. Otherwise, the type is XML.
It is also possible to use :meth:to_json
for JSON serialization. Compared
to this method, it allows returning the JSON in addition to writing it
into a file, and it also supports customizing JSON formatting.
Support for saving results in JSON is new in Robot Framework 7.0. Originally only suite information was saved in that case, but starting from Robot Framework 7.2, also JSON results contain full result data including, for example, execution errors and statistics.
Source code in src/robot/result/executionresult.py
set_execution_mode(other)
¶
Set execution mode based on other result. Internal usage only.
Source code in src/robot/result/executionresult.py
to_json(file=None, *, include_statistics=True, ensure_ascii=False, indent=0, separators=(',', ':'))
¶
Serialize results into JSON.
The file
parameter controls what to do with the resulting JSON data.
It can be:
None
(default) to return the data as a string,- an open file object where to write the data to, or
- a path (
pathlib.Path
or string) to a file where to write the data using UTF-8 encoding.
The include_statistics
controls including statistics information
in the resulting JSON data. Statistics are not needed if the serialized
JSON data is converted back to a Result
object, but they can be
useful for external tools.
The remaining optional parameters are used for JSON formatting.
They are passed directly to the underlying json__ module, but
the defaults differ from what json
uses.
New in Robot Framework 7.2.
__ https://docs.python.org/3/library/json.html
Source code in src/robot/result/executionresult.py
visit(visitor)
¶
An entry point to visit the whole result object.
:param visitor: An instance of :class:~.visitor.ResultVisitor
.
Visitors can gather information, modify results, etc. See
:mod:~robot.result
package for a simple usage example.
Notice that it is also possible to call :meth:result.suite.visit
<robot.result.testsuite.TestSuite.visit>
if there is no need to
visit the contained statistics
or errors
.
Source code in src/robot/result/executionresult.py
Result
¶
Test execution results.
Can be created based on XML output files using the
:func:~.resultbuilder.ExecutionResult
factory method. Also returned by the
:meth:robot.running.TestSuite.run <robot.running.model.TestSuite.run>
method.
Source code in src/robot/result/executionresult.py
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
return_code: int
property
¶
Execution return code.
By default, returns the number of failed tests or tasks (max 250),
but can be :func:configured <configure>
to always return 0.
statistics: Statistics
property
¶
Execution statistics.
Statistics are created based on the contained suite
and possible
:func:configuration <configure>
.
Statistics are created every time this property is accessed. Saving them to a variable is thus often a good idea to avoid re-creating them unnecessarily::
1 2 3 4 5 6 7 8 9 |
|
configure(status_rc=True, suite_config=None, stat_config=None)
¶
Configures the result object and objects it contains.
:param status_rc: If set to False
, :attr:return_code
always
returns 0.
:param suite_config: A dictionary of configuration options passed
to :meth:~.result.testsuite.TestSuite.configure
method of
the contained suite
.
:param stat_config: A dictionary of configuration options used when
creating :attr:statistics
.
Source code in src/robot/result/executionresult.py
from_json(source)
classmethod
¶
Construct a result object from JSON data.
The data is given as the source
parameter. It can be:
- a string (or bytes) containing the data directly,
- an open file object where to read the data from, or
- a path (
pathlib.Path
or string) to a UTF-8 encoded file to read.
Data can contain either:
- full result data (contains suite information, execution errors, etc.)
got, for example, from the :meth:
to_json
method, or - only suite information got, for example, from
:meth:
result.testsuite.TestSuite.to_json <TestSuite.to_json>
.
:attr:statistics
are populated automatically based on suite information
and thus ignored if they are present in the data.
New in Robot Framework 7.2.
Source code in src/robot/result/executionresult.py
handle_suite_teardown_failures()
¶
save(target=None, legacy_output=False)
¶
Save results as XML or JSON file.
:param target: Target where to save results to. Can be a path
(pathlib.Path
or str
) or an open file object. If omitted,
uses the :attr:source
which overwrites the original file.
:param legacy_output: Save XML results in Robot Framework 6.x compatible
format. New in Robot Framework 7.0.
File type is got based on the target
. The type is JSON if the target
is a path that has a .json
suffix or if it is an open file that has
a name
attribute with a .json
suffix. Otherwise, the type is XML.
It is also possible to use :meth:to_json
for JSON serialization. Compared
to this method, it allows returning the JSON in addition to writing it
into a file, and it also supports customizing JSON formatting.
Support for saving results in JSON is new in Robot Framework 7.0. Originally only suite information was saved in that case, but starting from Robot Framework 7.2, also JSON results contain full result data including, for example, execution errors and statistics.
Source code in src/robot/result/executionresult.py
set_execution_mode(other)
¶
Set execution mode based on other result. Internal usage only.
Source code in src/robot/result/executionresult.py
to_json(file=None, *, include_statistics=True, ensure_ascii=False, indent=0, separators=(',', ':'))
¶
Serialize results into JSON.
The file
parameter controls what to do with the resulting JSON data.
It can be:
None
(default) to return the data as a string,- an open file object where to write the data to, or
- a path (
pathlib.Path
or string) to a file where to write the data using UTF-8 encoding.
The include_statistics
controls including statistics information
in the resulting JSON data. Statistics are not needed if the serialized
JSON data is converted back to a Result
object, but they can be
useful for external tools.
The remaining optional parameters are used for JSON formatting.
They are passed directly to the underlying json__ module, but
the defaults differ from what json
uses.
New in Robot Framework 7.2.
__ https://docs.python.org/3/library/json.html
Source code in src/robot/result/executionresult.py
visit(visitor)
¶
An entry point to visit the whole result object.
:param visitor: An instance of :class:~.visitor.ResultVisitor
.
Visitors can gather information, modify results, etc. See
:mod:~robot.result
package for a simple usage example.
Notice that it is also possible to call :meth:result.suite.visit
<robot.result.testsuite.TestSuite.visit>
if there is no need to
visit the contained statistics
or errors
.