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-01-18 00:34:40 +01:00
|
|
|
"""Test the -alertnotify option."""
|
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
|
|
|
|
|
|
|
class ForkNotifyTest(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-10-04 16:37:33 +02:00
|
|
|
self.extra_args = [["-alertnotify=echo %%s >> %s" % self.alert_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-10-04 16:37:33 +02:00
|
|
|
# Mine 51 up-version blocks. -alertnotify should trigger on the 51st.
|
2015-04-01 05:28:28 +02:00
|
|
|
self.nodes[1].generate(51)
|
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__':
|
|
|
|
ForkNotifyTest().main()
|