Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdecker/lightning-integration
Lightning Integration Testing Framework
https://github.com/cdecker/lightning-integration
Last synced: 12 days ago
JSON representation
Lightning Integration Testing Framework
- Host: GitHub
- URL: https://github.com/cdecker/lightning-integration
- Owner: cdecker
- License: other
- Created: 2017-06-26T16:08:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-07T13:17:33.000Z (almost 3 years ago)
- Last Synced: 2024-10-12T20:27:42.514Z (28 days ago)
- Language: Python
- Size: 576 KB
- Stars: 74
- Watchers: 18
- Forks: 31
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-lightning-network - lightning-integration - Lightning Integration Testing Framework (Developer Resources / Libraries)
- awesome-lightning-network - lightning-integration - Lightning Integration Testing Framework (Developer Resources / Libraries)
README
# Lightning Integration Testing Framework
## Setup
The tests are written as py.test unit tests.
This facilitates the handling of fixtures and allows to instrument tests nicely, e.g., write a test once and run it against various combinations of clients.
To install the python dependencies and `bitcoind` use the following:apt-get install bitcoind python3 python3-pip
pip3 install -r requirements.txtWe suggest running this in a virtualenv in order to guard against changing dependencies.
We currently do not bundle the binaries that we test against.
In order for the tests to run you'll need to compile the various clients and move/link the binaries into the directories where the tests can find them.
Please refer to the various compilation instructions and make sure that the structure matches the following diagram:bin
├── eclair.jar
├── lightningd
├── lnd
└── ptarmdThe binaries for `lightningd`, `lnd` and [`ptarmd`](https://github.com/nayutaco/ptarmigan) should be pretty self-explanatory.
The binary artifact for `eclair` is the `jar`-file containing all dependencies for the `eclair-node` subproject.
It is usually called `eclair-node_X.Y.Z-SNAPSHOT-XXXXXX-capsule-fat.jar` and can be found in the `target` subdirectory.## Running the tests
The tests rely on py.test to create fixtures, wire them into the tests and run the tests themselves.
Execute all tests by runningpy.test -v test.py
This will run through all possible combinations of the implementations and report success/failure for each one.
[![asciicast](https://asciinema.org/a/126309.png)](https://asciinema.org/a/126309)
To run only tests involving a certain implementation you can also run the following (taking `lightningd` as an example):
py.test -v test.py -k LightningNode
Not sure where a test dies? Make the whole thing extremely verbose with this:
TEST_DEBUG=1 py.test -v test.py -s -k 'testConnect[EclairNode_LightningNode]'
Should you want to jump into an interactive session if something is about to fail run the following:
py.test -v test.py --pdb
This will run the tests until a failure would be recorded and start the python debugging console instead.
In the console you have a python REPL that has access to the context of the current test, and you can interact with the clients via the RPCs to gather more information about what is going wrong.## Workarounds
The following changes to the default configuration are used to ensure compatibility. Possibly the default configurations should be compatible, but that is not always possible to do in a timely fashion.
- lnd
- `--bitcoin.defaultremotedelay=144` since c-lightning will not allow large `to_self_delay`s (see lightningnetwork/lnd#788 and ElementsProject/lightning#1110)## Run with docker
To build things in a local docker container:
docker build --tag=lnintegration .
or
make docker-build
To both build and run that local docker container:
docker build --tag=lnintegration . && docker run lnintegration
or
make docker-run