model
Module implementing test execution related model objects.
When tests are executed by Robot Framework, a :class:TestSuite
structure using
classes defined in this module is created by
:class:~robot.running.builder.builders.TestSuiteBuilder
based on data on a file system. In addition to that, external tools can
create executable suite structures programmatically.
Regardless the approach to construct it, a :class:TestSuite
object is executed
by calling its :meth:~TestSuite.run
method as shown in the example in
the :mod:robot.running
package level documentation. When a suite is run,
test, keywords, and other objects it contains can be inspected and modified
by using pre-run modifiers
and listeners
.
The :class:TestSuite
class is exposed via the :mod:robot.api
package. If other
classes are needed, they can be imported from :mod:robot.running
.
__ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#programmatic-modification-of-results __ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#listener-interface
Argument
¶
A temporary API for creating named arguments with non-string values.
This class was added in RF 7.0.1 (#5031) after a failed attempt to add a public API for this purpose in RF 7.0 (#5000). A better public API that allows passing named arguments separately was added in RF 7.1 (#5143).
If you need to support also RF 7.0, you can pass named arguments as two-item tuples
like (name, value)
and positional arguments as one-item tuples like (value,)
.
That approach does not work anymore in RF 7.0.1, though, so the code needs to be
conditional depending on Robot Framework version.
The main limitation of this class is that it is not compatible with the JSON model. The current plan is to remove this in the future, possibly already in RF 8.0, but we can consider preserving it if it turns out to be useful.
Source code in src/robot/running/model.py
__init__(name, value)
¶
:param name: Argument name. If None
, argument is considered positional.
:param value: Argument value.
Keyword
¶
Bases: Keyword
, WithSource
Represents an executable keyword call.
A keyword call consists only of a keyword name, arguments and possible assignment in the data::
1 2 |
|
The actual keyword that is executed depends on the context where this model is executed.
Arguments originating from normal Robot Framework data are stored in the
:attr:args
attribute as a tuple of strings in the exact same format as in
the data. This means that arguments can have variables and escape characters,
and that named arguments are specified using the name=value
syntax.
When creating keywords programmatically, it is possible to set :attr:named_args
separately and use :attr:args
only for positional arguments. Argument values
do not need to be strings, but also in this case strings can contain variables
and normal Robot Framework escaping rules must be taken into account.
Source code in src/robot/running/model.py
config(**attributes)
¶
Configure model object with given attributes.
obj.config(name='Example', doc='Something')
is equivalent to setting
obj.name = 'Example'
and obj.doc = 'Something'
.
New in Robot Framework 4.0.
Source code in src/robot/model/modelobject.py
copy(**attributes)
¶
Return a shallow copy of this object.
:param attributes: Attributes to be set to the returned copy.
For example, obj.copy(name='New name')
.
See also :meth:deepcopy
. The difference between copy
and
deepcopy
is the same as with the methods having same names in
the copy__ module.
__ https://docs.python.org/3/library/copy.html
Source code in src/robot/model/modelobject.py
deepcopy(**attributes)
¶
Return a deep copy of this object.
:param attributes: Attributes to be set to the returned copy.
For example, obj.deepcopy(name='New name')
.
See also :meth:copy
. The difference between deepcopy
and
copy
is the same as with the methods having same names in
the copy__ module.
__ https://docs.python.org/3/library/copy.html
Source code in src/robot/model/modelobject.py
from_dict(data)
classmethod
¶
Create this object based on data in a dictionary.
Data can be got from the :meth:to_dict
method or created externally.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
Source code in src/robot/model/modelobject.py
from_json(source)
classmethod
¶
Create this object based on 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.
The JSON data is first converted to a Python dictionary and the object
created using the :meth:from_dict
method.
Notice that the source
is considered to be JSON data if it is
a string and contains {
. If you need to use {
in a file system
path, pass it in as a pathlib.Path
instance.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
Source code in src/robot/model/modelobject.py
to_json(file=None, *, ensure_ascii=False, indent=0, separators=(',', ':'))
¶
Serialize this object into JSON.
The object is first converted to a Python dictionary using the
:meth:to_dict
method and then the dictionary is converted to 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.
JSON formatting can be configured using optional parameters that
are passed directly to the underlying json__ module. Notice that
the defaults differ from what json
uses.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
__ https://docs.python.org/3/library/json.html
Source code in src/robot/model/modelobject.py
TestCase
¶
Represents a single executable test case.
See the base class for documentation of attributes not documented here.
Source code in src/robot/running/model.py
full_name: str
property
¶
Test name prefixed with the full name of the parent suite.
has_setup: bool
property
¶
Check does a suite have a setup without creating a setup object.
A difference between using if test.has_setup:
and if test.setup:
is that accessing the :attr:setup
attribute creates a :class:Keyword
object representing the setup even when the test actually does not have
one. This typically does not matter, but with bigger suite structures
containing a huge about of tests it can have an effect on memory usage.
New in Robot Framework 5.0.
has_teardown: bool
property
¶
Check does a test have a teardown without creating a teardown object.
See :attr:has_setup
for more information.
New in Robot Framework 5.0.
id: str
property
¶
Test case id in format like s1-t3
.
See :attr:TestSuite.id <robot.model.testsuite.TestSuite.id>
for
more information.
longname: str
property
¶
Deprecated since Robot Framework 7.0. Use :attr:full_name
instead.
setup: KW
property
writable
¶
Test setup as a :class:~.model.keyword.Keyword
object.
This attribute is a Keyword
object also when a test has no setup
but in that case its truth value is False
.
Setup can be modified by setting attributes directly::
1 2 |
|
Alternatively the :meth:config
method can be used to set multiple
attributes in one call::
1 |
|
The easiest way to reset the whole setup is setting it to None
.
It will automatically recreate the underlying Keyword
object::
1 |
|
New in Robot Framework 4.0. Earlier setup was accessed like
test.keywords.setup
.
teardown: KW
property
writable
¶
Test teardown as a :class:~.model.keyword.Keyword
object.
See :attr:setup
for more information.
body(body)
¶
config(**attributes)
¶
Configure model object with given attributes.
obj.config(name='Example', doc='Something')
is equivalent to setting
obj.name = 'Example'
and obj.doc = 'Something'
.
New in Robot Framework 4.0.
Source code in src/robot/model/modelobject.py
copy(**attributes)
¶
Return a shallow copy of this object.
:param attributes: Attributes to be set to the returned copy.
For example, obj.copy(name='New name')
.
See also :meth:deepcopy
. The difference between copy
and
deepcopy
is the same as with the methods having same names in
the copy__ module.
__ https://docs.python.org/3/library/copy.html
Source code in src/robot/model/modelobject.py
deepcopy(**attributes)
¶
Return a deep copy of this object.
:param attributes: Attributes to be set to the returned copy.
For example, obj.deepcopy(name='New name')
.
See also :meth:copy
. The difference between deepcopy
and
copy
is the same as with the methods having same names in
the copy__ module.
__ https://docs.python.org/3/library/copy.html
Source code in src/robot/model/modelobject.py
from_dict(data)
classmethod
¶
Create this object based on data in a dictionary.
Data can be got from the :meth:to_dict
method or created externally.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
Source code in src/robot/model/modelobject.py
from_json(source)
classmethod
¶
Create this object based on 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.
The JSON data is first converted to a Python dictionary and the object
created using the :meth:from_dict
method.
Notice that the source
is considered to be JSON data if it is
a string and contains {
. If you need to use {
in a file system
path, pass it in as a pathlib.Path
instance.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
Source code in src/robot/model/modelobject.py
tags(tags)
¶
to_json(file=None, *, ensure_ascii=False, indent=0, separators=(',', ':'))
¶
Serialize this object into JSON.
The object is first converted to a Python dictionary using the
:meth:to_dict
method and then the dictionary is converted to 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.
JSON formatting can be configured using optional parameters that
are passed directly to the underlying json__ module. Notice that
the defaults differ from what json
uses.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
__ https://docs.python.org/3/library/json.html
Source code in src/robot/model/modelobject.py
TestSuite
¶
Bases: TestSuite[Keyword, TestCase]
Represents a single executable test suite.
See the base class for documentation of attributes not documented here.
Source code in src/robot/running/model.py
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 |
|
all_tests: Iterator[TestCase]
property
¶
Yields all tests this suite and its child suites contain.
New in Robot Framework 6.1.
full_name: str
property
¶
Suite name prefixed with the full name of the possible parent suite.
Just :attr:name
of the suite if it has no :attr:parent
.
has_setup: bool
property
¶
Check does a suite have a setup without creating a setup object.
A difference between using if suite.has_setup:
and if suite.setup:
is that accessing the :attr:setup
attribute creates a :class:Keyword
object representing the setup even when the suite actually does not have
one. This typically does not matter, but with bigger suite structures
it can have some effect on memory usage.
New in Robot Framework 5.0.
has_teardown: bool
property
¶
Check does a suite have a teardown without creating a teardown object.
See :attr:has_setup
for more information.
New in Robot Framework 5.0.
id: str
property
¶
An automatically generated unique id.
The root suite has id s1
, its child suites have ids s1-s1
,
s1-s2
, ..., their child suites get ids s1-s1-s1
, s1-s1-s2
,
..., s1-s2-s1
, ..., and so on.
The first test in a suite has an id like s1-t1
, the second has an
id s1-t2
, and so on. Similarly, keywords in suites (setup/teardown)
and in tests get ids like s1-k1
, s1-t1-k1
, and s1-s4-t2-k5
.
longname: str
property
¶
Deprecated since Robot Framework 7.0. Use :attr:full_name
instead.
name: str
property
writable
¶
Suite name.
If name is not set, it is constructed from source. If source is not set,
name is constructed from child suite names by concatenating them with
&
. If there are no child suites, name is an empty string.
setup: KW
property
writable
¶
Suite setup.
This attribute is a Keyword
object also when a suite has no setup
but in that case its truth value is False
. The preferred way to
check does a suite have a setup is using :attr:has_setup
.
Setup can be modified by setting attributes directly::
1 2 |
|
Alternatively the :meth:config
method can be used to set multiple
attributes in one call::
1 |
|
The easiest way to reset the whole setup is setting it to None
.
It will automatically recreate the underlying Keyword
object::
1 |
|
New in Robot Framework 4.0. Earlier setup was accessed like
suite.keywords.setup
.
teardown: KW
property
writable
¶
Suite teardown.
See :attr:setup
for more information.
test_count: int
property
¶
Total number of the tests in this suite and in its child suites.
adjust_source(relative_to=None, root=None)
¶
Adjust suite source and child suite sources, recursively.
:param relative_to: Make suite source relative to the given path. Calls
pathlib.Path.relative_to()
__ internally. Raises ValueError
if creating a relative path is not possible.
:param root: Make given path a new root directory for the source. Raises
ValueError
if suite source is absolute.
Adjusting the source is especially useful when moving data around as JSON::
1 2 3 4 5 6 7 8 9 10 |
|
New in Robot Framework 6.1.
__ https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.relative_to
Source code in src/robot/model/testsuite.py
config(**attributes)
¶
Configure model object with given attributes.
obj.config(name='Example', doc='Something')
is equivalent to setting
obj.name = 'Example'
and obj.doc = 'Something'
.
New in Robot Framework 4.0.
Source code in src/robot/model/modelobject.py
configure(randomize_suites=False, randomize_tests=False, randomize_seed=None, **options)
¶
A shortcut to configure a suite using one method call.
Can only be used with the root test suite.
:param randomize_xxx: Passed to :meth:randomize
.
:param options: Passed to
:class:~robot.model.configurer.SuiteConfigurer
that will then
set suite attributes, call :meth:filter
, etc. as needed.
Example::
1 2 |
|
Not to be confused with :meth:config
method that suites, tests,
and keywords have to make it possible to set multiple attributes in
one call.
Source code in src/robot/running/model.py
copy(**attributes)
¶
Return a shallow copy of this object.
:param attributes: Attributes to be set to the returned copy.
For example, obj.copy(name='New name')
.
See also :meth:deepcopy
. The difference between copy
and
deepcopy
is the same as with the methods having same names in
the copy__ module.
__ https://docs.python.org/3/library/copy.html
Source code in src/robot/model/modelobject.py
deepcopy(**attributes)
¶
Return a deep copy of this object.
:param attributes: Attributes to be set to the returned copy.
For example, obj.deepcopy(name='New name')
.
See also :meth:copy
. The difference between deepcopy
and
copy
is the same as with the methods having same names in
the copy__ module.
__ https://docs.python.org/3/library/copy.html
Source code in src/robot/model/modelobject.py
filter(included_suites=None, included_tests=None, included_tags=None, excluded_tags=None)
¶
Select test cases and remove others from this suite.
Parameters have the same semantics as --suite
, --test
,
--include
, and --exclude
command line options. All of them
can be given as a list of strings, or when selecting only one, as
a single string.
Child suites that contain no tests after filtering are automatically removed.
Example::
1 2 |
|
Source code in src/robot/model/testsuite.py
from_dict(data)
classmethod
¶
Create this object based on data in a dictionary.
Data can be got from the :meth:to_dict
method or created externally.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
Source code in src/robot/model/modelobject.py
from_file_system(*paths, **config)
classmethod
¶
Create a :class:TestSuite
object based on the given paths
.
:param paths: File or directory paths where to read the data from.
:param config: Configuration parameters for :class:~.builders.TestSuiteBuilder
class that is used internally for building the suite.
See also :meth:from_model
and :meth:from_string
.
Source code in src/robot/running/model.py
from_json(source)
classmethod
¶
Create this object based on 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.
The JSON data is first converted to a Python dictionary and the object
created using the :meth:from_dict
method.
Notice that the source
is considered to be JSON data if it is
a string and contains {
. If you need to use {
in a file system
path, pass it in as a pathlib.Path
instance.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
Source code in src/robot/model/modelobject.py
from_model(model, name=None, *, defaults=None)
classmethod
¶
Create a :class:TestSuite
object based on the given model
.
:param model: Model to create the suite from. :param name: Deprecated since Robot Framework 6.1. :param defaults: Possible test specific defaults from suite initialization files. New in Robot Framework 6.1.
The model can be created by using the
:func:~robot.parsing.parser.parser.get_model
function and possibly
modified by other tooling in the :mod:robot.parsing
module.
Giving suite name is deprecated and users should set it and possible
other attributes to the returned suite separately. One easy way is using
the :meth:config
method like this::
1 |
|
See also :meth:from_file_system
and :meth:from_string
.
Source code in src/robot/running/model.py
from_string(string, *, defaults=None, **config)
classmethod
¶
Create a :class:TestSuite
object based on the given string
.
:param string: String to create the suite from.
:param defaults: Possible test specific defaults from suite
initialization files.
:param config: Configuration parameters for
:func:~robot.parsing.parser.parser.get_model
used internally.
If suite name or other attributes need to be set, an easy way is using
the :meth:config
method like this::
1 |
|
New in Robot Framework 6.1. See also :meth:from_model
and
:meth:from_file_system
.
Source code in src/robot/running/model.py
metadata(metadata)
¶
name_from_source(source, extension=())
staticmethod
¶
Create suite name based on the given source
.
This method is used by Robot Framework itself when it builds suites.
External parsers and other tools that want to produce suites with
names matching names created by Robot Framework can use this method as
well. This method is also used if :attr:name
is not set and someone
accesses it.
The algorithm is as follows:
- If the source is
None
or empty, return an empty string. - Get the base name of the source. Read more below.
- Remove possible prefix separated with
__
. - Convert underscores to spaces.
- If the name is all lower case, title case it.
The base name of files is got by calling Path.stem
__ that drops
the file extension. It typically works fine, but gives wrong result
if the extension has multiple parts like in tests.robot.zip
.
That problem can be avoided by giving valid file extension or extensions
as the optional extension
argument.
Examples::
1 2 3 |
|
__ https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.stem
Source code in src/robot/model/testsuite.py
randomize(suites=True, tests=True, seed=None)
¶
Randomizes the order of suites and/or tests, recursively.
:param suites: Boolean controlling should suites be randomized. :param tests: Boolean controlling should tests be randomized. :param seed: Random seed. Can be given if previous random order needs to be re-created. Seed value is always shown in logs and reports.
Source code in src/robot/running/model.py
remove_empty_suites(preserve_direct_children=False)
¶
Removes all child suites not containing any tests, recursively.
run(settings=None, **options)
¶
Executes the suite based on the given settings
or options
.
:param settings: :class:~robot.conf.settings.RobotSettings
object
to configure test execution.
:param options: Used to construct new
:class:~robot.conf.settings.RobotSettings
object if settings
are not given.
:return: :class:~robot.result.executionresult.Result
object with
information about executed suites and tests.
If options
are used, their names are the same as long command line
options except without hyphens. Some options are ignored (see below),
but otherwise they have the same semantics as on the command line.
Options that can be given on the command line multiple times can be
passed as lists like variable=['VAR1:value1', 'VAR2:value2']
.
If such an option is used only once, it can be given also as a single
string like variable='VAR:value'
.
Additionally, listener option allows passing object directly instead of
listener name, e.g. run('tests.robot', listener=Listener())
.
To capture stdout and/or stderr streams, pass open file objects in as
special keyword arguments stdout
and stderr
, respectively.
Only options related to the actual test execution have an effect.
For example, options related to selecting or modifying test cases or
suites (e.g. --include
, --name
, --prerunmodifier
) or
creating logs and reports are silently ignored. The output XML
generated as part of the execution can be configured, though. This
includes disabling it with output=None
.
Example::
1 2 3 4 5 6 |
|
To save memory, the returned
:class:~robot.result.executionresult.Result
object does not
have any information about the executed keywords. If that information
is needed, the created output XML file needs to be read using the
:class:~robot.result.resultbuilder.ExecutionResult
factory method.
See the :mod:package level <robot.running>
documentation for
more examples, including how to construct executable test suites and
how to create logs and reports based on the execution results.
See the :func:robot.run <robot.run.run>
function for a higher-level
API for executing tests in files or directories.
Source code in src/robot/running/model.py
set_tags(add=(), remove=(), persist=False)
¶
Add and/or remove specified tags to the tests in this suite.
:param add: Tags to add as a list or, if adding only one,
as a single string.
:param remove: Tags to remove as a list or as a single string.
Can be given as patterns where *
and ?
work as wildcards.
:param persist: Add/remove specified tags also to new tests added
to this suite in the future.
Source code in src/robot/model/testsuite.py
to_json(file=None, *, ensure_ascii=False, indent=0, separators=(',', ':'))
¶
Serialize this object into JSON.
The object is first converted to a Python dictionary using the
:meth:to_dict
method and then the dictionary is converted to 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.
JSON formatting can be configured using optional parameters that
are passed directly to the underlying json__ module. Notice that
the defaults differ from what json
uses.
With robot.running
model objects new in Robot Framework 6.1,
with robot.result
new in Robot Framework 7.0.
__ https://docs.python.org/3/library/json.html
Source code in src/robot/model/modelobject.py
validate_execution_mode()
¶
Validate that suite execution mode is set consistently.
Raise an exception if the execution mode is not set (i.e. the :attr:rpa
attribute is None
) and child suites have conflicting execution modes.
The execution mode is returned. New in RF 6.1.1.