Fake Sentry service for debugging and integration tests
Project description
Kent is a service for debugging and integration testing Sentry.
- Code:
- Issues:
- License:
MPL v2
Goals
Goals of Kent:
make it possible to debug before_send and before_breadcrumb sanitization code when using sentry-sdk
make it possible to debug other sentry error submission payload issues
make it possible to write integration tests against a fake sentry instance
Quick start
Installing and running on your local machine
Install Kent.
You can install Kent from PyPI with pipx or pip or whatever:
pipx install kent
You can install a REVISH (“main”, branch name, commit, whatever) from GitHub:
pipx install https://github.com/willkg/kent/archive/refs/heads/<REVISH>.zip
You can install from a checked out version of this repository:
pipx install .
Run Kent:
kent-server run [-h HOST] [-p PORT]
Running in a Docker container
I’m using something like this:
FROM python:3.10.1-alpine3.15 WORKDIR /app/ ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 RUN pip install -U 'pip>=8' && \ pip install --no-cache-dir 'kent==VERSION' USER guest ENTRYPOINT ["/usr/local/bin/kent-server"] CMD ["run"]
Replace VERSION with the version of Kent you want to use. See https://pypi.org/project/kent for releases.
Then:
$ docker build -t faksentry:latest . $ docker run --rm --publish 8000:8000 fakesentry:latest run --host 0.0.0.0 --port 8000
Things to know about Kent
Kent is the fakest of fake Sentry servers. It supports a single Sentry project with id 1. You can set up a Sentry DSN to point to Kent and have your application send errors.
Kent is a refined fake Sentry service and doesn’t like fast food.
Kent will keep track of the last 100 it received in memory. Nothing is persisted to disk.
You can access the list of errors and error data with your web browser by going to Kent’s index page.
You can also access it with the API. This is most useful for integration tests that want to assert things about errors.
- /api/errorlist/
List of all errors in memory with a unique error id.
- /api/error/ERRORID
Retrieve the payload for a specific error by id.
Kent definitely works with:
Python sentry-sdk client
I don’t know about anything else. If you use Kent with another Sentry client, add an issue with details or a pull request to update the README.
Release process
Check out main tip.
Update __version__ in src/kent/__init__.py.
Run:
$ make checkrot $ make test $ make testdocker $ check-manifest
Fix any issues from that.
Update HISTORY.rst.
Push any changes to GitHub.
Release:
$ git tag --sign 1.0.0 # Use contents from HISTORY.rst for tag comment $ make clean $ python setup.py sdist bdist_wheel $ twine upload dist/*
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
File details
Details for the file kent-0.2.0.tar.gz
.
File metadata
- Download URL: kent-0.2.0.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.6.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c794eab6bc87b2de8c7876ee2ec3d811c82ede8d1aba9c1998b3717c01c0af8a |
|
MD5 | 256f75b6c35262ee2fff682b1881b38c |
|
BLAKE2b-256 | 22d6b9ebb9867061c8b02b4ee3546fe668c547e1dd31e044625a57693b1950dc |
File details
Details for the file kent-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: kent-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.6.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf20ae6f539bd4d7d561aa15ebc8a102096c392d10f913e38b7cf341e860e8e3 |
|
MD5 | 3967f738044d705bba0a354a3611692c |
|
BLAKE2b-256 | 81f0aede557e0d7b423d15a3ed92c17beba45b9d7bf1e49709a88a3d7a0615a0 |