2017-06-27 12:05:54 +02:00
# Functional tests
2013-11-21 07:57:25 +01:00
2017-06-27 12:05:54 +02:00
### Writing Functional Tests
2013-11-21 07:57:25 +01:00
2017-06-27 12:05:54 +02:00
#### Example test
2014-02-18 15:42:37 +01:00
2019-10-17 20:26:36 +02:00
The file [test/functional/example_test.py ](example_test.py ) is a heavily commented example
of a test case that uses both the RPC and P2P interfaces. If you are writing your first test, copy
that file and modify to fit your needs.
2014-02-18 15:42:37 +01:00
2017-06-27 12:05:54 +02:00
#### Coverage
2015-08-05 23:47:34 +02:00
2019-10-17 20:26:36 +02:00
Running `test/functional/test_runner.py` with the `--coverage` argument tracks which RPCs are
2017-06-27 12:05:54 +02:00
called by the tests and prints a report of uncovered RPCs in the summary. This
can be used (along with the `--extended` argument) to find out which RPCs we
don't have test cases for.
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
#### Style guidelines
2015-08-05 23:47:34 +02:00
2018-01-05 00:49:03 +01:00
- Where possible, try to adhere to [PEP-8 guidelines ](https://www.python.org/dev/peps/pep-0008/ )
2017-06-27 12:05:54 +02:00
- Use a python linter like flake8 before submitting PRs to catch common style
nits (eg trailing whitespace, unused imports, etc)
2019-01-15 22:05:48 +01:00
- The oldest supported Python version is specified in [doc/dependencies.md ](/doc/dependencies.md ).
Consider using [pyenv ](https://github.com/pyenv/pyenv ), which checks [.python-version ](/.python-version ),
to prevent accidentally introducing modern syntax from an unsupported Python version.
The Travis linter also checks this, but [possibly not in all cases ](https://github.com/bitcoin/bitcoin/pull/14884#discussion_r239585126 ).
2018-05-29 15:35:01 +02:00
- See [the python lint script ](/test/lint/lint-python.sh ) that checks for violations that
could lead to bugs and issues in the test code.
2019-01-25 17:53:39 +01:00
- Avoid wildcard imports
2017-06-27 12:05:54 +02:00
- Use a module-level docstring to describe what the test is testing, and how it
is testing it.
- When subclassing the BitcoinTestFramwork, place overrides for the
2017-09-01 18:47:13 +02:00
`set_test_params()` , `add_options()` and `setup_xxxx()` methods at the top of
the subclass, then locally-defined helper methods, then the `run_test()` method.
2020-07-13 06:25:47 +02:00
- Use `f'{x}'` for string formatting in preference to `'{}'.format(x)` or `'%s' % x` .
2015-08-05 23:47:34 +02:00
2020-07-17 01:44:20 +02:00
#### Naming guidelines
- Name the test `<area>_test.py` , where area can be one of the following:
- `feature` for tests for full features that aren't wallet/mining/mempool, eg `feature_rbf.py`
- `interface` for tests for other interfaces (REST, ZMQ, etc), eg `interface_rest.py`
- `mempool` for tests for mempool behaviour, eg `mempool_reorg.py`
- `mining` for tests for mining features, eg `mining_prioritisetransaction.py`
- `p2p` for tests that explicitly test the p2p interface, eg `p2p_disconnect_ban.py`
- `rpc` for tests for individual RPC methods or features, eg `rpc_listtransactions.py`
2019-02-08 16:40:13 +01:00
- `tool` for tests for tools, eg `tool_wallet.py`
2020-07-17 01:44:20 +02:00
- `wallet` for tests for wallet features, eg `wallet_keypool.py`
- use an underscore to separate words
- exception: for tests for specific RPCs or command line options which don't include underscores, name the test after the exact RPC or argument name, eg `rpc_decodescript.py` , not `rpc_decode_script.py`
- Don't use the redundant word `test` in the name, eg `interface_zmq.py` , not `interface_zmq_test.py`
2017-06-27 12:05:54 +02:00
#### General test-writing advice
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
- Set `self.num_nodes` to the minimum number of nodes necessary for the test.
Having additional unrequired nodes adds to the execution time of the test as
well as memory/CPU/disk requirements (which is important when running tests in
parallel or on Travis).
- Avoid stop-starting the nodes multiple times during the test if possible. A
stop-start takes several seconds, so doing it several times blows up the
runtime of the test.
2017-09-01 18:47:13 +02:00
- Set the `self.setup_clean_chain` variable in `set_test_params()` to control whether
2017-06-27 12:05:54 +02:00
or not to use the cached data directories. The cached data directories
contain a 200-block pre-mined blockchain and wallets for four nodes. Each node
2019-07-12 18:39:18 +02:00
has 25 mature blocks (25x500=12500 DASH) in its wallet.
2017-06-27 12:05:54 +02:00
- When calling RPCs with lots of arguments, consider using named keyword
arguments instead of positional arguments to make the intent of the call
clear to readers.
2018-09-27 17:06:40 +02:00
- Many of the core test framework classes such as `CBlock` and `CTransaction`
don't allow new attributes to be added to their objects at runtime like
typical Python objects allow. This helps prevent unpredictable side effects
from typographical errors or usage of the objects outside of their intended
purpose.
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
#### RPC and P2P definitions
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
Test writers may find it helpful to refer to the definitions for the RPC and
P2P messages. These can be found in the following source files:
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
- `/src/rpc/*` for RPCs
- `/src/wallet/rpc*` for wallet RPCs
- `ProcessMessage()` in `/src/net_processing.cpp` for parsing P2P messages
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
#### Using the P2P interface
2015-08-05 23:47:34 +02:00
2019-10-17 20:26:36 +02:00
- [messages.py ](test_framework/messages.py ) contains all the definitions for objects that pass
2017-06-27 12:05:54 +02:00
over the network (`CBlock`, `CTransaction` , etc, along with the network-level
wrappers for them, `msg_block` , `msg_tx` , etc).
- P2P tests have two threads. One thread handles all network communication
2018-06-29 18:04:25 +02:00
with the dashd(s) being tested in a callback-based event loop; the other
2015-08-05 23:47:34 +02:00
implements the test logic.
2017-11-30 23:58:58 +01:00
- `P2PConnection` is the class used to connect to a dashd. `P2PInterface`
contains the higher level logic for processing P2P payloads and connecting to
the Bitcoin Core node application logic. For custom behaviour, subclass the
P2PInterface object and override the callback methods.
2015-08-05 23:47:34 +02:00
2017-06-27 12:05:54 +02:00
- Can be used to write tests where specific P2P protocol behavior is tested.
2019-10-17 20:26:36 +02:00
Examples tests are [p2p_unrequested_blocks.py ](p2p_unrequested_blocks.py ),
[p2p_compactblocks.py ](p2p_compactblocks.py ).
2015-08-05 23:47:34 +02:00
2019-11-04 20:52:51 +01:00
#### Prototyping tests
The [`TestShell` ](test-shell.md ) class exposes the BitcoinTestFramework
functionality to interactive Python3 environments and can be used to prototype
tests. This may be especially useful in a REPL environment with session logging
utilities, such as
[IPython ](https://ipython.readthedocs.io/en/stable/interactive/reference.html#session-logging-and-restoring ).
The logs of such interactive sessions can later be adapted into permanent test
cases.
2019-10-17 20:26:36 +02:00
### Test framework modules
The following are useful modules for test developers. They are located in
[test/functional/test_framework/ ](test_framework ).
2017-06-27 12:05:54 +02:00
2019-10-17 20:26:36 +02:00
#### [authproxy.py](test_framework/authproxy.py)
2017-06-27 12:05:54 +02:00
Taken from the [python-bitcoinrpc repository ](https://github.com/jgarzik/python-bitcoinrpc ).
2019-10-17 20:26:36 +02:00
#### [test_framework.py](test_framework/test_framework.py)
2017-06-27 12:05:54 +02:00
Base class for functional tests.
2015-08-05 23:47:34 +02:00
2019-10-17 20:26:36 +02:00
#### [util.py](test_framework/util.py)
2017-06-27 12:05:54 +02:00
Generally useful functions.
2019-10-17 20:26:36 +02:00
#### [mininode.py](test_framework/mininode.py)
2019-07-12 18:39:18 +02:00
Basic code to support P2P connectivity to a dashd.
2017-06-27 12:05:54 +02:00
2019-10-17 20:26:36 +02:00
#### [script.py](test_framework/script.py)
2017-06-27 12:05:54 +02:00
Utilities for manipulating transaction scripts (originally from python-bitcoinlib)
2019-10-17 20:26:36 +02:00
#### [key.py](test_framework/key.py)
2019-09-25 11:46:50 +02:00
Test-only secp256k1 elliptic curve implementation
2017-06-27 12:05:54 +02:00
2019-10-17 20:26:36 +02:00
#### [blocktools.py](test_framework/blocktools.py)
2017-06-27 12:05:54 +02:00
Helper functions for creating blocks and transactions.
Merge #14519: tests: add utility to easily profile node performance with perf
13782b8ba8 docs: add perf section to developer docs (James O'Beirne)
58180b5fd4 tests: add utility to easily profile node performance with perf (James O'Beirne)
Pull request description:
Adds a context manager to easily (and selectively) profile node performance during functional test execution using `perf`.
While writing some tests, I encountered some odd bitcoind slowness. I wrote up a utility (`TestNode.profile_with_perf`) that generates performance diagnostics for a node by running `perf` during the execution of a particular region of test code.
`perf` usage is detailed in the excellent (and sadly unmerged) https://github.com/bitcoin/bitcoin/pull/12649; all due props to @eklitzke.
### Example
```python
with node.profile_with_perf("large-msgs"):
for i in range(200):
node.p2p.send_message(some_large_msg)
node.p2p.sync_with_ping()
```
This generates a perf data file in the test node's datadir (`/tmp/testtxmpod0y/node0/node-0-TestName-large-msgs.perf.data`).
Running `perf report` generates nice output about where the node spent most of its time while running that part of the test:
```bash
$ perf report -i /tmp/testtxmpod0y/node0/node-0-TestName-large-msgs.perf.data --stdio \
| c++filt \
| less
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 135 of event 'cycles:pp'
# Event count (approx.): 1458205679493582
#
# Children Self Command Shared Object Symbol
# ........ ........ ............... ................... ........................................................................................................................................................................................................................................................................
#
70.14% 0.00% bitcoin-net bitcoind [.] CNode::ReceiveMsgBytes(char const*, unsigned int, bool&)
|
---CNode::ReceiveMsgBytes(char const*, unsigned int, bool&)
70.14% 0.00% bitcoin-net bitcoind [.] CNetMessage::readData(char const*, unsigned int)
|
---CNetMessage::readData(char const*, unsigned int)
CNode::ReceiveMsgBytes(char const*, unsigned int, bool&)
35.52% 0.00% bitcoin-net bitcoind [.] std::vector<char, zero_after_free_allocator<char> >::_M_fill_insert(__gnu_cxx::__normal_iterator<char*, std::vector<char, zero_after_free_allocator<char> > >, unsigned long, char const&)
|
---std::vector<char, zero_after_free_allocator<char> >::_M_fill_insert(__gnu_cxx::__normal_iterator<char*, std::vector<char, zero_after_free_allocator<char> > >, unsigned long, char const&)
CNetMessage::readData(char const*, unsigned int)
CNode::ReceiveMsgBytes(char const*, unsigned int, bool&)
...
```
Tree-SHA512: 9ac4ceaa88818d5eca00994e8e3c8ad42ae019550d6583972a0a4f7b0c4f61032e3d0c476b4ae58756bc5eb8f8015a19a7fc26c095bd588f31d49a37ed0c6b3e
2019-02-05 23:40:11 +01:00
### Benchmarking with perf
An easy way to profile node performance during functional tests is provided
for Linux platforms using `perf` .
Perf will sample the running node and will generate profile data in the node's
datadir. The profile data can then be presented using `perf report` or a graphical
tool like [hotspot ](https://github.com/KDAB/hotspot ).
There are two ways of invoking perf: one is to use the `--perf` flag when
running tests, which will profile each node during the entire test run: perf
begins to profile when the node starts and ends when it shuts down. The other
way is the use the `profile_with_perf` context manager, e.g.
```python
with node.profile_with_perf("send-big-msgs"):
# Perform activity on the node you're interested in profiling, e.g.:
for _ in range(10000):
node.p2p.send_message(some_large_message)
```
To see useful textual output, run
```sh
perf report -i /path/to/datadir/send-big-msgs.perf.data.xxxx --stdio | c++filt | less
```
#### See also:
- [Installing perf ](https://askubuntu.com/q/50145 )
- [Perf examples ](http://www.brendangregg.com/perf.html )
- [Hotspot ](https://github.com/KDAB/hotspot ): a GUI for perf output analysis