Snapshot testing for Textual apps
Project description
pytest-textual-snapshot
A pytest plugin for snapshot testing Textual applications.
Installation
Install using pip:
pip install pytest-textual-snapshot
After installing, the snap_compare fixture will automatically be made available.
About
A pytest-textual-snapshot test saves an SVG screenshot of a running Textual app to disk.
The next time the test runs, it takes another screenshot and compares it to the saved one.
If the new screenshot differs from the old one, the test fails.
This is a convenient way to quickly and automatically detect visual regressions in your applications.
Usage
Running tests
You can run your tests using pytest as normal. You can use pytest-xdist to run your tests in parallel.
My snapshot test failed, what do I do?
If your snapshot test fails, it means that the screenshot taken during the test session differs from the last screenshot taken. This change is shown in the failure report, which you'll be given a linked to in the event of a failure.
If the diff shown in the failure report looks correct, you can update the snapshot on disk
by running pytest with the --snapshot-update flag.
Writing tests
Basic usage
Inject the snap_compare fixture into your test and call
it with an app instance or the path to the Textual app (the file containing the App subclass).
def test_my_app(snap_compare):
app = MyTextualApp() # a *non-running* Textual `App` instance
assert snap_compare(app)
def test_something(snap_compare):
assert snap_compare("path/to/app.py")
Pressing keys
Key presses can be simulated before the screenshot is taken.
def test_something(snap_compare):
assert snap_compare("path/to/app.py", press=["tab", "left", "a"])
Run code before screenshot
You can run some code before capturing a screenshot using the run_before parameter.
def test_something(snap_compare):
async def run_before(pilot: Pilot):
await pilot.press("ctrl+p")
# You can run arbitrary code before the screenshot occurs:
await disable_blink_for_active_cursors(pilot)
await pilot.press(*"view")
assert snap_compare(MyApp(), run_before=run_before)
Customizing the size of the terminal
If you need to change the size of the terminal (for example to fit in more content or test layout-related code), you can adjust the terminal_size parameter.
def test_another_thing(snap_compare):
assert snap_compare(MyApp(), terminal_size=(80, 34))
Quickly opening paths in your editor
If you passed a path to snap_compare, you can quickly open the path in your editor by setting the TEXTUAL_SNAPSHOT_FILE_OPEN_PREFIX environment variable based on the editor you want to use. Clicking on the path in the snapshot report will open the path in your editor.
file://- default, most likely opening in your browsercode://file/- opens the path in VS Codecursor://file/- opens the path in Cursorpycharm://- opens the path in PyCharm
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
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_textual_snapshot-1.1.0.tar.gz.
File metadata
- Download URL: pytest_textual_snapshot-1.1.0.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.7 Darwin/24.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96d48ab01306852a3b4ae165f008d5fdd7fda777e91e9d2c3ea0f7d7458544eb
|
|
| MD5 |
0633dc96f70ee1c7bc06597cb323204b
|
|
| BLAKE2b-256 |
3e7f4135f87e12c1c46376971fec5ebfe71f7f8b15ac20f887c90932dedd6e78
|
File details
Details for the file pytest_textual_snapshot-1.1.0-py3-none-any.whl.
File metadata
- Download URL: pytest_textual_snapshot-1.1.0-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.7 Darwin/24.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdf7727d2bc444f947554308da1b08df7a45215fe49d0621cbbc24c33e8f7b8d
|
|
| MD5 |
8dc8be2a50b3133fd6c6f0f15c3ef63b
|
|
| BLAKE2b-256 |
1c30c31d800f8d40d663fc84d83548b26aecf613c9c39bd6985c813d623d7b84
|