项目作者: qase-tms

项目描述 :
Qase TMS Robot Framework Listener
高级语言: Python
项目地址: git://github.com/qase-tms/qase-robotframework.git
创建时间: 2021-02-12T19:27:24Z
项目社区:https://github.com/qase-tms/qase-robotframework

开源协议:Apache License 2.0

下载


THIS REPO IS DEPRECATED. IT WAS MOVED HERE


Qase TMS Robot Framework Listener

License

Installation

  1. pip install qase-robotframework

Usage

You must add Qase case IDs to robot framework tests.
They should be added as a tags in form like Q-<case id without project code>. Examples:

  1. *** Test Cases ***
  2. Push button
  3. [Tags] Q-2
  4. Push button 1
  5. Result should be 1
  6. Push multiple buttons
  7. [Tags] Q-3
  8. Push button 1
  9. Push button 2
  10. Result should be 12
  1. *** Test Cases *** Expression Expected
  2. Addition 12 + 2 + 2 16
  3. 2 + -3 -1
  4. [Tags] Q-7
  5. Subtraction 12 - 2 - 2 8
  6. 2 - -3 5
  7. [Tags] Q-8

After adding new tags and configuring listener - you could simply use it like this:

  1. robot --listener qaseio.robotframework.Listener keyword_driven.robot data_driven.robot

Configuration

Listener supports loading configuration both from environment variables and from tox.ini file.

ENV variables:

  • QASE_API_TOKEN - API token to access Qase TMS
  • QASE_PROJECT - Project code from Qase TMS
  • QASE_RUN_ID - Run ID if you want to add results to existing run
  • QASE_RUN_NAME - Set custom run name when no run ID is provided
  • QASE_DEBUG - If passed something - will enable debug logging for listener

Usage:

  1. QASE_API_TOKEN=<API TOKEN> QASE_PROJECT=PRJCODE robot --listener qaseio.robotframework.Listener keyword_driven.robot data_driven.robot

tox.ini configuration:

  1. [qase]
  2. qase_api_token=<API TOKEN>
  3. qase_project=PROJECTCODE
  4. qase_run_id=14
  5. qase_run_name=New Robot Framework Run
  6. qase_debug=True

Working with steps

Listener supports reporting steps results:

But in order to use it, you should follow some rules:

  • Steps name in Qase TMS should match to the steps in Robot Framework
  • If step in RF has some parameters (e.g. Push Button 12)
    parameter would be ignored and the comparison to step in TMS will be made like:
    step in TMS should start with step name in RF. So if your step in RF is
    Open page it will be matched to step Open page https://qase.io in TMS.
  • You should preserve the order of steps. You can skip steps in RF, but
    you shouldn’t mix them or so on - Qase does not support creating steps
    on the fly yet.

Contribution

Install project locally:

  1. python3 -m venv .venv
  2. source .venv/bin/activate
  3. pip install -e .[testing]

Install dev requirements:

  1. pip install pre-commit
  2. pre-commit install

Test project:

  1. tox