diff options
| author | Andrew Chow <[email protected]> | 2018-01-06 02:08:57 -0500 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2018-01-11 23:58:54 -0500 |
| commit | 134cdc7cee3da7c554e40ad947a9cdcbb3069f13 (patch) | |
| tree | 18551e0451cc729cb0b5a05f518ebbba99c45316 | |
| parent | Clamp walletpassphrase timeout to 2^(30) seconds and check its bounds (diff) | |
| download | discoin-134cdc7cee3da7c554e40ad947a9cdcbb3069f13.tar.xz discoin-134cdc7cee3da7c554e40ad947a9cdcbb3069f13.zip | |
Test walletpassphrase timeout bounds and clamping
| -rwxr-xr-x | test/functional/wallet-encryption.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/functional/wallet-encryption.py b/test/functional/wallet-encryption.py index 452e8ec29..3c927ee48 100755 --- a/test/functional/wallet-encryption.py +++ b/test/functional/wallet-encryption.py @@ -10,6 +10,8 @@ from test_framework.test_framework import BitcoinTestFramework from test_framework.util import ( assert_equal, assert_raises_rpc_error, + assert_greater_than, + assert_greater_than_or_equal, ) class WalletEncryptionTest(BitcoinTestFramework): @@ -56,6 +58,23 @@ class WalletEncryptionTest(BitcoinTestFramework): assert_raises_rpc_error(-14, "wallet passphrase entered was incorrect", self.nodes[0].walletpassphrase, passphrase, 10) self.nodes[0].walletpassphrase(passphrase2, 10) assert_equal(privkey, self.nodes[0].dumpprivkey(address)) + self.nodes[0].walletlock() + + # Test timeout bounds + assert_raises_rpc_error(-8, "Timeout cannot be negative.", self.nodes[0].walletpassphrase, passphrase2, -10) + # Check the timeout + # Check a time less than the limit + expected_time = int(time.time()) + (1 << 30) - 600 + self.nodes[0].walletpassphrase(passphrase2, (1 << 30) - 600) + actual_time = self.nodes[0].getwalletinfo()['unlocked_until'] + assert_greater_than_or_equal(actual_time, expected_time) + assert_greater_than(expected_time + 5, actual_time) # 5 second buffer + # Check a time greater than the limit + expected_time = int(time.time()) + (1 << 30) - 1 + self.nodes[0].walletpassphrase(passphrase2, (1 << 33)) + actual_time = self.nodes[0].getwalletinfo()['unlocked_until'] + assert_greater_than_or_equal(actual_time, expected_time) + assert_greater_than(expected_time + 5, actual_time) # 5 second buffer if __name__ == '__main__': WalletEncryptionTest().main() |