Skip to main content

Robot Framework's library for creating and running DevOps tasks easily and efficiently.

Project description

robotframework-roboops

Robot Framework's library for creating, sharing and running DevOps tasks easily and efficiently.

Building pipelines with Robot Framework gives developers clear insight what CI/CD steps do (thanks to keyword based syntax). Allow them to execute pipelines easily also on their own machines before pushing to repository and waiting for CI/CD tool to take it up.

Thanks to nice RFWK reporting it should be easy and fast to follow pipelines and investigate issues.


Primarly designed for testers/developers who use Robot Framework. They often create own python libraries and must maintain them.

But it's not limited only to that - you can automate any stuff with it - with syntax you know and reports you love.

Features

  • uses robotframework for running tasks - see all the benefits of robotframework
    • one that brings a lot of benefits are report and log files
  • keyword for running commands
  • keyword for linking artifacts into report metadata
  • any failure makes remaining tasks to fail automatically (skip)
  • others to come - raise your idea!

Installation instructions

pip install robotframework-roboops

Usage

RoboOps is typical Robotframework library - use it as usual robot library.

As this library is mainly focused on running tasks instead of tests, try to use *** Tasks *** instead of *** Test Cases *** in .robot files.

This repository uses RoboOps for building, testing (and in future deploying) itself. See ci.robot file to see example how to do it.

This repository uses github actions - check this out to see how to use it in CI pipeline.

Example

*** Settings ***
Library    RoboOps
Library    OperatingSystem

*** Variables ***
${atest dir}     ${CURDIR}/atest    
&{install python env}    command=poetry install
&{unit tests}    command=poetry run coverage run --source=RoboOps -m pytest .
&{report coverage}    command=poetry run coverage report -m --fail-under=80
&{generate wheel}    command=poetry build
&{remove stale roboops package from atest env}    command=poetry remove robotframework-roboops    cwd=${atest dir}    ignore_rc=True
&{install atest env}    command=poetry install    cwd=${atest dir}   
&{install atest roboops package from whl}    command=poetry add ../    cwd=${atest dir}

*** Tasks ***
Unit Test Stage
    Roboops Run Command    &{install python env}
    Roboops Run Command    &{unit tests}
    Create Coverage Report And Save It
    
Build Package Stage
    Roboops Run Command    &{generate wheel}
    
Acceptance Test Stage
    Roboops Run Command    &{remove stale roboops package from atest env}
    Roboops Run Command    &{install atest env}
    Roboops Run Command    &{install atest roboops package from whl}
    Roboops Run Command    &{run atests}
    [Teardown]    Save Acceptance Tests Artifacts

*** Keywords ***
Create Coverage Report And Save It
    ${coverage}    Roboops Run Command    &{report coverage}
    Create File    coverage.log    ${coverage.stdout.decode()}
    Roboops Save File Artifact    coverage.log    coverage.log

Save Acceptance Tests Artifacts
    Roboops Save File Artifact    ${atest dir}/log.html    atest_log.html
    Roboops Save File Artifact    ${atest dir}/report.html    atest_report.html
    Roboops Save File Artifact    ${atest dir}/output.xml    atest_output.xml

Running tests

Test everything (unit tests, acceptance tests, building wheel) by running:

robot ci.robot

running pipeline with docker (using python 3.6)

build docker image and run it:

docker build -t roboops:latest .
docker run --user $(id -u):$(id -g) --rm -v "${PWD}":/code --env PYTHONPATH=. roboops:latest

Security considerations

Be aware that secrets provided in environment variables may be logged by Task (e.g. with Log keyword).

So don't provide secrets into steps where .robot file is executed for commits without any reviewers approval.

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-roboops-0.2.4.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

robotframework_roboops-0.2.4-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file robotframework-roboops-0.2.4.tar.gz.

File metadata

  • Download URL: robotframework-roboops-0.2.4.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.6.12 Linux/5.4.0-1036-azure

File hashes

Hashes for robotframework-roboops-0.2.4.tar.gz
Algorithm Hash digest
SHA256 ea0311fe22d2bb442c490addf1309eb74be3d797902a19618d6bd922fb364ccb
MD5 8d41905365f67a6bf2d76a42aa10b9c6
BLAKE2b-256 38568776047ef41ece11a4f5ffd52c8e84e44e2e49024822e7a924de24650348

See more details on using hashes here.

File details

Details for the file robotframework_roboops-0.2.4-py3-none-any.whl.

File metadata

File hashes

Hashes for robotframework_roboops-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 2d669ba8a2099912f55f8c069059c213f86e16ec7d0e4bd72a9f6dfc786d3688
MD5 b76ea542728b67210413880a55dd2f42
BLAKE2b-256 84c03c800548221204b23bf46c27105e81c297ded3acbf2addfa02950c852b18

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