2018-06-12 17:53:29 +02:00
|
|
|
import asyncio
|
2018-06-14 21:18:36 +02:00
|
|
|
from binascii import hexlify
|
2018-06-26 23:27:24 +02:00
|
|
|
|
|
|
|
from orchstr8.testcase import IntegrationTestCase, d2f
|
2018-06-12 17:53:29 +02:00
|
|
|
from lbryschema.claim import ClaimDict
|
2018-06-14 07:32:11 +02:00
|
|
|
from torba.constants import COIN
|
2018-06-14 21:18:36 +02:00
|
|
|
from lbrynet.wallet.transaction import Transaction
|
2018-06-26 23:27:24 +02:00
|
|
|
from lbrynet.wallet.account import generate_certificate
|
|
|
|
|
|
|
|
import lbryschema
|
|
|
|
lbryschema.BLOCKCHAIN_NAME = 'lbrycrd_regtest'
|
2018-06-12 17:53:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
example_claim_dict = {
|
|
|
|
"version": "_0_0_1",
|
|
|
|
"claimType": "streamType",
|
|
|
|
"stream": {
|
|
|
|
"source": {
|
|
|
|
"source": "d5169241150022f996fa7cd6a9a1c421937276a3275eb912790bd07ba7aec1fac5fd45431d226b8fb402691e79aeb24b",
|
|
|
|
"version": "_0_0_1",
|
|
|
|
"contentType": "video/mp4",
|
|
|
|
"sourceType": "lbry_sd_hash"
|
|
|
|
},
|
|
|
|
"version": "_0_0_1",
|
|
|
|
"metadata": {
|
|
|
|
"license": "LBRY Inc",
|
|
|
|
"description": "What is LBRY? An introduction with Alex Tabarrok",
|
|
|
|
"language": "en",
|
|
|
|
"title": "What is LBRY?",
|
|
|
|
"author": "Samuel Bryan",
|
|
|
|
"version": "_0_1_0",
|
|
|
|
"nsfw": False,
|
|
|
|
"licenseUrl": "",
|
|
|
|
"preview": "",
|
|
|
|
"thumbnail": "https://s3.amazonaws.com/files.lbry.io/logo.png"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-26 23:27:24 +02:00
|
|
|
class BasicTransactionTests(IntegrationTestCase):
|
2018-06-12 17:53:29 +02:00
|
|
|
|
|
|
|
VERBOSE = True
|
|
|
|
|
2018-06-26 23:27:24 +02:00
|
|
|
async def test_creating_updating_and_abandoning_claim_with_channel(self):
|
2018-06-12 17:53:29 +02:00
|
|
|
|
2018-06-26 23:27:24 +02:00
|
|
|
await d2f(self.account.ensure_address_gap())
|
2018-06-12 17:53:29 +02:00
|
|
|
|
2018-06-26 23:27:24 +02:00
|
|
|
address1, address2 = await d2f(self.account.receiving.get_usable_addresses(2))
|
|
|
|
sendtxid1 = await self.blockchain.send_to_address(address1.decode(), 5)
|
|
|
|
sendtxid2 = await self.blockchain.send_to_address(address2.decode(), 5)
|
2018-06-14 07:32:11 +02:00
|
|
|
await self.blockchain.generate(1)
|
2018-06-26 23:27:24 +02:00
|
|
|
await asyncio.wait([
|
|
|
|
self.on_transaction_id(sendtxid1),
|
|
|
|
self.on_transaction_id(sendtxid2),
|
|
|
|
])
|
2018-06-14 07:32:11 +02:00
|
|
|
|
|
|
|
self.assertEqual(round(await self.get_balance(self.account)/COIN, 1), 10.0)
|
2018-06-12 17:53:29 +02:00
|
|
|
|
2018-06-26 23:27:24 +02:00
|
|
|
cert, key = generate_certificate()
|
|
|
|
cert_tx = await d2f(Transaction.claim(b'@bar', cert, 1*COIN, address1, [self.account], self.account))
|
2018-06-12 17:53:29 +02:00
|
|
|
claim = ClaimDict.load_dict(example_claim_dict)
|
2018-06-26 23:27:24 +02:00
|
|
|
claim = claim.sign(key, address1, hexlify(cert_tx.get_claim_id(0)))
|
|
|
|
tx = await d2f(Transaction.claim(b'foo', claim, 1*COIN, address1, [self.account], self.account))
|
|
|
|
|
|
|
|
await self.broadcast(cert_tx)
|
2018-06-12 17:53:29 +02:00
|
|
|
await self.broadcast(tx)
|
2018-06-26 23:27:24 +02:00
|
|
|
await asyncio.wait([ # mempool
|
|
|
|
self.on_transaction(tx),
|
|
|
|
self.on_transaction(cert_tx),
|
|
|
|
])
|
2018-06-14 07:32:11 +02:00
|
|
|
await self.blockchain.generate(1)
|
2018-06-26 23:27:24 +02:00
|
|
|
await asyncio.wait([ # confirmed
|
|
|
|
self.on_transaction(tx),
|
|
|
|
self.on_transaction(cert_tx),
|
|
|
|
])
|
2018-06-12 17:53:29 +02:00
|
|
|
|
2018-06-14 21:18:36 +02:00
|
|
|
self.assertEqual(round(await self.get_balance(self.account)/COIN, 1), 10.0)
|
2018-06-12 17:53:29 +02:00
|
|
|
|
2018-06-20 23:25:32 +02:00
|
|
|
header = self.ledger.headers[len(self.ledger.headers)-1]
|
2018-06-26 23:27:24 +02:00
|
|
|
response = await d2f(self.ledger.resolve(self.ledger.headers._hash_header(header), 'lbry://@bar/foo'))
|
|
|
|
self.assertIn('lbry://@bar/foo', response)
|
2018-06-12 17:53:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
#class AbandonClaimLookup(IntegrationTestCase):
|
|
|
|
#
|
|
|
|
# async def skip_test_abandon_claim(self):
|
|
|
|
# address = yield self.lbry.wallet.get_least_used_address()
|
|
|
|
# yield self.lbrycrd.sendtoaddress(address, 0.0003 - 0.0000355)
|
|
|
|
# yield self.lbrycrd.generate(1)
|
|
|
|
# yield self.lbry.wallet.update_balance()
|
|
|
|
# yield threads.deferToThread(time.sleep, 5)
|
|
|
|
# print(self.lbry.wallet.get_balance())
|
|
|
|
# claim = yield self.lbry.wallet.claim_new_channel('@test', 0.000096)
|
|
|
|
# yield self.lbrycrd.generate(1)
|
|
|
|
# print('='*10 + 'CLAIM' + '='*10)
|
|
|
|
# print(claim)
|
|
|
|
# yield self.lbrycrd.decoderawtransaction(claim['tx'])
|
|
|
|
# abandon = yield self.lbry.wallet.abandon_claim(claim['claim_id'], claim['txid'], claim['nout'])
|
|
|
|
# print('='*10 + 'ABANDON' + '='*10)
|
|
|
|
# print(abandon)
|
|
|
|
# yield self.lbrycrd.decoderawtransaction(abandon['tx'])
|
|
|
|
# yield self.lbrycrd.generate(1)
|
|
|
|
# yield self.lbrycrd.getrawtransaction(abandon['txid'])
|
|
|
|
#
|
|
|
|
# yield self.lbry.wallet.update_balance()
|
|
|
|
# yield threads.deferToThread(time.sleep, 5)
|
|
|
|
# print('='*10 + 'FINAL BALANCE' + '='*10)
|
|
|
|
# print(self.lbry.wallet.get_balance())
|