Skip to main content

Provides steps for a Gauge project, that runs tests against APIs

Project description

Gauge API Steps

License: MIT Python 3.13 Gauge XPath JSONPath OpenSSF Scorecard

A Python module, that provides re-usable steps for testing APIs with the Gauge framework.

Description

This is an extensible and flexible test-automation library for Gauge. It enables users with and without programming knowledge to create end-to-end test scenarios in Markdown syntax. Developers can still easily extend their test scenarios with custom code. Python's urllib is used to make requests against APIs. XML and JSON are supported and API responses can be validated with XPath and JSONPath.

Gauge Step Overview

Find the documentation on all Gauge steps of this project in the overview:

Gauge Step Overview

Quick Start

This is a library for the Gauge framework, so Gauge+Python must be installed first.

It is useful to understand the basic workings of Gauge first. The documentation is excellent.

  • Install the gauge-api-steps module
  • Find out the path to this module after installation:
    It should be in <project>/virtualenvironment/lib/python/site-packages/gauge_api_steps
  • Add that path to the property STEP_IMPL_DIR inside the test project file env/default/python.properties. Paths to multiple modules are comma separated.
    Example on a Mac:
    STEP_IMPL_DIR = /<gauge-project-path>/virtualenvironment/lib/python/site-packages/gauge_api_steps, step_impl
    
  • Restart Visual Studio Code
  • Write a new scenario in specs/example.spec. VSC offers auto-completion

Installation

First, create a virtual environment in your Gauge project directory.

cd <project>
python -m venv virtualenvironment
source virtualenvironment/bin/activate

The Gauge module loader does not like dots . in directories, so a link must be created in the virtual environment for the python packages:

cd <project>/virtualenvironment
ln -sf python3.13 python

Afterwards, the latest version can be downloaded and installed from PyPi:

pip install gauge-api-steps --upgrade

Alternatively, it can also be installed from source:

cd path/to/gauge-api-steps
pip install .

Development

When coding on this project, unit tests can be executed like this:

python -m unittest discover -v -s tests/ -p 'test_*.py'

Contributions are welcome.

Configuration

The Configuration follows the Gauge configuration approach. A lot of behaviour, including redirect rules, logging, and secret masking, can be determined with properties.

Configuration Overview

Expressions in Parameters

Property Placeholders

Step parameters allow the use of placeholders, that can be defined in the Gauge environment properties files. Some steps also allow to set a placeholder value manually. Property keys act as placeholders, they are defined like ${key}. They will be replaced by its value if such a property key/value pair exists in any env/*/*.properties file or within the execution scope.

Mathematical Expressions

Mathematical expressions can also be evaluated. For example: #{5 + 5 * 5} is evaluated to 30.

It is possible to combine the two features. Placeholder substitution takes place before mathematical expression evaluation.

Functional Expressions

Functional expressions will generate a result during step execution. There are different expressions:

  • UUID generation: !{uuid}
  • Time: !{time}, !{time:%Y-%m-%d} - The time format is optional. If omitted, ISO format will be used. The time format pattern is described in the Python language documentation.
  • Encode Base64: !{base64:${user}:${password}} - Encodes the given value into Base64.
  • Encode Base64 in URL-safe mode: !{base64urlsafe:${value}} - Encodes the given value into Base64 with + and / replaced by - and _.
  • Decode Base64: !{base64decode:dXNlcjpwYXNz} - Decodes Base64 back to a string. It can handle standard and URL-safe variants and accepts input without padding.
  • URL-Encode: !{urlencode:?param one/two?} - URL-encodes the given value. Spaces will be replaced with +.
  • URL-Decode: !{urldecode:%3Fparam%20one%2Ftwo%3F} - URL-decodes the given value. +-signs will be replaced with spaces.
  • Load content from text file: !{file:resources/file.json} - The File must be inside the project directory.
  • Load graphQL from files: !{gql:resources/query.gql} or !{graphql:resources/query.gql} - This will automatically generate the JSON format, that can be used in the request body.
    • Variables and operation name is also supported. Values are colon-separated like so: !{gql:resources/query.gql:resources/vars.gql:my-operation}

Expression Examples

Note that the property expressions start with $, mathematical expressions with #, and functional expressions with !.

The property "homepage_url" can be defined in env/default/test.properties like this:

homepage_url = https://my-app.net

* Request "GET" "${homepage_url}/home"

* Print "5 + 6 = #{5 + 6}"

It is also possible to define a property in a step:

* Store "addend" "5"

* Print "5 + 5 * 5 = #{$addend + 5 * 5}"

And also to create new properties from old:

* Store "new_url" "${base_url}/id=!{uuid}&created=!{time}"

* Print "!{uuid}"

* Print "!{time}"

* Print "!{time:%Y-%m-%d}"

* Print "!{base64:user:password}"

* Print "!{base64urlsafe:param one}"

* Print "!{base64decode:dXNlcjpwYXNz}"

* Print "!{urlencode:?param one/two?}"

* Print "!{urldecode:%3Fparam%20one%2Ftwo%3F}"

* With body "!{file:resources/request.json}"

* With body "!{file:resources/request.xml}"

* With body "!{gql:resources/request.gql}"

* With body "!{gql:resources/request.gql:resources/variables.gql}"

* With body "!{gql:resources/request.gql:resources/variables.gql:operation-name}"

Internal Placeholders

Following placeholders are used internally to store data over multiple steps:

  • _opener
  • _response_csrf_header
  • _request_csrf_header
  • _csrf_value
  • _body
  • _response
  • _headers

It is possible to access and manipulate them with certain steps.

Maintainers

Maintainers

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

gauge_api_steps-0.26.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gauge_api_steps-0.26-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file gauge_api_steps-0.26.tar.gz.

File metadata

  • Download URL: gauge_api_steps-0.26.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gauge_api_steps-0.26.tar.gz
Algorithm Hash digest
SHA256 c2618f26aa2df0284d2f480c3790d1ec8f189f349bd22b12882b0e29d686773b
MD5 928546c9c01f1eb8b9398a0694bfeb7e
BLAKE2b-256 3fe8336effe3117c00d99af25ff942f38c9868e13713f016f1230efec313df86

See more details on using hashes here.

Provenance

The following attestation bundles were made for gauge_api_steps-0.26.tar.gz:

Publisher: publish.yaml on IBM/gauge-api-steps

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gauge_api_steps-0.26-py3-none-any.whl.

File metadata

  • Download URL: gauge_api_steps-0.26-py3-none-any.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for gauge_api_steps-0.26-py3-none-any.whl
Algorithm Hash digest
SHA256 1594594f31776de32e754d2c532f57cddfef3cd979f26a39e531a88be44dcba4
MD5 59402f71a00f56e4e1fdb5d9c4809bdf
BLAKE2b-256 ca4391581321ec0e6755feb2dabdbcd7dd09bb84cd5e6279c6e56de5fc83029d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gauge_api_steps-0.26-py3-none-any.whl:

Publisher: publish.yaml on IBM/gauge-api-steps

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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