forked from LBRYCommunity/lbry-sdk
a28c9d09c8
- working CommonWorkflowTests integration test - pylint, unit and integration test fixes - switch integration tests to use async/await
90 lines
3.6 KiB
Python
90 lines
3.6 KiB
Python
from twisted.trial import unittest
|
|
from twisted.internet import defer
|
|
|
|
from lbrynet.wallet.ledger import MainNetLedger, WalletDatabase
|
|
from lbrynet.wallet.account import Account
|
|
|
|
|
|
class TestAccount(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.ledger = MainNetLedger({'db': WalletDatabase(':memory:')})
|
|
return self.ledger.db.start()
|
|
|
|
@defer.inlineCallbacks
|
|
def test_generate_account(self):
|
|
account = Account.generate(self.ledger, u'lbryum')
|
|
self.assertEqual(account.ledger, self.ledger)
|
|
self.assertIsNotNone(account.seed)
|
|
self.assertEqual(account.public_key.ledger, self.ledger)
|
|
self.assertEqual(account.private_key.public_key, account.public_key)
|
|
|
|
self.assertEqual(account.public_key.ledger, self.ledger)
|
|
self.assertEqual(account.private_key.public_key, account.public_key)
|
|
|
|
addresses = yield account.receiving.get_addresses()
|
|
self.assertEqual(len(addresses), 0)
|
|
addresses = yield account.change.get_addresses()
|
|
self.assertEqual(len(addresses), 0)
|
|
|
|
yield account.ensure_address_gap()
|
|
|
|
addresses = yield account.receiving.get_addresses()
|
|
self.assertEqual(len(addresses), 20)
|
|
addresses = yield account.change.get_addresses()
|
|
self.assertEqual(len(addresses), 6)
|
|
|
|
@defer.inlineCallbacks
|
|
def test_generate_account_from_seed(self):
|
|
account = Account.from_seed(
|
|
self.ledger,
|
|
u"carbon smart garage balance margin twelve chest sword toast envelope bottom stomach ab"
|
|
u"sent",
|
|
u"lbryum"
|
|
)
|
|
self.assertEqual(
|
|
account.private_key.extended_key_string(),
|
|
'xprv9s21ZrQH143K42ovpZygnjfHdAqSd9jo7zceDfPRogM7bkkoNVv7DRNLEoB8'
|
|
'HoirMgH969NrgL8jNzLEegqFzPRWM37GXd4uE8uuRkx4LAe'
|
|
)
|
|
self.assertEqual(
|
|
account.public_key.extended_key_string(),
|
|
'xpub661MyMwAqRbcGWtPvbWh9sc2BCfw2cTeVDYF23o3N1t6UZ5wv3EMmDgp66FxH'
|
|
'uDtWdft3B5eL5xQtyzAtkdmhhC95gjRjLzSTdkho95asu9'
|
|
)
|
|
address = yield account.receiving.ensure_address_gap()
|
|
self.assertEqual(address[0], 'bCqJrLHdoiRqEZ1whFZ3WHNb33bP34SuGx')
|
|
|
|
private_key = yield self.ledger.get_private_key_for_address('bCqJrLHdoiRqEZ1whFZ3WHNb33bP34SuGx')
|
|
self.assertEqual(
|
|
private_key.extended_key_string(),
|
|
'xprv9vwXVierUTT4hmoe3dtTeBfbNv1ph2mm8RWXARU6HsZjBaAoFaS2FRQu4fptR'
|
|
'AyJWhJW42dmsEaC1nKnVKKTMhq3TVEHsNj1ca3ciZMKktT'
|
|
)
|
|
private_key = yield self.ledger.get_private_key_for_address('BcQjRlhDOIrQez1WHfz3whnB33Bp34sUgX')
|
|
self.assertIsNone(private_key)
|
|
|
|
def test_load_and_save_account(self):
|
|
account_data = {
|
|
'name': 'Main Account',
|
|
'seed':
|
|
"carbon smart garage balance margin twelve chest sword toast envelope bottom stomac"
|
|
"h absent",
|
|
'encrypted': False,
|
|
'private_key':
|
|
'xprv9s21ZrQH143K42ovpZygnjfHdAqSd9jo7zceDfPRogM7bkkoNVv7DRNLEoB8'
|
|
'HoirMgH969NrgL8jNzLEegqFzPRWM37GXd4uE8uuRkx4LAe',
|
|
'public_key':
|
|
'xpub661MyMwAqRbcGWtPvbWh9sc2BCfw2cTeVDYF23o3N1t6UZ5wv3EMmDgp66FxH'
|
|
'uDtWdft3B5eL5xQtyzAtkdmhhC95gjRjLzSTdkho95asu9',
|
|
'certificates': {},
|
|
'receiving_gap': 10,
|
|
'receiving_maximum_uses_per_address': 2,
|
|
'change_gap': 10,
|
|
'change_maximum_uses_per_address': 2,
|
|
'is_hd': True
|
|
}
|
|
|
|
account = Account.from_dict(self.ledger, account_data)
|
|
account_data['ledger'] = 'lbc_mainnet'
|
|
self.assertDictEqual(account_data, account.to_dict())
|