2019-06-26 22:28:13 +02:00
|
|
|
import asyncio
|
2019-07-23 18:45:10 +02:00
|
|
|
import os
|
2019-06-26 22:28:13 +02:00
|
|
|
|
2019-07-23 18:45:10 +02:00
|
|
|
import lbry.wallet
|
|
|
|
from lbry.testcase import CommandTestCase
|
|
|
|
from lbry.extras.daemon.Components import HeadersComponent
|
2019-07-16 11:23:44 +02:00
|
|
|
from torba.client.basenetwork import ClientSession
|
|
|
|
from torba.testcase import IntegrationTestCase
|
2019-06-26 22:28:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TestSessionBloat(IntegrationTestCase):
|
|
|
|
"""
|
2019-07-16 11:23:44 +02:00
|
|
|
Tests that server cleans up stale connections after session timeout and client times out too.
|
2019-06-26 22:28:13 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
LEDGER = lbry.wallet
|
|
|
|
|
|
|
|
async def test_session_bloat_from_socket_timeout(self):
|
2019-07-16 11:23:44 +02:00
|
|
|
await self.conductor.stop_spv()
|
2019-07-22 04:26:49 +02:00
|
|
|
await self.ledger.stop()
|
2019-07-16 11:23:44 +02:00
|
|
|
self.conductor.spv_node.session_timeout = 1
|
|
|
|
await self.conductor.start_spv()
|
2019-09-03 16:28:30 +02:00
|
|
|
session = ClientSession(
|
|
|
|
network=None, server=(self.conductor.spv_node.hostname, self.conductor.spv_node.port), timeout=0.2
|
|
|
|
)
|
2019-07-16 11:23:44 +02:00
|
|
|
await session.create_connection()
|
|
|
|
await session.send_request('server.banner', ())
|
|
|
|
self.assertEqual(len(self.conductor.spv_node.server.session_mgr.sessions), 1)
|
|
|
|
self.assertFalse(session.is_closing())
|
|
|
|
await asyncio.sleep(1.1)
|
|
|
|
with self.assertRaises(asyncio.TimeoutError):
|
|
|
|
await session.send_request('server.banner', ())
|
|
|
|
self.assertTrue(session.is_closing())
|
|
|
|
self.assertEqual(len(self.conductor.spv_node.server.session_mgr.sessions), 0)
|
2019-07-23 18:45:10 +02:00
|
|
|
|
|
|
|
|
2019-08-14 15:26:02 +02:00
|
|
|
class TestSegwitServer(IntegrationTestCase):
|
|
|
|
LEDGER = lbry.wallet
|
|
|
|
ENABLE_SEGWIT = True
|
|
|
|
|
|
|
|
async def test_at_least_it_starts(self):
|
|
|
|
await asyncio.wait_for(self.ledger.network.get_headers(0, 1), 1.0)
|
|
|
|
|
|
|
|
|
2019-07-23 18:45:10 +02:00
|
|
|
class TestHeadersComponent(CommandTestCase):
|
|
|
|
|
|
|
|
LEDGER = lbry.wallet
|
|
|
|
|
|
|
|
async def asyncSetUp(self):
|
|
|
|
await super().asyncSetUp()
|
|
|
|
self.component_manager = self.daemon.component_manager
|
|
|
|
self.component_manager.conf.blockchain_name = 'lbrycrd_main'
|
|
|
|
self.headers_component = HeadersComponent(self.component_manager)
|
|
|
|
|
|
|
|
async def test_cant_reach_host(self):
|
|
|
|
HeadersComponent.HEADERS_URL = 'notthere/'
|
|
|
|
os.unlink(self.headers_component.headers.path)
|
|
|
|
# test is that this doesnt raise
|
|
|
|
await self.headers_component.start()
|
|
|
|
self.assertTrue(self.component_manager.get_components_status()['blockchain_headers'])
|
|
|
|
self.assertEqual(await self.headers_component.get_status(), {})
|