robot.api.interfaces
¶
Optional base classes for libraries and other extensions.
Module contents:
- :class:
DynamicLibrary
for libraries using thedynamic library API
__. - :class:
HybridLibrary
for libraries using thehybrid library API
__. - :class:
ListenerV2
forlistener interface version 2
__. - :class:
ListenerV3
forlistener interface version 3
__. - :class:
Parser
forcustom parsers
__. Also :class:~robot.running.builder.settings.TestDefaults
used inParser
type hints can be imported via this module if needed. - Type definitions used by the aforementioned classes.
Main benefit of using these base classes is that editors can provide automatic completion, documentation and type information. Their usage is not required. Notice also that libraries typically use the static API and do not need any base class.
.. note:: These classes are not exposed via the top level :mod:robot.api
package and need to imported via :mod:robot.api.interfaces
.
This module is new in Robot Framework 6.1.
__ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#dynamic-library-api __ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#hybrid-library-api __ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#listener-version-2 __ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#listener-version-3 __ http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#parser-interface
DynamicLibrary
¶
Bases: ABC
Optional base class for libraries using the dynamic library API.
The dynamic library API makes it possible to dynamically specify
what keywords a library implements and run them by using
:meth:get_keyword_names
and :meth:run_keyword
methods, respectively.
In addition to that it has various optional methods for returning more
information about the implemented keywords to Robot Framework.
get_keyword_names
abstractmethod
¶
Return names of the keywords this library implements.
:return: Keyword names as a list of strings.
name
passed to other methods is always in the same format as
returned by this method.
Source code in src/robot/api/interfaces.py
run_keyword
abstractmethod
¶
Execute the specified keyword using the given arguments.
:param name: Keyword name as a string. :param args: Positional arguments as a list. :param named: Named arguments as a dictionary. :raises: Reporting FAIL or SKIP status. :return: Keyword's return value.
Reporting status, logging, returning values, etc. is handled the same way as with the normal static library API.
Source code in src/robot/api/interfaces.py
get_keyword_documentation
¶
Optional method to return keyword documentation.
The first logical line of keyword documentation is shown in the execution log under the executed keyword. The whole documentation is shown in documentation generated by Libdoc.
:param name: Keyword name as a string.
:return: Documentation as a string oras None
if there is no
documentation.
This method is also used to get the overall library documentation as
well as documentation related to importing the library. They are
got by calling this method with special names __intro__
and
__init__
, respectively.
Source code in src/robot/api/interfaces.py
get_keyword_arguments
¶
Optional method to return keyword's argument specification.
Returned information is used during execution for argument validation. In addition to that, arguments are shown in documentation generated by Libdoc.
:param name: Keyword name as a string. :return: Argument specification using format explained below.
Argument specification defines what arguments the keyword accepts.
Returning None
means that the keywords accepts any arguments.
Accepted arguments are returned as a list using these rules:
- Normal arguments are specified as a list of strings like
['arg1', 'arg2']
. An empty list denotes that the keyword accepts no arguments. - Varargs must have a
*
prefix like['*numbers']
. There can be only one varargs, and it must follow normal arguments. - Arguments after varargs like
['*items', 'arg']
are considered named-only arguments. - If keyword does not accept varargs, a lone
*
can be used a separator between normal and named-only arguments like['normal', '*', 'named']
. - Kwargs must have a
**
prefix like['**config']
. There can be only one kwargs, and it must be last.
Both normal arguments and named-only arguments can have default values:
- Default values can be embedded to argument names so that they are
separated with the equal sign like
name=default
. In this case the default value type is always a string. - Alternatively arguments and their default values can be represented
as two-tuples like
('name', 'default')
. This allows non-string default values and automatic argument conversion based on them. - Arguments without default values can also be specified as tuples
containing just the name like
('name',)
. - With normal arguments, arguments with default values must follow arguments without them. There is no such restriction with named-only arguments.
Source code in src/robot/api/interfaces.py
get_keyword_types
¶
Optional method to return keyword's type specification.
Type information is used for automatic argument conversion during execution. It is also shown in documentation generated by Libdoc.
:param name: Keyword name as a string.
:return: Type specification as a dictionary, as a list, or as None
if type information is not known.
Type information can be mapped to arguments returned by
:meth:get_keyword_names
either by names using a dictionary or
by position using a list. For example, if a keyword has argument
specification ['arg', 'second']
, it would be possible to return
types both like {'arg': str, 'second': int}
and [str, int]
.
Regardless of the approach that is used, it is not necessarily to
specify types for all arguments. When using a dictionary, some
arguments can be omitted altogether. When using a list, it is possible
to use None
to mark that a certain argument does not have type
information and arguments at the end can be omitted altogether.
If is possible to specify that an argument has multiple possible types
by using unions like {'arg': Union[int, float]}
or tuples like
{'arg': (int, float)}
.
In addition to specifying types using classes, it is also possible
to use names or aliases like {'a': 'int', 'b': 'boolean'}
.
For an up-to-date list of supported types, names and aliases see
the User Guide.
Source code in src/robot/api/interfaces.py
get_keyword_tags
¶
Optional method to return keyword's tags.
Tags are shown in the execution log and in documentation generated by Libdoc. Tags can also be used with various command line options.
:param name: Keyword name as a string.
:return: Tags as a list of strings or None
if there are no tags.
Source code in src/robot/api/interfaces.py
get_keyword_source
¶
Optional method to return keyword's source path and line number.
Source information is used by IDEs to provide navigation from keyword usage to implementation.
:param name: Keyword name as a string.
:return: Source as a string in format path:lineno
or None
if source is not known.
The general format to return the source is path:lineno
like
/example/Lib.py:42
. If the line number is not known, it is
possible to return only the path. If the keyword is in the same
file as the main library class, the path can be omitted and only
the line number returned like :42
.
The source information of the library itself is got automatically from the imported library class. The library source path is used with all keywords that do not return their own path.
Source code in src/robot/api/interfaces.py
HybridLibrary
¶
Bases: ABC
Optional base class for libraries using the hybrid library API.
Hybrid library API makes it easy to specify what keywords a library
implements by using the :meth:get_keyword_names
method. After getting
keyword names, Robot Framework uses getattr
to get the actual keyword
methods exactly like it does when using the normal static library API.
Keyword name, arguments, documentation, tags, and so on are got directly
from the keyword method.
It is possible to implement keywords also outside the main library class.
In such cases the library needs to have a __getattr__
method that
returns desired keyword methods.
get_keyword_names
abstractmethod
¶
Return names of the implemented keyword methods as a list or strings.
Returned names must match names of the implemented keyword methods.
Source code in src/robot/api/interfaces.py
StartSuiteAttributes
¶
Bases: TypedDict
Attributes passed to listener v2 start_suite
method.
See the User Guide for more information.
EndSuiteAttributes
¶
Bases: StartSuiteAttributes
Attributes passed to listener v2 end_suite
method.
See the User Guide for more information.
StartTestAttributes
¶
Bases: TypedDict
Attributes passed to listener v2 start_test
method.
See the User Guide for more information.
EndTestAttributes
¶
Bases: StartTestAttributes
Attributes passed to listener v2 end_test
method.
See the User Guide for more information.
OptionalKeywordAttributes
¶
Bases: TypedDict
Extra attributes passed to listener v2 start/end_keyword
methods.
These attributes are included with control structures. For example, with
IF structures attributes include condition
.
StartKeywordAttributes
¶
Bases: OptionalKeywordAttributes
Attributes passed to listener v2 start_keyword
method.
See the User Guide for more information.
EndKeywordAttributes
¶
Bases: StartKeywordAttributes
Attributes passed to listener v2 end_keyword
method.
See the User Guide for more information.
MessageAttributes
¶
Bases: TypedDict
Attributes passed to listener v2 log_message
and messages
methods.
See the User Guide for more information.
LibraryAttributes
¶
Bases: TypedDict
Attributes passed to listener v2 library_import
method.
See the User Guide for more information.
ResourceAttributes
¶
Bases: TypedDict
Attributes passed to listener v2 resource_import
method.
See the User Guide for more information.
VariablesAttributes
¶
Bases: TypedDict
Attributes passed to listener v2 variables_import
method.
See the User Guide for more information.
ListenerV2
¶
Optional base class for listeners using the listener API version 2.
start_suite
¶
|
end_suite
¶
|
start_test
¶
|
end_test
¶
|
start_keyword
¶
|
Called when a keyword or a control structure like IF starts.
The type of the started item is in attributes['type']
. Control
structures can contain extra attributes that are only relevant to them.
Source code in src/robot/api/interfaces.py
end_keyword
¶
|
Called when a keyword or a control structure like IF ends.
The type of the started item is in attributes['type']
. Control
structures can contain extra attributes that are only relevant to them.
Source code in src/robot/api/interfaces.py
log_message
¶
|
Called when a normal log message are emitted.
The messages are typically logged by keywords, but also the framework itself logs some messages. These messages end up to output.xml and log.html.
Source code in src/robot/api/interfaces.py
message
¶
|
Called when framework's internal messages are emitted.
Only logged by the framework itself. These messages end up to the syslog if it is enabled.
library_import
¶
|
resource_import
¶
|
variables_import
¶
|
output_file
¶
Called after the output file has been created.
path
is an absolute path to the output file or
a string None
if creating the output file is disabled.
log_file
¶
Called after the log file has been created.
path
is an absolute path to the log file.
Not called if creating the log file is disabled.
report_file
¶
Called after the report file has been created.
path
is an absolute path to the report file.
Not called if creating the report file is disabled.
xunit_file
¶
Called after the xunit compatible output file has been created.
path
is an absolute path to the xunit file.
Only called if creating the xunit file is enabled.
debug_file
¶
Called after the debug file has been created.
path
is an absolute path to the debug file.
Only called if creating the debug file is enabled.
close
¶
ListenerV3
¶
Optional base class for listeners using the listener API version 3.
start_suite
¶
end_suite
¶
start_test
¶
end_test
¶
start_keyword
¶
Called when a keyword starts by default.
This method is called, by default, with user keywords, library keywords
and when a keyword call is invalid. It is not called, however, if a more
specific :meth:start_user_keyword
, :meth:start_library_keyword
or
:meth:start_invalid_keyword
method is implemented.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_keyword
¶
Called when a keyword ends by default.
This method is called, by default, with user keywords, library keywords
and when a keyword call is invalid. It is not called, however, if a more
specific :meth:end_user_keyword
, :meth:end_library_keyword
or
:meth:end_invalid_keyword
method is implemented.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_user_keyword
¶
Called when a user keyword starts.
The default implementation calls :meth:start_keyword
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_user_keyword
¶
Called when a user keyword ends.
The default implementation calls :meth:end_keyword
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_library_keyword
¶
Called when a library keyword starts.
The default implementation calls :meth:start_keyword
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_library_keyword
¶
Called when a library keyword ends.
The default implementation calls :meth:start_keyword
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_invalid_keyword
¶
|
Called when an invalid keyword call starts.
Keyword may not have been found, there could have been multiple matches, or the keyword call itself could have been invalid.
The default implementation calls :meth:start_keyword
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_invalid_keyword
¶
|
Called when an invalid keyword call ends.
Keyword may not have been found, there could have been multiple matches, or the keyword call itself could have been invalid.
The default implementation calls :meth:end_keyword
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_for
¶
Called when a FOR loop starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
end_for
¶
Called when a FOR loop ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_for_iteration
¶
Called when a FOR loop iteration starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_for_iteration
¶
Called when a FOR loop iteration ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_while
¶
Called when a WHILE loop starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_while
¶
Called when a WHILE loop ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_while_iteration
¶
Called when a WHILE loop iteration starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_while_iteration
¶
Called when a WHILE loop iteration ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_if
¶
Called when an IF/ELSE structure starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
end_if
¶
Called when an IF/ELSE structure ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_if_branch
¶
Called when an individual IF/ELSE branch starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_if_branch
¶
Called when an individual IF/ELSE branch ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_try
¶
Called when a TRY/EXCEPT structure starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_try
¶
Called when a TRY/EXCEPT structure ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_try_branch
¶
Called when an individual TRY/EXCEPT branch starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_try_branch
¶
Called when an individual TRY/EXCEPT branch ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_var
¶
Called when VAR starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
end_var
¶
Called when VAR ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_break
¶
Called when BREAK starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
end_break
¶
Called when BREAK ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_continue
¶
Called when CONTINUE starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_continue
¶
Called when CONTINUE ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_return
¶
Called when RETURN starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
end_return
¶
Called when RETURN ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
start_error
¶
Called when encountered invalid syntax starts.
The default implementation calls :meth:start_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
end_error
¶
Called when encountered invalid syntax ends.
The default implementation calls :meth:end_body_item
.
New in Robot Framework 7.0.
Source code in src/robot/api/interfaces.py
start_body_item
¶
Called by default when a keyword or a control structure starts.
New in Robot Framework 7.0.
end_body_item
¶
log_message
¶
Called when a normal log message are emitted.
The messages are typically logged by keywords, but also the framework itself logs some messages. These messages end up to output.xml and log.html.
Source code in src/robot/api/interfaces.py
message
¶
Called when framework's internal messages are emitted.
Only logged by the framework itself. These messages end up to the syslog if it is enabled.
library_import
¶
|
Called after a library has been imported.
library
represents the imported library. It can be inspected and
also modified. importer
contains information about the location where
the library was imported.
New in Robot Framework 7.1.
Source code in src/robot/api/interfaces.py
resource_import
¶
|
Called after a resource file has been imported.
resource
represents the imported resource file. It can be inspected and
also modified. importer
contains information about the location where
the resource was imported.
New in Robot Framework 7.1.
Source code in src/robot/api/interfaces.py
variables_import
¶
Called after a variable file has been imported.
attrs
contains information about the imported variable file. It can be
inspected, but modifications to it have no effect. `importer`` contains
information about the location where the variable file was imported.
New in Robot Framework 7.1. This method will be changed in the future
so that the attrs
dictionary is replaced with an object representing
the imported variable file.
Source code in src/robot/api/interfaces.py
output_file
¶
Called after the output file has been created.
path
is an absolute path to the output file or
None
if creating the output file is disabled.
log_file
¶
Called after the log file has been created.
path
is an absolute path to the log file.
Not called if creating the log file is disabled.
report_file
¶
Called after the report file has been created.
path
is an absolute path to the report file.
Not called if creating the report file is disabled.
xunit_file
¶
Called after the xunit compatible output file has been created.
path
is an absolute path to the xunit file.
Only called if creating the xunit file is enabled.
debug_file
¶
Called after the debug file has been created.
path
is an absolute path to the debug file.
Only called if creating the debug file is enabled.
close
¶
Parser
¶
Bases: ABC
Optional base class for custom parsers.
Parsers do not need to explicitly extend this class and in simple cases
it is possible to implement them as modules. Regardless how a parser is
implemented, it must have :attr:extension
attribute and :meth:parse
method. The :meth:parse_init
method is optional and only needed if
a parser supports parsing suite initialization files.
The mandatory :attr:extension
attribute specifies what file extension or
extensions a parser supports. It can be set either as a class or instance
attribute, and it can be either a string or a sequence of strings. The
attribute can also be named EXTENSION
, which typically works better
when a parser is implemented as a module.
Example::
1 2 3 4 5 6 7 8 9 10 11 12 |
|
The support for custom parsers is new in Robot Framework 6.1.
parse
abstractmethod
¶
|
Mandatory method for parsing suite files.
:param source: Path to the file to parse. :param defaults: Default values set for test in init files.
The defaults
argument is optional. It is possible to implement
this method also so that it accepts only source
.
Source code in src/robot/api/interfaces.py
parse_init
¶
Optional method for parsing suite initialization files.
:param source: Path to the file to parse. :param defaults: Default values to used with tests in child suites.
The defaults
argument is optional. It is possible to implement
this method also so that it accepts only source
.
If this method is not implemented, possible initialization files cause an error.