2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2014-2016 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:13:27 +02:00
|
|
|
"""Test the -alertnotify and -blocknotify options."""
|
2017-03-24 17:35:28 +01:00
|
|
|
import os
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2017-10-04 16:37:33 +02:00
|
|
|
from test_framework.util import assert_equal, wait_until
|
2014-10-07 20:22:58 +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
|
|
|
|
|
2014-10-20 14:14:04 +02:00
|
|
|
def setup_network(self):
|
|
|
|
self.alert_filename = os.path.join(self.options.tmpdir, "alert.txt")
|
2017-07-31 23:13:27 +02:00
|
|
|
self.block_filename = os.path.join(self.options.tmpdir, 'blocks.txt')
|
|
|
|
self.extra_args = [["-blockversion=2",
|
|
|
|
"-alertnotify=echo %%s >> %s" % self.alert_filename,
|
|
|
|
"-blocknotify=echo %%s >> %s" % self.block_filename],
|
2017-06-09 22:35:17 +02:00
|
|
|
["-blockversion=211"]]
|
|
|
|
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
|
|
|
|
blocks = self.nodes[1].generate(block_count)
|
|
|
|
|
|
|
|
# wait at most 10 seconds for expected file size before reading the content
|
|
|
|
wait_until(lambda: os.path.isfile(self.block_filename) and os.stat(self.block_filename).st_size >= (block_count * 65), timeout=10)
|
|
|
|
|
|
|
|
# file content should equal the generated blocks hashes
|
|
|
|
with open(self.block_filename, 'r') as f:
|
|
|
|
assert_equal(sorted(blocks), sorted(f.read().splitlines()))
|
|
|
|
|
|
|
|
# Mine another 41 up-version blocks. -alertnotify should trigger on the 51st.
|
|
|
|
self.log.info("test -alertnotify")
|
|
|
|
self.nodes[1].generate(41)
|
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
|
2017-10-04 16:37:33 +02:00
|
|
|
wait_until(lambda: os.path.isfile(self.alert_filename) and os.path.getsize(self.alert_filename), timeout=10)
|
2017-03-24 17:35:28 +01:00
|
|
|
|
2016-09-29 17:34:44 +02:00
|
|
|
with open(self.alert_filename, 'r', encoding='utf8') as f:
|
2014-10-07 20:22:58 +02:00
|
|
|
alert_text = f.read()
|
|
|
|
|
|
|
|
# Mine more up-version blocks, should not get more alerts:
|
2017-10-04 16:37:33 +02:00
|
|
|
self.nodes[1].generate(2)
|
2014-10-20 14:14:04 +02:00
|
|
|
self.sync_all()
|
2014-10-07 20:22:58 +02:00
|
|
|
|
2016-09-29 17:34:44 +02:00
|
|
|
with open(self.alert_filename, 'r', encoding='utf8') as f:
|
2014-10-07 20:22:58 +02:00
|
|
|
alert_text2 = f.read()
|
|
|
|
|
2017-10-04 16:37:33 +02:00
|
|
|
self.log.info("-alertnotify should not continue notifying for more unknown version blocks")
|
|
|
|
assert_equal(alert_text, alert_text2)
|
2014-10-07 20:22:58 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2017-07-31 23:13:27 +02:00
|
|
|
NotificationsTest().main()
|