Remove duplicate destination decoding
[bitcoinplatinum.git] / test / functional / multiwallet.py
blobe5453e9aaddcf4608342286be5e5688def47b11b
1 #!/usr/bin/env python3
2 # Copyright (c) 2017 The Bitcoin Core developers
3 # Distributed under the MIT software license, see the accompanying
4 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 """Test multiwallet.
7 Verify that a bitcoind node can load multiple wallet files
8 """
9 import os
11 from test_framework.test_framework import BitcoinTestFramework
12 from test_framework.util import assert_equal, assert_raises_jsonrpc
14 class MultiWalletTest(BitcoinTestFramework):
15 def set_test_params(self):
16 self.setup_clean_chain = True
17 self.num_nodes = 1
18 self.extra_args = [['-wallet=w1', '-wallet=w2', '-wallet=w3']]
20 def run_test(self):
21 self.stop_node(0)
23 # should not initialize if there are duplicate wallets
24 self.assert_start_raises_init_error(0, ['-wallet=w1', '-wallet=w1'], 'Error loading wallet w1. Duplicate -wallet filename specified.')
26 # should not initialize if wallet file is a directory
27 os.mkdir(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w11'))
28 self.assert_start_raises_init_error(0, ['-wallet=w11'], 'Error loading wallet w11. -wallet filename must be a regular file.')
30 # should not initialize if wallet file is a symlink
31 os.symlink(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w1'), os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w12'))
32 self.assert_start_raises_init_error(0, ['-wallet=w12'], 'Error loading wallet w12. -wallet filename must be a regular file.')
34 self.start_node(0, self.extra_args[0])
36 w1 = self.nodes[0].get_wallet_rpc("w1")
37 w2 = self.nodes[0].get_wallet_rpc("w2")
38 w3 = self.nodes[0].get_wallet_rpc("w3")
39 wallet_bad = self.nodes[0].get_wallet_rpc("bad")
41 w1.generate(1)
43 # accessing invalid wallet fails
44 assert_raises_jsonrpc(-18, "Requested wallet does not exist or is not loaded", wallet_bad.getwalletinfo)
46 # accessing wallet RPC without using wallet endpoint fails
47 assert_raises_jsonrpc(-19, "Wallet file not specified", self.nodes[0].getwalletinfo)
49 # check w1 wallet balance
50 w1_info = w1.getwalletinfo()
51 assert_equal(w1_info['immature_balance'], 50)
52 w1_name = w1_info['walletname']
53 assert_equal(w1_name, "w1")
55 # check w2 wallet balance
56 w2_info = w2.getwalletinfo()
57 assert_equal(w2_info['immature_balance'], 0)
58 w2_name = w2_info['walletname']
59 assert_equal(w2_name, "w2")
61 w3_name = w3.getwalletinfo()['walletname']
62 assert_equal(w3_name, "w3")
64 assert_equal({"w1", "w2", "w3"}, {w1_name, w2_name, w3_name})
66 w1.generate(101)
67 assert_equal(w1.getbalance(), 100)
68 assert_equal(w2.getbalance(), 0)
69 assert_equal(w3.getbalance(), 0)
71 w1.sendtoaddress(w2.getnewaddress(), 1)
72 w1.sendtoaddress(w3.getnewaddress(), 2)
73 w1.generate(1)
74 assert_equal(w2.getbalance(), 1)
75 assert_equal(w3.getbalance(), 2)
77 if __name__ == '__main__':
78 MultiWalletTest().main()