Pytest plugin to hide sensitive data in test reports
Project description
pytest-mask-secrets
pytest-mask-secrets is a plugin for pytest that removes sensitive data from test reports.
Based on the configuration, it searches for specified secrets, passwords, and tokens in the records and replaces them with asterisks.
While this feature is usually provided by CI tools, it can be insufficient in many situations as it only strips secrets from the captured output. A common case of leaking secrets is through generated JUnit files that are not curated by CI tools. Therefore, it is necessary to have such functionality at the pytest level.
Installation
pip install pytest-mask-secrets
Usage
pytest-mask-secrets needs to know which values to mask. These values are read
from environment variables. The list of these variables is passed in the
MASK_SECRETS environment variable, which contains a comma-separated list of
all environment variables containing secrets. Here is an example:
export PYPI_API_TOKEN=mytoken
export SOME_PASSWORD=mypassword
export MASK_SECRETS=PYPI_API_TOKEN,SOME_PASSWORD
pytest
With pytest-mask-secrets installed, all occurrences of "mytoken" and "mypassword" will be eliminated from the report.
Define Secret Values in the Code
Tests can use config.stash to define secret values to be masked. There is a
mask_secrets_key available that provides access to a set() where additional
secret values can be added. Here is an example:
from pytest_mask_secrets.plugin import mask_secrets_key
def test(pytestconfig):
pytestconfig.stash[mask_secrets_key].add("true-secret")
...
All occurrences of "true-secret" will be removed from the report.
Automagic Identification of Variables with Secrets
If MASK_SECRETS_AUTO is set to anything other than zero ("0"), all
environment variables containing the words "TOKEN", "SECRET," "PASSWORD," or
"PASSWD" in their names are considered sensitive, and their values are removed
from the report.
This discovery mode should be used with caution. CI workflows, in particular, should rely on an explicit list of secret variables. Under certain circumstances, this method can lead to the leakage of other sensitive data (if, by accident, a secret from an environment variable matches text commonly present in the test report). Nevertheless, this method can still be useful for example for local execution to prevent accidental leaks through copy-and-paste.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_mask_secrets-1.4.0.tar.gz.
File metadata
- Download URL: pytest_mask_secrets-1.4.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.22.3 CPython/3.12.3 Linux/6.8.0-1020-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a066a01692fa89e12a67a854ec1424719792a2bfef6ceb123eee4aa55c288b8a
|
|
| MD5 |
c1450d50f90d7cbb014276d27bef8ee1
|
|
| BLAKE2b-256 |
3c2a49d54d0b30b566b0745cc242d1597506079f34b4403715eb7ac499bb5f85
|
File details
Details for the file pytest_mask_secrets-1.4.0-py3-none-any.whl.
File metadata
- Download URL: pytest_mask_secrets-1.4.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.22.3 CPython/3.12.3 Linux/6.8.0-1020-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f488f43e2626faa31e5788529085e9afa1d56deb3e1043c03a073eeec3611ca6
|
|
| MD5 |
4c7b68fb9f35c7a9b5e7904c99f45499
|
|
| BLAKE2b-256 |
37161a819ae8008ec9880b385301f96c44251ac6bfcbf395eda990079afd460e
|