diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2018-10-24 12:33:50 +0800 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-03-11 21:54:44 +0000 |
commit | 34da2b7c76a023459e46e3a2ca4dc3ecc2b9a438 (patch) | |
tree | 2ef89bfe7d967a879864e648a93dd86ed9fbbf12 /test | |
parent | 8965b6ab4753f3223d90d9c1ab03b190f0320dd8 (diff) |
tests: add test case for loading copied wallet twice
Github-Pull: #14320
Rebased-From: 4ea7732
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/wallet_multiwallet.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py index f53172639c..6e0c109e60 100755 --- a/test/functional/wallet_multiwallet.py +++ b/test/functional/wallet_multiwallet.py @@ -220,6 +220,10 @@ class MultiWalletTest(BitcoinTestFramework): # Fail to load if one wallet is a copy of another assert_raises_rpc_error(-1, "BerkeleyBatch: Can't open database w8_copy (duplicates fileid", self.nodes[0].loadwallet, 'w8_copy') + # Fail to load if one wallet is a copy of another, test this twice to make sure that we don't re-introduce #14304 + assert_raises_rpc_error(-1, "BerkeleyBatch: Can't open database w8_copy (duplicates fileid", self.nodes[0].loadwallet, 'w8_copy') + + # Fail to load if wallet file is a symlink assert_raises_rpc_error(-4, "Wallet file verification failed: Invalid -wallet path 'w8_symlink'", self.nodes[0].loadwallet, 'w8_symlink') |