-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We want to integrate Antithesis to run the existing Cardano node tests in an autonomous simulation environment with fault injection (network delays, crashes, timing reordering, etc.), in order to find concurrency and distributed-system bugs that are hard to catch in CI alone.
The goal is to reuse the current pytest-based test suite and enable reproducible execution and replay of failures within Antithesis.
Motivation
- The current test suite runs pytest-based integration tests against a running Cardano cluster.
- CI validates expected behavior, but does not systematically explore alternative schedules, timing variations, or failure scenarios.
- Antithesis allows us to:
- explore many possible executions of the same workload,
- replay failures deterministically,
- find bugs that do not reproduce reliably in CI.
High-level approach
- Build Docker images using the existing Nix-based build logic:
- Cardano node and related binaries
- Python test environment
- Push images to the company container registry.
- Tag images immutably (e.g. git SHA or image digest).
- Trigger Antithesis runs using those pinned images.
Required changes
Containerization
- Create Docker images for:
- Cardano node services
- Pytest test runner
- Move Nix-based builds to image build time.
Test adjustments
- Run the existing pytest test suite in Antithesis unchanged.
- Identify environment and execution assumptions (e.g. networking, paths, timing).
- Fix issues that prevent reliable execution under fault injection (e.g. configuration, retries for eventual consistency).
- Optionally introduce Antithesis Python SDK assertions where they add value.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request