2016-05-06 11:23:48 +02: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-06-16 14:45:32 +02:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test the wallet keypool and interaction with wallet encryption/locking."""
|
2014-06-16 14:45:32 +02:00
|
|
|
|
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
|
|
|
import time
|
|
|
|
|
2015-11-15 17:58:01 +01:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
|
|
|
from test_framework.util import assert_equal, assert_raises_rpc_error
|
2014-06-16 14:45:32 +02:00
|
|
|
|
2015-11-15 17:58:01 +01:00
|
|
|
class KeyPoolTest(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2018-04-18 13:48:59 +02:00
|
|
|
self.num_nodes = 1
|
2017-09-01 18:47:13 +02:00
|
|
|
self.extra_args = [['-usehd=0']]
|
2018-04-18 13:48:59 +02:00
|
|
|
|
2015-11-15 17:58:01 +01:00
|
|
|
def run_test(self):
|
|
|
|
nodes = self.nodes
|
2017-05-29 13:51:40 +02:00
|
|
|
|
2015-11-15 18:48:18 +01:00
|
|
|
# Encrypt wallet and wait to terminate
|
2018-09-14 10:28:27 +02:00
|
|
|
nodes[0].encryptwallet('test')
|
2015-11-15 18:48:18 +01:00
|
|
|
# Keep creating keys
|
2014-06-16 14:45:32 +02:00
|
|
|
addr = nodes[0].getnewaddress()
|
2017-05-29 13:51:40 +02:00
|
|
|
|
2019-09-25 11:34:51 +02:00
|
|
|
assert_raises_rpc_error(-12, "Error: Keypool ran out, please call keypoolrefill first", nodes[0].getnewaddress)
|
2015-11-15 18:48:18 +01:00
|
|
|
|
2017-09-20 22:31:12 +02:00
|
|
|
# put three new keys in the keypool
|
2015-11-15 18:48:18 +01:00
|
|
|
nodes[0].walletpassphrase('test', 12000)
|
2017-09-20 22:31:12 +02:00
|
|
|
nodes[0].keypoolrefill(3)
|
2015-11-15 18:48:18 +01:00
|
|
|
nodes[0].walletlock()
|
|
|
|
|
2017-09-20 22:31:12 +02:00
|
|
|
# drain the keys
|
2015-11-15 18:48:18 +01:00
|
|
|
addr = set()
|
2017-09-20 22:31:12 +02:00
|
|
|
addr.add(nodes[0].getrawchangeaddress())
|
|
|
|
addr.add(nodes[0].getrawchangeaddress())
|
|
|
|
addr.add(nodes[0].getrawchangeaddress())
|
|
|
|
# assert that three unique addresses were returned
|
2021-08-27 21:03:02 +02:00
|
|
|
assert len(addr) == 3
|
2015-11-15 18:48:18 +01:00
|
|
|
# the next one should fail
|
2019-09-25 11:34:51 +02:00
|
|
|
assert_raises_rpc_error(-12, "Keypool ran out", nodes[0].getrawchangeaddress)
|
2015-11-15 18:48:18 +01:00
|
|
|
|
|
|
|
# refill keypool with three new addresses
|
2016-01-08 13:12:16 +01:00
|
|
|
nodes[0].walletpassphrase('test', 1)
|
2015-11-15 18:48:18 +01:00
|
|
|
nodes[0].keypoolrefill(3)
|
2016-01-08 13:12:16 +01:00
|
|
|
# test walletpassphrase timeout
|
|
|
|
time.sleep(1.1)
|
|
|
|
assert_equal(nodes[0].getwalletinfo()["unlocked_until"], 0)
|
2015-11-15 18:48:18 +01:00
|
|
|
|
|
|
|
# drain them by mining
|
2015-08-18 09:07:33 +02:00
|
|
|
nodes[0].generate(1)
|
2015-11-15 18:48:18 +01:00
|
|
|
nodes[0].generate(1)
|
|
|
|
nodes[0].generate(1)
|
2019-09-25 11:34:51 +02:00
|
|
|
assert_raises_rpc_error(-12, "Keypool ran out", nodes[0].generate, 1)
|
2015-11-15 18:48:18 +01:00
|
|
|
|
2014-06-16 14:45:32 +02:00
|
|
|
if __name__ == '__main__':
|
2015-11-15 17:58:01 +01:00
|
|
|
KeyPoolTest().main()
|