2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
2014-10-22 22:48:19 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2014-10-07 15:22:58 -03:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 20:34:40 -03:00
|
|
|
"""Test the -alertnotify option."""
|
2017-03-24 13:35:28 -03:00
|
|
|
import os
|
2014-10-07 15:22:58 -03:00
|
|
|
|
2015-05-02 07:53:35 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2017-10-04 11:37:33 -03:00
|
|
|
from test_framework.util import assert_equal, wait_until
|
2014-10-07 15:22:58 -03:00
|
|
|
|
|
|
|
class ForkNotifyTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2016-05-14 08:01:31 -03:00
|
|
|
self.num_nodes = 2
|
|
|
|
|
2014-10-20 09:14:04 -03:00
|
|
|
def setup_network(self):
|
|
|
|
self.alert_filename = os.path.join(self.options.tmpdir, "alert.txt")
|
2017-10-04 11:37:33 -03:00
|
|
|
self.extra_args = [["-alertnotify=echo %%s >> %s" % self.alert_filename],
|
2017-06-09 16:35:17 -04:00
|
|
|
["-blockversion=211"]]
|
|
|
|
super().setup_network()
|
2014-10-07 15:22:58 -03:00
|
|
|
|
2014-10-20 09:14:04 -03:00
|
|
|
def run_test(self):
|
2017-10-04 11:37:33 -03:00
|
|
|
# Mine 51 up-version blocks. -alertnotify should trigger on the 51st.
|
2015-04-01 00:28:28 -03:00
|
|
|
self.nodes[1].generate(51)
|
2014-10-20 09:14:04 -03:00
|
|
|
self.sync_all()
|
2014-10-07 15:22:58 -03:00
|
|
|
|
2017-03-24 13:35:28 -03:00
|
|
|
# Give bitcoind 10 seconds to write the alert notification
|
2017-10-04 11:37:33 -03:00
|
|
|
wait_until(lambda: os.path.isfile(self.alert_filename) and os.path.getsize(self.alert_filename), timeout=10)
|
2017-03-24 13:35:28 -03:00
|
|
|
|
2016-09-29 12:34:44 -03:00
|
|
|
with open(self.alert_filename, 'r', encoding='utf8') as f:
|
2014-10-07 15:22:58 -03:00
|
|
|
alert_text = f.read()
|
|
|
|
|
|
|
|
# Mine more up-version blocks, should not get more alerts:
|
2017-10-04 11:37:33 -03:00
|
|
|
self.nodes[1].generate(2)
|
2014-10-20 09:14:04 -03:00
|
|
|
self.sync_all()
|
2014-10-07 15:22:58 -03:00
|
|
|
|
2016-09-29 12:34:44 -03:00
|
|
|
with open(self.alert_filename, 'r', encoding='utf8') as f:
|
2014-10-07 15:22:58 -03:00
|
|
|
alert_text2 = f.read()
|
|
|
|
|
2017-10-04 11:37:33 -03:00
|
|
|
self.log.info("-alertnotify should not continue notifying for more unknown version blocks")
|
|
|
|
assert_equal(alert_text, alert_text2)
|
2014-10-07 15:22:58 -03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
ForkNotifyTest().main()
|