Skip to content

Commit

Permalink
Add test for -walletdir
Browse files Browse the repository at this point in the history
  • Loading branch information
meshcollider committed Nov 17, 2017
1 parent 0530ba0 commit 80c5cbc
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test/functional/multiwallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,19 @@ def run_test(self):
os.symlink(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w1'), os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w12'))
self.assert_start_raises_init_error(0, ['-wallet=w12'], 'Error loading wallet w12. -wallet filename must be a regular file.')

# should not initialize if the specified walletdir does not exist
self.assert_start_raises_init_error(0, ['-walletdir=bad'], 'Error: Specified wallet directory "bad" does not exist.')

# running the node with specified walletdir should only have the default wallet in it
os.mkdir(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'walletdir'))
self.start_node(0, ['-wallet=w4', '-wallet=w5', '-walletdir=' + os.path.join(self.options.tmpdir, 'node0', 'regtest', 'walletdir')])
assert_equal(set(self.nodes[0].listwallets()), {"w4", "w5"})
w5 = self.nodes[0].get_wallet_rpc("w5")
w5_info = w5.getwalletinfo()
assert_equal(w5_info['immature_balance'], 0)

self.stop_node(0)

self.start_node(0, self.extra_args[0])

w1 = self.nodes[0].get_wallet_rpc("w1")
Expand Down

0 comments on commit 80c5cbc

Please sign in to comment.