Changeset View
Changeset View
Standalone View
Standalone View
test/functional/multiwallet.py
| Show All 27 Lines | def run_test(self): | ||||
| '-wallet=w1', '-wallet=w1'], 'Error loading wallet w1. Duplicate -wallet filename specified.') | '-wallet=w1', '-wallet=w1'], 'Error loading wallet w1. Duplicate -wallet filename specified.') | ||||
| # should not initialize if wallet file is a directory | # should not initialize if wallet file is a directory | ||||
| os.mkdir(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w11')) | os.mkdir(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w11')) | ||||
| self.assert_start_raises_init_error(0, self.options.tmpdir, [ | self.assert_start_raises_init_error(0, self.options.tmpdir, [ | ||||
| '-wallet=w11'], 'Error loading wallet w11. -wallet filename must be a regular file.') | '-wallet=w11'], 'Error loading wallet w11. -wallet filename must be a regular file.') | ||||
| # should not initialize if wallet file is a symlink | # should not initialize if wallet file is a symlink | ||||
| os.symlink(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w1'), | wallet_dir = os.path.abspath(os.path.join( | ||||
| os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w12')) | self.options.tmpdir, 'node0', 'regtest')) | ||||
| os.symlink(os.path.join(wallet_dir, 'w1'), | |||||
| os.path.join(wallet_dir, 'w12')) | |||||
| self.assert_start_raises_init_error(0, self.options.tmpdir, [ | self.assert_start_raises_init_error(0, self.options.tmpdir, [ | ||||
| '-wallet=w12'], 'Error loading wallet w12. -wallet filename must be a regular file.') | '-wallet=w12'], 'Error loading wallet w12. -wallet filename must be a regular file.') | ||||
| self.nodes[0] = self.start_node( | self.nodes[0] = self.start_node( | ||||
| 0, self.options.tmpdir, self.extra_args[0]) | 0, self.options.tmpdir, self.extra_args[0]) | ||||
| w1 = self.nodes[0].get_wallet_rpc("w1") | w1 = self.nodes[0].get_wallet_rpc("w1") | ||||
| w2 = self.nodes[0].get_wallet_rpc("w2") | w2 = self.nodes[0].get_wallet_rpc("w2") | ||||
| ▲ Show 20 Lines • Show All 44 Lines • Show Last 20 Lines | |||||