• Stars
    star
    147
  • Rank 243,161 (Top 5 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created about 12 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Robot Framework remote server implemented with Python

Python Remote Server for Robot Framework

Robot Framework remote servers allow hosting test libraries on different processes or machines than Robot Framework itself is running on. This project implements a generic remote server using the Python programming language. See the remote library interface documentation for more information about the remote interface in general as well as for a list of remote server implementations in other programming languages.

This project is hosted on GitHub and downloads are available on PyPI.

Supported Python versions

This remote server is implemented with Python and supports also Jython (JVM), IronPython (.NET) and PyPy. Remote server version 1.1 supports Python 2.6, 2.7 and 3.3-3.9. Remote server version 1.1.1 supports Python 3.10 and 3.11 as well.

Supported library APIs

Starting from the remote server version 1.1, Robot Framework's static, hybrid and dynamic library APIs are all supported. This includes setting custom name and tags for keywords using the robot.api.deco.keyword. Earlier remote server versions support only the static and hybrid APIs and do not support the keyword decorator at all.

For most parts these APIs work exactly like when using with Robot Framework normally. The main limitation is that logging using robot.api.logger or Python's logging module is currently not supported.

Installation

The easiest installation approach is using pip:

pip install robotremoteserver

Alternatively you can download the source distribution from PyPI, extract it and install the remote server using:

python setup.py install

Remote server configuration

The remote server is implemented as a class RobotRemoteServer and it accepts the following configuration parameters when it is initialized:

Argument Default Explanation
library ย  Test library instance or module to host. Mandatory argument.
host '127.0.0.1' Address to listen. Use '0.0.0.0' to listen to all available IPv4 interfaces.
port 8270 Port to listen. Use 0 to select a free port automatically. Can be given as an integer or as a string. The default port 8270 is registered by IANA for remote server usage.
port_file None File to write the port that is used. None (default) means no such file is written.
allow_stop 'DEPRECATED' Deprecated since version 1.1. Use allow_remote_stop instead.
serve True If True, start the server automatically and wait for it to be stopped. If False, server can be started using the serve method. New in version 1.1.
allow_remote_stop True Allow/disallow stopping the server remotely using Stop Remote Server keyword and stop_remote_server XML-RPC method. New in version 1.1.

Starting remote server

The remote server can be started simply by creating an instance of the server and passing a test library instance or module to it:

from robotremoteserver import RobotRemoteServer
from mylibrary import MyLibrary

RobotRemoteServer(MyLibrary())

By default the server listens to address 127.0.0.1 and port 8270. As discussed above, the remote server accepts various configuration parameters. Some of them are used by this example:

from robotremoteserver import RobotRemoteServer
from examplelibrary import ExampleLibrary

RobotRemoteServer(ExampleLibrary(), host='10.0.0.42', port=0,
                  port_file='/tmp/remote-port.txt')

Starting from version 1.1, the server can be initialized without starting it by using the argument serve=False. The server can then started afterwards by calling its serve method explicitly. This example is functionally equivalent to the example above:

from robotremoteserver import RobotRemoteServer
from examplelibrary import ExampleLibrary

server = RobotRemoteServer(ExampleLibrary(), host='10.0.0.42', port=0,
                           port_file='/tmp/remote-port.txt', serve=False)
server.serve()

Starting server on background

The main benefit of separately initializing and starting the server is that it makes it easier to start the server in a background thread. Servers started in a thread work exactly like servers running in the main tread except that stopping the server gracefully using Ctrl-C or signals is not supported automatically. Users must thus register signal handlers separately if needed.

Also this following example is functionally nearly equivalent to the earlier examples except. The main difference is that not all same signals are handled.

import signal
import threading
from examplelibrary import ExampleLibrary
from robotremoteserver import RobotRemoteServer

server = RobotRemoteServer(ExampleLibrary(), port=0, serve=False)
signal.signal(signal.SIGINT, lambda signum, frame: server.stop())
server_thread = threading.Thread(target=server.serve)
server_thread.start()
while server_thread.is_alive():
    server_thread.join(0.1)

Getting active server port

If the server uses the default port 8270 or some other port is given explicitly when configuring the server, you obviously know which port to use when connecting the server. When using the port 0, the server selects a free port automatically, but there are various ways how to find out the actual port:

  • Address and port that are used are printed into the console where the server is started.
  • If port_file argument is used, the server writes the port into the specified file where other tools can easily read it. Starting from the remote server version 1.1, the server removes the port file automatically when the server is stopped.
  • Starting from the version 1.1, the server has activate method that can be called to activate the server without starting it. This method returns the port that the server binds and also sets it available via the attributes discussed below.
  • A started or actived server instance has server_address attribute that contains the address and the port as a tuple. Starting from the version 1.1 there is also server_port attribute that contains just the port as an integer.

Stopping remote server

The remote server can be gracefully stopped using several different methods:

  • Hitting Ctrl-C on the console where the server is running. Not supported automatically if the server is started on a background thread.
  • Sending the process SIGINT, SIGTERM, or SIGHUP signal. Does not work on Windows and not supported if the server is started on a background thread.
  • Using the``Stop Remote Server`` keyword. Can be disabled by using allow_remote_stop=False when initializing the server.
  • Using the stop_remote_server function in the XML-RPC interface. Can be disabled with the allow_remote_stop=False initialization parameter.
  • Running python -m robotremoteserver stop [uri] which uses the aforementioned stop_remote_server XML-RPC function internally. Can be disabled with the allow_remote_stop=False initialization parameter.
  • Using the stop_remote_server function provided by the robotremoteserver module similarly as when testing is server running. Uses the stop_remote_server XML-RPC function internally and can be disabled with the allow_remote_stop=False initialization parameter.
  • Calling the stop method of the running server instance. Mainly useful when running the server on background.

Testing is server running

Starting from the version 1.0.1, the robotremoteserver module supports testing is a remote server running. This can be accomplished by running the module as a script with test argument and an optional URI:

$ python -m robotremoteserver test
Remote server running at http://127.0.0.1:8270.
$ python -m robotremoteserver test http://10.0.0.42:57347
No remote server running at http://10.0.0.42:57347.

Starting from the version 1.1, the robotremoteserver module contains function test_remote_server that can be used programmatically:

from robotremoteserver import test_remote_server

if test_remote_server('http://localhost:8270'):
    print('Remote server running!')

The robotremoteserver module can be also used to stop a remote server by using stop argument on the command line or by using the stop_remote_server function programmatically. Testing and stopping should work also with other Robot Framework remote server implementations.

Listing keywords and viewing documentation

Using the built-in Libdoc tool you can list the keywords available on the server:

$ python -m robot.libdoc Remote::http://127.0.0.1:8270 list
Count Items In Directory
Stop Remote Server
Strings Should Be Equal

It is also possible to show the documentation on the command line by using argument show. HTML documentation can be created by providing name of an output file:

$ python -m robot.libdoc Remote::http://127.0.0.1:8270 MyLibrary.html
/path/to/MyLibrary.html

Example

The remote server project contains an example that can be studied and also executed once the library is installed. You can get the example by cloning the project on GitHub, and it is also included in the source distribution available on PyPI.

More Repositories

1

robotframework

Generic automation framework for acceptance testing and RPA
Python
8,979
star
2

SeleniumLibrary

Web testing library for Robot Framework
Python
1,336
star
3

RIDE

Test data editor for Robot Framework
Python
940
star
4

HowToWriteGoodTestCases

General guidelines for writing good test cases using Robot Framework
401
star
5

QuickStartGuide

Robot Framework Quick Start Guide
Python
276
star
6

WebDemo

Robot Framework web testing demo using SeleniumLibrary
RobotFramework
215
star
7

SSHLibrary

Robot Framework test library for SSH and SFTP
Python
147
star
8

SwingLibrary

Swing UI testing library for Robot Framework
Java
109
star
9

RobotDemo

Robot Framework demo
Python
98
star
10

robotframework.github.com

Robot Framework ecosystem from page
Vue
69
star
11

Selenium2Library

Web testing library for Robot Framework that has been renamed to SeleniumLibrary
Python
62
star
12

Rammbock

Rammbock - generic network protocol tester
Python
62
star
13

DbBot

DbBot is a tool to serialize Robot Framework test run results into a SQLite database.
Python
59
star
14

PythonLibCore

Tools to ease creating larger test libraries for Robot Framework using Python
Python
57
star
15

JavalibCore

Base for implementing Java test libraries to be used with Robot Framework
Java
42
star
16

jrobotremoteserver

Serves remote test libraries for Robot Framework that are implemented in Java.
Java
42
star
17

RemoteInterface

Introduction to the remote interface with a list of available remote servers
33
star
18

remoteswinglibrary

RemoteSwingLibrary
Python
31
star
19

DosDontsSlides

Robot Framework Dos and Don'ts
RobotFramework
26
star
20

statuschecker

Tool for validating that executed Robot Framework test cases have expected statuses and log messages.
Python
26
star
21

MavenPlugin

Maven plugin for using the Robot Framework
Java
24
star
22

swingexplorer

A project to host the swingexplorer jar files
21
star
23

BeginnersGuide

HTML
17
star
24

LibraryApiExamples

Executable examples demonstrating Robot Framework test library API.
Python
16
star
25

visual-identity

Guidelines and assets related to Robot Framework's visual identity
16
star
26

rfdoc

Automatically exported from code.google.com/p/rfdoc
Python
15
star
27

Generator

Script which generates a test project containing test libraries, test suites and resources.
Python
15
star
28

IntroSlides

Robot Framework Introduction slide set
RobotFramework
15
star
29

robotbackgroundlogger

Logger to test libraries that supports logging from threads
Python
13
star
30

OldSeleniumLibrary

Deprecated Selenium library for Robot Framework
Python
13
star
31

RemoteApplications

A Robot Framework test library that enables using libraries in external JVM.
Java
12
star
32

mabot

Automatically exported from code.google.com/p/robotframework-mabot
Python
12
star
33

ci-cd-examples

Collection of CI/CD pipelines executing Robto Framework test suites.
RobotFramework
12
star
34

JoyRide

Eclipse plugin for Robot Framework space separated data files
Java
12
star
35

HTMLChecker

Robot Framework test library for running checks and validations on HTML files
Python
12
star
36

robocon

HTML
10
star
37

pygmentslexer

Python
6
star
38

foundation

Robot Framework Foundation web pages
Vue
6
star
39

rellu

Tooling to ease creating releases
Python
6
star
40

JavatoolsTest

JDave extensions for testing Robot Framework libraries
Java
4
star
41

live

Live running Robot Framework examples that can be executed in Browser.
2
star
42

rpa

JavaScript
2
star