Skip to content

Commit

Permalink
tests: add test case for loading copied wallet twice
Browse files Browse the repository at this point in the history
  • Loading branch information
ken2812221 committed Oct 24, 2018
1 parent 2d796fa commit 4ea7732
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/functional/wallet_multiwallet.py
Expand Up @@ -229,6 +229,10 @@ def wallet_file(name):
# 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
if os.name != 'nt':
assert_raises_rpc_error(-4, "Wallet file verification failed: Invalid -wallet path 'w8_symlink'", self.nodes[0].loadwallet, 'w8_symlink')
Expand Down

0 comments on commit 4ea7732

Please sign in to comment.