2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
2018-07-27 00:36:45 +02:00
|
|
|
# Copyright (c) 2014-2018 The Bitcoin Core developers
|
2014-10-23 03:48:19 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2014-10-07 20:22:58 +02:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-07-31 23:36:27 +02:00
|
|
|
"""Test the -alertnotify, -blocknotify and -walletnotify options."""
|
2017-03-24 17:35:28 +01:00
|
|
|
import os
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
from test_framework.address import ADDRESS_BCRT1_UNSPENDABLE
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2017-07-31 23:36:27 +02:00
|
|
|
from test_framework.util import assert_equal, wait_until, connect_nodes_bi
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
|
2017-07-31 23:13:27 +02:00
|
|
|
class NotificationsTest(BitcoinTestFramework):
|
2017-06-10 00:21:21 +02:00
|
|
|
def set_test_params(self):
|
2016-05-14 13:01:31 +02:00
|
|
|
self.num_nodes = 2
|
2017-07-31 23:36:27 +02:00
|
|
|
self.setup_clean_chain = True
|
2016-05-14 13:01:31 +02:00
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def setup_network(self):
|
2018-09-20 09:33:07 +02:00
|
|
|
self.alertnotify_dir = os.path.join(self.options.tmpdir, "alertnotify")
|
|
|
|
self.blocknotify_dir = os.path.join(self.options.tmpdir, "blocknotify")
|
|
|
|
self.walletnotify_dir = os.path.join(self.options.tmpdir, "walletnotify")
|
|
|
|
os.mkdir(self.alertnotify_dir)
|
|
|
|
os.mkdir(self.blocknotify_dir)
|
|
|
|
os.mkdir(self.walletnotify_dir)
|
2017-07-31 23:36:27 +02:00
|
|
|
|
|
|
|
# -alertnotify and -blocknotify on node0, walletnotify on node1
|
2018-09-23 17:34:51 +02:00
|
|
|
self.extra_args = [[
|
2018-09-20 09:33:07 +02:00
|
|
|
"-alertnotify=echo > {}".format(os.path.join(self.alertnotify_dir, '%s')),
|
|
|
|
"-blocknotify=echo > {}".format(os.path.join(self.blocknotify_dir, '%s'))],
|
2017-07-31 23:36:27 +02:00
|
|
|
["-blockversion=211",
|
|
|
|
"-rescan",
|
2018-09-20 09:33:07 +02:00
|
|
|
"-walletnotify=echo > {}".format(os.path.join(self.walletnotify_dir, '%s'))]]
|
2017-06-09 22:35:17 +02:00
|
|
|
super().setup_network()
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def run_test(self):
|
2017-07-31 23:13:27 +02:00
|
|
|
self.log.info("test -blocknotify")
|
|
|
|
block_count = 10
|
2018-09-23 17:34:51 +02:00
|
|
|
blocks = self.nodes[1].generatetoaddress(block_count, self.nodes[1].getnewaddress() if self.is_wallet_compiled() else ADDRESS_BCRT1_UNSPENDABLE)
|
2017-07-31 23:13:27 +02:00
|
|
|
|
2018-09-20 09:33:07 +02:00
|
|
|
# wait at most 10 seconds for expected number of files before reading the content
|
|
|
|
wait_until(lambda: len(os.listdir(self.blocknotify_dir)) == block_count, timeout=10)
|
2017-07-31 23:13:27 +02:00
|
|
|
|
2018-09-20 09:33:07 +02:00
|
|
|
# directory content should equal the generated blocks hashes
|
|
|
|
assert_equal(sorted(blocks), sorted(os.listdir(self.blocknotify_dir)))
|
2017-07-31 23:13:27 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
if self.is_wallet_compiled():
|
|
|
|
self.log.info("test -walletnotify")
|
|
|
|
# wait at most 10 seconds for expected number of files before reading the content
|
|
|
|
wait_until(lambda: len(os.listdir(self.walletnotify_dir)) == block_count, timeout=10)
|
2017-07-31 23:36:27 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
# directory content should equal the generated transaction hashes
|
|
|
|
txids_rpc = list(map(lambda t: t['txid'], self.nodes[1].listtransactions("*", block_count)))
|
|
|
|
assert_equal(sorted(txids_rpc), sorted(os.listdir(self.walletnotify_dir)))
|
2018-10-11 23:57:58 +02:00
|
|
|
self.stop_node(1)
|
2018-09-23 17:34:51 +02:00
|
|
|
for tx_file in os.listdir(self.walletnotify_dir):
|
|
|
|
os.remove(os.path.join(self.walletnotify_dir, tx_file))
|
2017-07-31 23:36:27 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
self.log.info("test -walletnotify after rescan")
|
|
|
|
# restart node to rescan to force wallet notifications
|
2018-10-11 23:57:58 +02:00
|
|
|
self.start_node(1)
|
2018-09-23 17:34:51 +02:00
|
|
|
connect_nodes_bi(self.nodes, 0, 1)
|
2017-07-31 23:36:27 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
wait_until(lambda: len(os.listdir(self.walletnotify_dir)) == block_count, timeout=10)
|
2017-07-31 23:36:27 +02:00
|
|
|
|
2018-09-23 17:34:51 +02:00
|
|
|
# directory content should equal the generated transaction hashes
|
|
|
|
txids_rpc = list(map(lambda t: t['txid'], self.nodes[1].listtransactions("*", block_count)))
|
|
|
|
assert_equal(sorted(txids_rpc), sorted(os.listdir(self.walletnotify_dir)))
|
2017-07-31 23:36:27 +02:00
|
|
|
|
2017-07-31 23:13:27 +02:00
|
|
|
# Mine another 41 up-version blocks. -alertnotify should trigger on the 51st.
|
|
|
|
self.log.info("test -alertnotify")
|
2018-09-23 17:34:51 +02:00
|
|
|
self.nodes[1].generatetoaddress(41, ADDRESS_BCRT1_UNSPENDABLE)
|
2014-10-20 14:14:04 +02:00
|
|
|
self.sync_all()
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2017-03-24 17:35:28 +01:00
|
|
|
# Give bitcoind 10 seconds to write the alert notification
|
2018-09-20 09:33:07 +02:00
|
|
|
wait_until(lambda: len(os.listdir(self.alertnotify_dir)), timeout=10)
|
2017-03-24 17:35:28 +01:00
|
|
|
|
2018-09-20 09:33:07 +02:00
|
|
|
for notify_file in os.listdir(self.alertnotify_dir):
|
|
|
|
os.remove(os.path.join(self.alertnotify_dir, notify_file))
|
2014-10-07 20:22:58 +02:00
|
|
|
|
|
|
|
# Mine more up-version blocks, should not get more alerts:
|
2018-09-23 17:34:51 +02:00
|
|
|
self.nodes[1].generatetoaddress(2, ADDRESS_BCRT1_UNSPENDABLE)
|
2014-10-20 14:14:04 +02:00
|
|
|
self.sync_all()
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2017-10-04 16:37:33 +02:00
|
|
|
self.log.info("-alertnotify should not continue notifying for more unknown version blocks")
|
2018-09-20 09:33:07 +02:00
|
|
|
assert_equal(len(os.listdir(self.alertnotify_dir)), 0)
|
2014-10-07 20:22:58 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2017-07-31 23:13:27 +02:00
|
|
|
NotificationsTest().main()
|