Skip to main content

Webservice for running Robot Framework tasks

Project description

PyPi license PyPi version PyPI pyversions PyPI download month

Robot Task Webservice

A web service managing Robot Framework tasks.

Status: Prototype

Goal

This web service shall start Robot Framework tasks and return and cache the according reports.

Installation and Execution

Default docker image does not support variable files, yet

Docker

docker pull ghcr.io/marketsquare/robotframework-webservice:master

After that you can run the image and map your test cases in to the webservice with a volumen:

docker run -v <host directory of test cases>:/robot/tests --env SUITE_FOLDER=tests rf-webservice:latest

Podman

Almost as Docker, but you might need to attach the webservice to the host network:

podman run --network host -v ./tasks:/robot/tasks --env SUITE_FOLDER=tasks rf-webservice:latest

Local

pip install robotframework-webservice

and execute from command line:

python -m RobotFrameworkService.main -p 5003 -t path_to_my_taskfolder

Usage

There are 2 types of endpoints:

  1. Execution
  2. Reporting

Execution

Endpoints that trigger execution of a robot task, for instance:

Call robot task:

http://localhost:5003/robotframework/run/mytask

Call robot task with variables:

http://localhost:5003/robotframework/run/mytask?myVariable1=42&anotherVariable=Mustermann

Response contains a header field x-request-id that can be used to retrieve logs and reports of this execution asynchronously.

Reporting

Endpoints that provide log.html and report.html for a specific task execution. You require the x-request-id from a previous response that triggered the execution.

Start web service

The web service starts automatically with uvicorn inside. Simply call:

python -m RobotFrameworkService.main

You can check available options with

python -m RobotFrameworkService.main --help

Example:

python -m RobotFrameworkService.main -p 5003 -t path_to_my_taskfolder

Example - Variablefiles:

You can provide variable files that are passed to all robot suites on execution:

python -m RobotFrameworkService.main -p 5003 -t path_to_my_taskfolder --variablefiles config/env/test.py

Custom WSGI server

You can start RobotFrameworkService with bare WSGI servers:

uvicorn RobotFrameworkService.main:app --port 5003

Or start web service with other WSGI server, i.e waitress:

waitress-serve --port 5003 RotbotFrameworkService.main:app

SwaggerUi

Swagger-UI is available under http://localhost:5003/docs

Demo-Tasks

This project contains some tasks for demonstration. They are located in tasks folder. You may add your own task suites in that directory, if you like.

Task name with spaces in URL

Tasks may contain spaces, URL must not. Luckily, Robot Framework supports CamelCase as well as snake_case syntax. Meaning: "Another Task" can be trigger in url with parameter AnotherTask or another_task

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robotframework-webservice-0.7.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

robotframework_webservice-0.7.0-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file robotframework-webservice-0.7.0.tar.gz.

File metadata

File hashes

Hashes for robotframework-webservice-0.7.0.tar.gz
Algorithm Hash digest
SHA256 1e5afa060eb8d3dc0d6db1b1c059d1728142b079f5093eaa978d66c4ba4d443f
MD5 1de6ccb267bec041bb5d7349c4c4a953
BLAKE2b-256 ed2771d0a3b499c8c7160aedb4c7680f8abab9a6dcaf68d137f352b6a14122db

See more details on using hashes here.

File details

Details for the file robotframework_webservice-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for robotframework_webservice-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 34b7106081f28458b3c99f08e902fac63867f903fc732898adc882cde8c4918e
MD5 a8e14e503657ec12ae980a012dd35e0e
BLAKE2b-256 a4186544291af7faeded7f3895bacaa8f67d2667c3d376e64bd5749de65a5fa9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page