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
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
File details
Details for the file pytest_mask_secrets-1.2.0.tar.gz
.
File metadata
- Download URL: pytest_mask_secrets-1.2.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.17.3 CPython/3.10.12 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e27dc7e9d0bca11da6e19bd1ce9abeecbba67467b23360204af7029359c98af |
|
MD5 | 11ea0df9117321ca1eb478371d46fae0 |
|
BLAKE2b-256 | a1f697289b8fc0cc4716b535c8fe7cb1a99288251f63222cac04ec65e6156f62 |
File details
Details for the file pytest_mask_secrets-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_mask_secrets-1.2.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.17.3 CPython/3.10.12 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 608326df1211e1c92f8d898b83b19d6452f0e3f9fc9ecbcaacb9db10b745ae33 |
|
MD5 | 6a101b300c2e0998179b334e109e0d6f |
|
BLAKE2b-256 | 857402580c270e24d72fe337d8ce1306eeb4b23c40972f621f1564c1a19d56ed |