lbry-sdk/tests/integration/test_file_commands.py

194 lines
9.9 KiB
Python
Raw Normal View History

import asyncio
2019-02-12 05:54:24 +01:00
import logging
import os
from lbrynet.testcase import CommandTestCase
2019-02-18 21:08:37 +01:00
from lbrynet.blob_exchange.downloader import BlobDownloader
2019-02-12 05:54:24 +01:00
class FileCommands(CommandTestCase):
2019-02-19 03:45:30 +01:00
VERBOSITY = logging.WARN
2019-02-12 05:54:24 +01:00
async def test_file_management(self):
2019-03-26 03:06:36 +01:00
await self.stream_create('foo', '0.01')
await self.stream_create('foo2', '0.01')
2019-02-12 05:54:24 +01:00
2019-04-06 21:55:08 +02:00
file1, file2 = self.sout(self.daemon.jsonrpc_file_list('claim_name'))
2019-02-12 05:54:24 +01:00
self.assertEqual(file1['claim_name'], 'foo')
self.assertEqual(file2['claim_name'], 'foo2')
await self.daemon.jsonrpc_file_delete(claim_name='foo')
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 1)
await self.daemon.jsonrpc_file_delete(claim_name='foo2')
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 0)
await self.daemon.jsonrpc_get('lbry://foo')
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 1)
async def test_download_different_timeouts(self):
2019-03-26 03:06:36 +01:00
tx = await self.stream_create('foo', '0.01')
2019-03-28 02:36:06 +01:00
sd_hash = tx['outputs'][0]['value']['stream']['sd_hash']
await self.daemon.jsonrpc_file_delete(claim_name='foo')
all_except_sd = [
blob_hash for blob_hash in self.server.blob_manager.completed_blob_hashes if blob_hash != sd_hash
]
await self.server.blob_manager.delete_blobs(all_except_sd)
resp = await self.daemon.jsonrpc_get('lbry://foo', timeout=2)
self.assertIn('error', resp)
self.assertEquals('Failed to download data blobs for sd hash %s within timeout' % sd_hash, resp['error'])
await self.daemon.jsonrpc_file_delete(claim_name='foo')
2019-02-14 22:34:37 +01:00
await self.server.blob_manager.delete_blobs([sd_hash])
resp = await self.daemon.jsonrpc_get('lbry://foo', timeout=2)
self.assertIn('error', resp)
self.assertEquals('Failed to download sd blob %s within timeout' % sd_hash, resp['error'])
async def wait_files_to_complete(self):
2019-04-06 21:55:08 +02:00
while self.sout(self.daemon.jsonrpc_file_list(status='running')):
await asyncio.sleep(0.01)
async def test_filename_conflicts_management_on_resume_download(self):
2019-03-26 03:06:36 +01:00
await self.stream_create('foo', '0.01', data=bytes([0] * (1 << 23)))
2019-04-06 21:55:08 +02:00
file_info = self.sout(self.daemon.jsonrpc_file_list())[0]
original_path = os.path.join(self.daemon.conf.download_dir, file_info['file_name'])
await self.daemon.jsonrpc_file_delete(claim_name='foo')
await self.daemon.jsonrpc_get('lbry://foo')
with open(original_path, 'wb') as handle:
handle.write(b'some other stuff was there instead')
self.daemon.stream_manager.stop()
await self.daemon.stream_manager.start()
await asyncio.wait_for(self.wait_files_to_complete(), timeout=5) # if this hangs, file didnt get set completed
# check that internal state got through up to the file list API
downloader = self.daemon.stream_manager.get_stream_by_stream_hash(file_info['stream_hash']).downloader
2019-04-06 21:55:08 +02:00
file_info = self.sout(self.daemon.jsonrpc_file_list())[0]
self.assertEqual(downloader.output_file_name, file_info['file_name'])
# checks if what the API shows is what he have at the very internal level.
self.assertEqual(downloader.output_path, file_info['download_path'])
# if you got here refactoring just change above, but ensure what gets set internally gets reflected externally!
self.assertTrue(downloader.output_path.endswith(downloader.output_file_name))
# this used to be inconsistent, if it becomes again it would create weird bugs, so worth checking
async def test_incomplete_downloads_erases_output_file_on_stop(self):
2019-03-26 03:06:36 +01:00
tx = await self.stream_create('foo', '0.01')
2019-03-28 02:36:06 +01:00
sd_hash = tx['outputs'][0]['value']['stream']['sd_hash']
2019-04-06 21:55:08 +02:00
file_info = self.sout(self.daemon.jsonrpc_file_list())[0]
await self.daemon.jsonrpc_file_delete(claim_name='foo')
blobs = await self.server_storage.get_blobs_for_stream(
await self.server_storage.get_stream_hash_for_sd_hash(sd_hash)
)
all_except_sd_and_head = [
blob.blob_hash for blob in blobs[1:] if blob.blob_hash
]
await self.server.blob_manager.delete_blobs(all_except_sd_and_head)
self.assertFalse(os.path.isfile(os.path.join(self.daemon.conf.download_dir, file_info['file_name'])))
2019-04-06 22:11:56 +02:00
resp = await self.out(self.daemon.jsonrpc_get('lbry://foo', timeout=2))
self.assertNotIn('error', resp)
self.assertTrue(os.path.isfile(os.path.join(self.daemon.conf.download_dir, file_info['file_name'])))
self.daemon.stream_manager.stop()
2019-02-14 02:45:05 +01:00
self.assertFalse(os.path.isfile(os.path.join(self.daemon.conf.download_dir, file_info['file_name'])))
async def test_incomplete_downloads_retry(self):
2019-03-26 03:06:36 +01:00
tx = await self.stream_create('foo', '0.01')
2019-03-28 02:36:06 +01:00
sd_hash = tx['outputs'][0]['value']['stream']['sd_hash']
2019-02-14 02:45:05 +01:00
await self.daemon.jsonrpc_file_delete(claim_name='foo')
blobs = await self.server_storage.get_blobs_for_stream(
await self.server_storage.get_stream_hash_for_sd_hash(sd_hash)
)
all_except_sd_and_head = [
blob.blob_hash for blob in blobs[1:] if blob.blob_hash
2019-02-14 02:45:05 +01:00
]
# backup server blobs
for blob_hash in all_except_sd_and_head:
2019-02-14 02:45:05 +01:00
blob = self.server_blob_manager.get_blob(blob_hash)
os.rename(blob.file_path, blob.file_path + '__')
# erase all except sd blob
await self.server.blob_manager.delete_blobs(all_except_sd_and_head)
2019-02-14 02:45:05 +01:00
# start the download
2019-04-06 22:11:56 +02:00
resp = await self.out(self.daemon.jsonrpc_get('lbry://foo', timeout=2))
self.assertNotIn('error', resp)
2019-02-14 02:45:05 +01:00
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 1)
2019-04-06 21:55:08 +02:00
self.assertEqual('running', self.sout(self.daemon.jsonrpc_file_list())[0]['status'])
await self.daemon.jsonrpc_file_set_status('stop', claim_name='foo')
2019-02-14 02:45:05 +01:00
# recover blobs
for blob_hash in all_except_sd_and_head:
2019-02-14 02:45:05 +01:00
blob = self.server_blob_manager.get_blob(blob_hash)
os.rename(blob.file_path + '__', blob.file_path)
self.server_blob_manager.blobs.clear()
await self.server_blob_manager.blob_completed(self.server_blob_manager.get_blob(blob_hash))
await self.daemon.jsonrpc_file_set_status('start', claim_name='foo')
2019-02-14 02:45:05 +01:00
await asyncio.wait_for(self.wait_files_to_complete(), timeout=5)
2019-04-06 21:55:08 +02:00
file_info = self.sout(self.daemon.jsonrpc_file_list())[0]
2019-02-14 02:45:05 +01:00
self.assertEqual(file_info['blobs_completed'], file_info['blobs_in_stream'])
self.assertEqual('finished', file_info['status'])
2019-02-18 21:08:37 +01:00
async def test_unban_recovers_stream(self):
BlobDownloader.BAN_TIME = .5 # fixme: temporary field, will move to connection manager or a conf
2019-03-26 03:06:36 +01:00
tx = await self.stream_create('foo', '0.01', data=bytes([0] * (1 << 23)))
2019-03-28 02:36:06 +01:00
sd_hash = tx['outputs'][0]['value']['stream']['sd_hash']
2019-02-18 21:08:37 +01:00
missing_blob_hash = (await self.daemon.jsonrpc_blob_list(sd_hash=sd_hash))[-2]
await self.daemon.jsonrpc_file_delete(claim_name='foo')
# backup blob
missing_blob = self.server_blob_manager.get_blob(missing_blob_hash)
os.rename(missing_blob.file_path, missing_blob.file_path + '__')
self.server_blob_manager.delete_blob(missing_blob_hash)
await self.daemon.jsonrpc_get('lbry://foo')
with self.assertRaises(asyncio.TimeoutError):
await asyncio.wait_for(self.wait_files_to_complete(), timeout=1)
# restore blob
os.rename(missing_blob.file_path + '__', missing_blob.file_path)
self.server_blob_manager.blobs.clear()
2019-02-22 01:14:51 +01:00
missing_blob = self.server_blob_manager.get_blob(missing_blob_hash)
2019-02-18 21:08:37 +01:00
await self.server_blob_manager.blob_completed(missing_blob)
await asyncio.wait_for(self.wait_files_to_complete(), timeout=1)
2019-02-19 00:23:11 +01:00
async def test_paid_download(self):
target_address = await self.blockchain.get_raw_change_address()
2019-02-19 04:16:59 +01:00
# FAIL: beyond available balance
2019-03-26 03:06:36 +01:00
await self.stream_create(
2019-02-19 04:16:59 +01:00
'expensive', '0.01', data=b'pay me if you can',
2019-03-24 21:55:04 +01:00
fee_currency='LBC', fee_amount='11.0', fee_address=target_address
)
2019-02-19 00:23:11 +01:00
await self.daemon.jsonrpc_file_delete(claim_name='expensive')
2019-04-06 22:11:56 +02:00
response = await self.out(self.daemon.jsonrpc_get('lbry://expensive'))
self.assertEqual(response['error'], 'fee of 11.00000 exceeds max available balance')
2019-02-19 00:23:11 +01:00
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 0)
2019-02-19 04:16:59 +01:00
# FAIL: beyond maximum key fee
2019-03-26 03:06:36 +01:00
await self.stream_create(
2019-02-19 04:16:59 +01:00
'maxkey', '0.01', data=b'no pay me, no',
2019-03-24 21:55:04 +01:00
fee_currency='LBC', fee_amount='111.0', fee_address=target_address
)
2019-02-19 04:16:59 +01:00
await self.daemon.jsonrpc_file_delete(claim_name='maxkey')
2019-04-06 22:11:56 +02:00
response = await self.out(self.daemon.jsonrpc_get('lbry://maxkey'))
2019-02-19 00:23:11 +01:00
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 0)
self.assertEqual(response['error'], 'fee of 111.00000 exceeds max configured to allow of 50.00000')
2019-02-19 04:16:59 +01:00
# PASS: purchase is successful
2019-03-26 03:06:36 +01:00
await self.stream_create(
2019-02-19 04:16:59 +01:00
'icanpay', '0.01', data=b'I got the power!',
2019-03-24 21:55:04 +01:00
fee_currency='LBC', fee_amount='1.0', fee_address=target_address
)
2019-02-19 04:16:59 +01:00
await self.daemon.jsonrpc_file_delete(claim_name='icanpay')
await self.assertBalance(self.account, '9.925679')
2019-04-06 22:11:56 +02:00
response = await self.out(self.daemon.jsonrpc_get('lbry://icanpay'))
2019-02-19 04:16:59 +01:00
self.assertNotIn('error', response)
2019-04-06 22:11:56 +02:00
await self.on_transaction_dict(response['tx'])
2019-02-19 04:16:59 +01:00
await self.assertBalance(self.account, '8.925555')
2019-02-19 00:23:11 +01:00
self.assertEqual(len(self.daemon.jsonrpc_file_list()), 1)
2019-02-19 04:16:59 +01:00
2019-02-19 00:23:11 +01:00
await asyncio.wait_for(self.wait_files_to_complete(), timeout=1)
2019-02-19 04:16:59 +01:00
# check that the fee was received
starting_balance = await self.blockchain.get_balance()
await self.generate(1)
2019-02-19 04:16:59 +01:00
block_reward_and_claim_fee = 2.0
self.assertEqual(
await self.blockchain.get_balance(), starting_balance + block_reward_and_claim_fee
)