2019-10-16 07:18:39 +02:00
|
|
|
import json
|
2020-10-30 15:25:52 +01:00
|
|
|
import asyncio
|
|
|
|
from unittest import skip
|
2019-11-05 15:31:33 +01:00
|
|
|
|
2020-04-11 23:27:41 +02:00
|
|
|
from sqlalchemy import event
|
|
|
|
|
2020-10-30 15:25:52 +01:00
|
|
|
from lbry.wallet.wallet import ENCRYPT_ON_DISK
|
2019-12-31 20:52:57 +01:00
|
|
|
from lbry.error import InvalidPasswordError
|
2019-11-05 15:31:33 +01:00
|
|
|
from lbry.testcase import CommandTestCase
|
2020-10-30 15:25:52 +01:00
|
|
|
from lbry.blockchain.dewies import dict_values_to_lbc
|
2019-02-11 00:36:21 +01:00
|
|
|
|
|
|
|
|
2019-10-30 22:05:23 +01:00
|
|
|
class WalletCommands(CommandTestCase):
|
|
|
|
|
2020-10-30 15:25:52 +01:00
|
|
|
async def test_list_create_add_and_remove(self):
|
|
|
|
self.assertEqual(await self.wallet_list(), [{'id': 'default_wallet', 'name': 'Wallet'}])
|
2020-03-31 22:20:13 +02:00
|
|
|
self.assertEqual(
|
2020-10-30 15:25:52 +01:00
|
|
|
await self.wallet_create('another', "Another"),
|
|
|
|
{'id': 'another', 'name': 'Another'}
|
2020-03-31 22:20:13 +02:00
|
|
|
)
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.wallet_list(), [
|
|
|
|
{'id': 'default_wallet', 'name': 'Wallet'},
|
|
|
|
{'id': 'another', 'name': 'Another'}
|
|
|
|
])
|
|
|
|
self.assertEqual(await self.wallet_remove('another'), {'id': 'another', 'name': 'Another'})
|
|
|
|
self.assertEqual(await self.wallet_list(), [{'id': 'default_wallet', 'name': 'Wallet'}])
|
|
|
|
self.assertEqual(await self.wallet_add('another'), {'id': 'another', 'name': 'Another'})
|
|
|
|
self.assertEqual(await self.wallet_list(), [
|
|
|
|
{'id': 'default_wallet', 'name': 'Wallet'},
|
|
|
|
{'id': 'another', 'name': 'Another'}
|
|
|
|
])
|
|
|
|
|
|
|
|
@skip
|
|
|
|
async def test_reconnect(self):
|
2019-12-11 00:32:50 +01:00
|
|
|
await self.conductor.spv_node.stop(True)
|
|
|
|
self.conductor.spv_node.port = 54320
|
|
|
|
await self.conductor.spv_node.start(self.conductor.blockchain_node)
|
|
|
|
status = await self.daemon.jsonrpc_status()
|
|
|
|
self.assertEqual(len(status['wallet']['servers']), 1)
|
|
|
|
self.assertEqual(status['wallet']['servers'][0]['port'], 50002)
|
|
|
|
self.daemon.jsonrpc_settings_set('lbryum_servers', ['localhost:54320'])
|
2019-12-11 01:29:17 +01:00
|
|
|
await self.daemon.jsonrpc_wallet_reconnect()
|
2019-12-11 00:32:50 +01:00
|
|
|
status = await self.daemon.jsonrpc_status()
|
|
|
|
self.assertEqual(len(status['wallet']['servers']), 1)
|
|
|
|
self.assertEqual(status['wallet']['servers'][0]['port'], 54320)
|
|
|
|
|
2019-11-04 22:41:42 +01:00
|
|
|
async def test_granular_balances(self):
|
2020-10-30 15:25:52 +01:00
|
|
|
account2 = (await self.account_create("Tip-er"))["id"]
|
|
|
|
wallet2 = (await self.wallet_create("foo", create_account=True))["id"]
|
|
|
|
account3 = (await self.account_list(wallet_id=wallet2))[0]["id"]
|
|
|
|
address3 = await self.address_unused(account3, wallet2)
|
|
|
|
await self.chain.send_to_address(address3, 1)
|
2020-03-20 23:24:24 +01:00
|
|
|
await self.generate(1)
|
2019-11-04 22:41:42 +01:00
|
|
|
|
|
|
|
expected = {
|
|
|
|
'total': '10.0',
|
|
|
|
'available': '10.0',
|
|
|
|
'reserved': '0.0',
|
|
|
|
'reserved_subtotals': {'claims': '0.0', 'supports': '0.0', 'tips': '0.0'}
|
|
|
|
}
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.account_balance(), expected)
|
|
|
|
self.assertEqual(await self.wallet_balance(), expected)
|
2019-11-04 22:41:42 +01:00
|
|
|
|
|
|
|
# claim with update + supporting our own claim
|
|
|
|
stream1 = await self.stream_create('granularity', '3.0')
|
2020-10-30 15:25:52 +01:00
|
|
|
await self.generate(1)
|
2019-11-04 22:41:42 +01:00
|
|
|
await self.stream_update(self.get_claim_id(stream1), data=b'news', bid='1.0')
|
2020-10-30 15:25:52 +01:00
|
|
|
await self.generate(1)
|
2019-11-04 22:41:42 +01:00
|
|
|
await self.support_create(self.get_claim_id(stream1), '2.0')
|
|
|
|
expected = {
|
2020-10-30 15:25:52 +01:00
|
|
|
'total': '9.977558',
|
|
|
|
'available': '6.977558',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.0',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.0'}
|
|
|
|
}
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.account_balance(), expected)
|
|
|
|
self.assertEqual(await self.wallet_balance(), expected)
|
2019-11-04 22:41:42 +01:00
|
|
|
|
2020-10-30 15:25:52 +01:00
|
|
|
address2 = await self.address_unused(account2)
|
2019-11-04 22:41:42 +01:00
|
|
|
|
|
|
|
# send lbc to someone else
|
2020-10-30 15:25:52 +01:00
|
|
|
tx = await self.wallet_send('1.0', address2, fund_account_id=self.account.id)
|
|
|
|
await self.generate(1)
|
|
|
|
self.assertEqual(await self.account_balance(), {
|
|
|
|
'total': '8.977434',
|
|
|
|
'available': '5.977434',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.0',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.0'}
|
|
|
|
})
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.wallet_balance(), {
|
|
|
|
'total': '9.977434',
|
|
|
|
'available': '6.977434',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.0',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.0'}
|
|
|
|
})
|
|
|
|
|
|
|
|
# tip received
|
|
|
|
support1 = await self.support_create(
|
2020-10-30 15:25:52 +01:00
|
|
|
self.get_claim_id(stream1), '0.3', tip=True, wallet_id=wallet2
|
2019-11-04 22:41:42 +01:00
|
|
|
)
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.account_balance(), {
|
|
|
|
'total': '9.277434',
|
|
|
|
'available': '5.977434',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.3',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.3'}
|
|
|
|
})
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.wallet_balance(), {
|
|
|
|
'total': '10.277434',
|
|
|
|
'available': '6.977434',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.3',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.3'}
|
|
|
|
})
|
|
|
|
|
|
|
|
# tip claimed
|
2020-10-30 15:25:52 +01:00
|
|
|
tx = await self.support_abandon(txid=support1['txid'])
|
|
|
|
await self.generate(1)
|
|
|
|
self.assertEqual(await self.account_balance(), {
|
|
|
|
'total': '9.277327',
|
|
|
|
'available': '6.277327',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.0',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.0'}
|
|
|
|
})
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.wallet_balance(), {
|
|
|
|
'total': '10.277327',
|
|
|
|
'available': '7.277327',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.0',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.0'}
|
|
|
|
})
|
|
|
|
|
|
|
|
stream2 = await self.stream_create(
|
2020-10-30 15:25:52 +01:00
|
|
|
'granularity-is-cool', '0.1',
|
|
|
|
account_id=account2, fund_account_id=[account2], change_account_id=account2
|
2019-11-04 22:41:42 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# tip another claim
|
|
|
|
await self.support_create(
|
2020-10-30 15:25:52 +01:00
|
|
|
self.get_claim_id(stream2), '0.2', tip=True, wallet_id=wallet2
|
2019-11-04 22:41:42 +01:00
|
|
|
)
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.account_balance(), {
|
|
|
|
'total': '9.277327',
|
|
|
|
'available': '6.277327',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.0',
|
|
|
|
'reserved_subtotals': {'claims': '1.0', 'supports': '2.0', 'tips': '0.0'}
|
|
|
|
})
|
2020-10-30 15:25:52 +01:00
|
|
|
self.assertEqual(await self.wallet_balance(), {
|
|
|
|
'total': '10.43922',
|
|
|
|
'available': '7.13922',
|
2019-11-04 22:41:42 +01:00
|
|
|
'reserved': '3.3',
|
|
|
|
'reserved_subtotals': {'claims': '1.1', 'supports': '2.0', 'tips': '0.2'}
|
|
|
|
})
|
|
|
|
|
2019-10-30 22:05:23 +01:00
|
|
|
|
2019-10-16 07:18:39 +02:00
|
|
|
class WalletEncryptionAndSynchronization(CommandTestCase):
|
2019-02-11 00:36:21 +01:00
|
|
|
|
2019-10-16 07:18:39 +02:00
|
|
|
SEED = (
|
|
|
|
"carbon smart garage balance margin twelve chest "
|
|
|
|
"sword toast envelope bottom stomach absent"
|
|
|
|
)
|
|
|
|
|
|
|
|
async def asyncSetUp(self):
|
|
|
|
await super().asyncSetUp()
|
2020-10-30 15:25:52 +01:00
|
|
|
self.daemon2 = await self.add_full_node(
|
2019-10-13 01:33:16 +02:00
|
|
|
seed="chest sword toast envelope bottom stomach absent "
|
|
|
|
"carbon smart garage balance margin twelve"
|
2019-02-11 00:36:21 +01:00
|
|
|
)
|
2019-10-16 07:18:39 +02:00
|
|
|
address = (await self.daemon2.wallet_manager.default_account.receiving.get_addresses(limit=1, only_usable=True))[0]
|
2019-10-13 01:33:16 +02:00
|
|
|
sendtxid = await self.blockchain.send_to_address(address, 1)
|
2019-10-16 07:18:39 +02:00
|
|
|
await self.confirm_tx(sendtxid, self.daemon2.ledger)
|
|
|
|
|
|
|
|
def assertWalletEncrypted(self, wallet_path, encrypted):
|
2020-01-17 01:51:49 +01:00
|
|
|
with open(wallet_path) as opened:
|
|
|
|
wallet = json.load(opened)
|
|
|
|
self.assertEqual(wallet['accounts'][0]['private_key'][1:4] != 'prv', encrypted)
|
2019-10-16 07:18:39 +02:00
|
|
|
|
|
|
|
async def test_sync(self):
|
|
|
|
daemon, daemon2 = self.daemon, self.daemon2
|
2019-02-11 00:36:21 +01:00
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
# Preferences
|
|
|
|
self.assertFalse(daemon.jsonrpc_preference_get())
|
|
|
|
self.assertFalse(daemon2.jsonrpc_preference_get())
|
2019-02-11 00:36:21 +01:00
|
|
|
|
2019-10-16 23:19:04 +02:00
|
|
|
daemon.jsonrpc_preference_set("fruit", '["peach", "apricot"]')
|
2019-10-13 01:33:16 +02:00
|
|
|
daemon.jsonrpc_preference_set("one", "1")
|
|
|
|
daemon.jsonrpc_preference_set("conflict", "1")
|
2019-10-16 23:19:04 +02:00
|
|
|
daemon2.jsonrpc_preference_set("another", "A")
|
2019-10-13 01:33:16 +02:00
|
|
|
await asyncio.sleep(1)
|
2019-10-16 23:19:04 +02:00
|
|
|
# these preferences will win after merge since they are "newer"
|
2019-10-13 01:33:16 +02:00
|
|
|
daemon2.jsonrpc_preference_set("two", "2")
|
|
|
|
daemon2.jsonrpc_preference_set("conflict", "2")
|
2019-10-16 23:19:04 +02:00
|
|
|
daemon.jsonrpc_preference_set("another", "B")
|
2019-02-11 00:36:21 +01:00
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
self.assertDictEqual(daemon.jsonrpc_preference_get(), {
|
2019-10-16 23:19:04 +02:00
|
|
|
"one": "1", "conflict": "1", "another": "B", "fruit": ["peach", "apricot"]
|
2019-10-13 01:33:16 +02:00
|
|
|
})
|
2019-10-16 07:18:39 +02:00
|
|
|
self.assertDictEqual(daemon2.jsonrpc_preference_get(), {
|
2019-10-16 23:19:04 +02:00
|
|
|
"two": "2", "conflict": "2", "another": "A"
|
2019-10-16 07:18:39 +02:00
|
|
|
})
|
2019-02-11 00:36:21 +01:00
|
|
|
|
2019-10-26 05:34:44 +02:00
|
|
|
self.assertItemCount(await daemon.jsonrpc_account_list(), 1)
|
2019-02-11 00:36:21 +01:00
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
data = await daemon2.jsonrpc_sync_apply('password')
|
|
|
|
await daemon.jsonrpc_sync_apply('password', data=data['data'], blocking=True)
|
2019-03-11 14:52:35 +01:00
|
|
|
|
2019-10-26 05:34:44 +02:00
|
|
|
self.assertItemCount(await daemon.jsonrpc_account_list(), 2)
|
2019-10-13 01:33:16 +02:00
|
|
|
self.assertDictEqual(
|
|
|
|
# "two" key added and "conflict" value changed to "2"
|
|
|
|
daemon.jsonrpc_preference_get(),
|
2019-10-16 23:19:04 +02:00
|
|
|
{"one": "1", "two": "2", "conflict": "2", "another": "B", "fruit": ["peach", "apricot"]}
|
2019-03-11 14:52:35 +01:00
|
|
|
)
|
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
# Channel Certificate
|
|
|
|
channel = await daemon2.jsonrpc_channel_create('@foo', '0.1')
|
2019-10-16 07:18:39 +02:00
|
|
|
await self.confirm_tx(channel.id, self.daemon2.ledger)
|
2019-09-03 15:51:41 +02:00
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
# both daemons will have the channel but only one has the cert so far
|
2019-10-26 05:34:44 +02:00
|
|
|
self.assertItemCount(await daemon.jsonrpc_channel_list(), 1)
|
2019-10-13 01:33:16 +02:00
|
|
|
self.assertEqual(len(daemon.wallet_manager.default_wallet.accounts[1].channel_keys), 0)
|
2019-10-26 05:34:44 +02:00
|
|
|
self.assertItemCount(await daemon2.jsonrpc_channel_list(), 1)
|
2019-10-13 01:33:16 +02:00
|
|
|
self.assertEqual(len(daemon2.wallet_manager.default_account.channel_keys), 1)
|
2019-09-03 15:51:41 +02:00
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
data = await daemon2.jsonrpc_sync_apply('password')
|
|
|
|
await daemon.jsonrpc_sync_apply('password', data=data['data'], blocking=True)
|
2019-09-03 15:51:41 +02:00
|
|
|
|
2019-10-13 01:33:16 +02:00
|
|
|
# both daemons have the cert after sync'ing
|
|
|
|
self.assertEqual(
|
|
|
|
daemon2.wallet_manager.default_account.channel_keys,
|
|
|
|
daemon.wallet_manager.default_wallet.accounts[1].channel_keys
|
|
|
|
)
|
2019-10-16 07:18:39 +02:00
|
|
|
|
|
|
|
async def test_encryption_and_locking(self):
|
|
|
|
daemon = self.daemon
|
|
|
|
wallet = daemon.wallet_manager.default_wallet
|
2019-10-18 21:58:32 +02:00
|
|
|
wallet.save()
|
2019-10-16 07:18:39 +02:00
|
|
|
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon.jsonrpc_wallet_status(), {
|
|
|
|
'is_locked': False, 'is_encrypted': False, 'is_syncing': False
|
|
|
|
})
|
2019-10-16 07:18:39 +02:00
|
|
|
self.assertIsNone(daemon.jsonrpc_preference_get(ENCRYPT_ON_DISK))
|
|
|
|
self.assertWalletEncrypted(wallet.storage.path, False)
|
|
|
|
|
|
|
|
# can't lock an unencrypted account
|
|
|
|
with self.assertRaisesRegex(AssertionError, "Cannot lock an unencrypted wallet, encrypt first."):
|
|
|
|
daemon.jsonrpc_wallet_lock()
|
|
|
|
# safe to call unlock and decrypt, they are no-ops at this point
|
|
|
|
daemon.jsonrpc_wallet_unlock('password') # already unlocked
|
|
|
|
daemon.jsonrpc_wallet_decrypt() # already not encrypted
|
|
|
|
|
|
|
|
daemon.jsonrpc_wallet_encrypt('password')
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': True,
|
|
|
|
'is_syncing': False})
|
2019-10-16 15:18:28 +02:00
|
|
|
self.assertEqual(daemon.jsonrpc_preference_get(ENCRYPT_ON_DISK), {'encrypt-on-disk': True})
|
2019-10-16 07:18:39 +02:00
|
|
|
self.assertWalletEncrypted(wallet.storage.path, True)
|
|
|
|
|
|
|
|
daemon.jsonrpc_wallet_lock()
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': True, 'is_encrypted': True,
|
|
|
|
'is_syncing': False})
|
2019-10-16 07:18:39 +02:00
|
|
|
|
2019-10-16 15:18:28 +02:00
|
|
|
# can't sign transactions with locked wallet
|
2019-10-16 19:54:09 +02:00
|
|
|
with self.assertRaises(AssertionError):
|
2019-10-16 07:18:39 +02:00
|
|
|
await daemon.jsonrpc_channel_create('@foo', '1.0')
|
|
|
|
daemon.jsonrpc_wallet_unlock('password')
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': True,
|
|
|
|
'is_syncing': False})
|
2019-10-16 07:18:39 +02:00
|
|
|
await daemon.jsonrpc_channel_create('@foo', '1.0')
|
|
|
|
|
|
|
|
daemon.jsonrpc_wallet_decrypt()
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': False,
|
|
|
|
'is_syncing': False})
|
2019-10-16 15:18:28 +02:00
|
|
|
self.assertEqual(daemon.jsonrpc_preference_get(ENCRYPT_ON_DISK), {'encrypt-on-disk': False})
|
2019-10-16 07:18:39 +02:00
|
|
|
self.assertWalletEncrypted(wallet.storage.path, False)
|
|
|
|
|
2019-10-18 03:52:20 +02:00
|
|
|
async def test_encryption_with_imported_channel(self):
|
|
|
|
daemon, daemon2 = self.daemon, self.daemon2
|
|
|
|
channel = await self.channel_create()
|
|
|
|
exported = await daemon.jsonrpc_channel_export(self.get_claim_id(channel))
|
|
|
|
await daemon2.jsonrpc_channel_import(exported)
|
|
|
|
self.assertTrue(daemon2.jsonrpc_wallet_encrypt('password'))
|
|
|
|
self.assertTrue(daemon2.jsonrpc_wallet_lock())
|
|
|
|
self.assertTrue(daemon2.jsonrpc_wallet_unlock("password"))
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon2.jsonrpc_wallet_status(),
|
|
|
|
{'is_locked': False, 'is_encrypted': True, 'is_syncing': False})
|
2019-10-18 03:52:20 +02:00
|
|
|
|
2019-10-16 07:18:39 +02:00
|
|
|
async def test_sync_with_encryption_and_password_change(self):
|
|
|
|
daemon, daemon2 = self.daemon, self.daemon2
|
|
|
|
wallet, wallet2 = daemon.wallet_manager.default_wallet, daemon2.wallet_manager.default_wallet
|
|
|
|
|
2019-10-16 16:06:17 +02:00
|
|
|
self.assertEqual(wallet2.encryption_password, None)
|
|
|
|
self.assertEqual(wallet2.encryption_password, None)
|
|
|
|
|
2019-10-16 07:18:39 +02:00
|
|
|
daemon.jsonrpc_wallet_encrypt('password')
|
2019-10-16 15:18:28 +02:00
|
|
|
self.assertEqual(wallet.encryption_password, 'password')
|
2019-10-16 07:18:39 +02:00
|
|
|
|
|
|
|
data = await daemon2.jsonrpc_sync_apply('password2')
|
2019-10-16 16:06:17 +02:00
|
|
|
# sync_apply doesn't save password if encrypt-on-disk is False
|
|
|
|
self.assertEqual(wallet2.encryption_password, None)
|
|
|
|
# need to use new password2 in sync_apply
|
2019-12-07 15:16:04 +01:00
|
|
|
with self.assertRaises(InvalidPasswordError):
|
2019-10-16 07:18:39 +02:00
|
|
|
await daemon.jsonrpc_sync_apply('password', data=data['data'], blocking=True)
|
|
|
|
await daemon.jsonrpc_sync_apply('password2', data=data['data'], blocking=True)
|
2019-10-16 16:06:17 +02:00
|
|
|
# sync_apply with new password2 also sets it as new local password
|
2019-10-16 15:18:28 +02:00
|
|
|
self.assertEqual(wallet.encryption_password, 'password2')
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': True,
|
|
|
|
'is_syncing': True})
|
2019-10-16 07:18:39 +02:00
|
|
|
self.assertEqual(daemon.jsonrpc_preference_get(ENCRYPT_ON_DISK), {'encrypt-on-disk': True})
|
|
|
|
self.assertWalletEncrypted(wallet.storage.path, True)
|
|
|
|
|
2019-10-16 15:18:28 +02:00
|
|
|
# check new password is active
|
2019-10-16 07:18:39 +02:00
|
|
|
daemon.jsonrpc_wallet_lock()
|
|
|
|
self.assertFalse(daemon.jsonrpc_wallet_unlock('password'))
|
|
|
|
self.assertTrue(daemon.jsonrpc_wallet_unlock('password2'))
|
|
|
|
|
2019-10-16 15:18:28 +02:00
|
|
|
# propagate disk encryption to daemon2
|
2019-10-16 16:06:17 +02:00
|
|
|
data = await daemon.jsonrpc_sync_apply('password3')
|
|
|
|
# sync_apply (even with no data) on wallet with encrypt-on-disk updates local password
|
|
|
|
self.assertEqual(wallet.encryption_password, 'password3')
|
2019-10-16 15:18:28 +02:00
|
|
|
self.assertEqual(wallet2.encryption_password, None)
|
2019-10-16 16:06:17 +02:00
|
|
|
await daemon2.jsonrpc_sync_apply('password3', data=data['data'], blocking=True)
|
|
|
|
# the other device got new password and on disk encryption
|
|
|
|
self.assertEqual(wallet2.encryption_password, 'password3')
|
2020-03-26 18:56:51 +01:00
|
|
|
self.assertEqual(daemon2.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': True,
|
|
|
|
'is_syncing': True})
|
2019-10-16 07:18:39 +02:00
|
|
|
self.assertEqual(daemon2.jsonrpc_preference_get(ENCRYPT_ON_DISK), {'encrypt-on-disk': True})
|
2019-10-16 15:18:28 +02:00
|
|
|
self.assertWalletEncrypted(wallet2.storage.path, True)
|
2019-10-16 07:18:39 +02:00
|
|
|
|
|
|
|
daemon2.jsonrpc_wallet_lock()
|
2019-10-16 16:06:17 +02:00
|
|
|
self.assertTrue(daemon2.jsonrpc_wallet_unlock('password3'))
|