2018-04-16 20:19:30 +02:00
|
|
|
"""
|
2018-05-08 16:01:20 +02:00
|
|
|
Tests for core and those that do not work outside
|
|
|
|
(because of import error for example)
|
2018-04-16 20:19:30 +02:00
|
|
|
"""
|
|
|
|
|
2018-10-03 17:42:12 +02:00
|
|
|
import os
|
|
|
|
import pickle # nosec
|
|
|
|
import Queue
|
2018-05-08 16:39:07 +02:00
|
|
|
import random # nosec
|
2018-05-08 16:01:20 +02:00
|
|
|
import string
|
2018-10-03 17:42:12 +02:00
|
|
|
import time
|
2018-04-16 10:26:52 +02:00
|
|
|
import unittest
|
|
|
|
|
2018-10-03 17:42:12 +02:00
|
|
|
import knownnodes
|
|
|
|
import state
|
2019-07-29 13:19:18 +02:00
|
|
|
from bmconfigparser import BMConfigParser
|
2019-10-18 16:52:44 +02:00
|
|
|
from helper_startup import start_proxyconfig
|
2018-05-08 16:01:20 +02:00
|
|
|
from helper_msgcoding import MsgEncode, MsgDecode
|
2019-07-10 12:23:10 +02:00
|
|
|
from network import asyncore_pollchoose as asyncore
|
2019-07-29 13:19:18 +02:00
|
|
|
from network.connectionpool import BMConnectionPool
|
2019-11-03 16:11:52 +01:00
|
|
|
from network.node import Peer
|
2019-07-29 13:19:18 +02:00
|
|
|
from network.tcp import Socks4aBMConnection, Socks5BMConnection, TCPConnection
|
2018-10-03 17:42:12 +02:00
|
|
|
from queues import excQueue
|
|
|
|
|
2019-10-18 16:52:44 +02:00
|
|
|
|
2018-10-03 17:42:12 +02:00
|
|
|
knownnodes_file = os.path.join(state.appdata, 'knownnodes.dat')
|
|
|
|
|
|
|
|
|
|
|
|
def pickle_knownnodes():
|
2019-09-26 13:24:59 +02:00
|
|
|
"""Generate old style pickled knownnodes.dat"""
|
2018-10-03 17:42:12 +02:00
|
|
|
now = time.time()
|
|
|
|
with open(knownnodes_file, 'wb') as dst:
|
|
|
|
pickle.dump({
|
|
|
|
stream: {
|
2019-11-03 16:11:52 +01:00
|
|
|
Peer(
|
2018-10-03 17:42:12 +02:00
|
|
|
'%i.%i.%i.%i' % tuple([
|
|
|
|
random.randint(1, 255) for i in range(4)]),
|
|
|
|
8444): {'lastseen': now, 'rating': 0.1}
|
|
|
|
for i in range(1, 4) # 3 test nodes
|
|
|
|
}
|
|
|
|
for stream in range(1, 4) # 3 test streams
|
|
|
|
}, dst)
|
|
|
|
|
|
|
|
|
|
|
|
def cleanup():
|
2019-09-26 13:24:59 +02:00
|
|
|
"""Cleanup application files"""
|
2018-10-03 17:42:12 +02:00
|
|
|
os.remove(knownnodes_file)
|
2018-05-08 16:01:20 +02:00
|
|
|
|
2018-04-16 10:26:52 +02:00
|
|
|
|
|
|
|
class TestCore(unittest.TestCase):
|
2018-05-08 16:01:20 +02:00
|
|
|
"""Test case, which runs in main pybitmessage thread"""
|
|
|
|
|
|
|
|
def test_msgcoding(self):
|
|
|
|
"""test encoding and decoding (originally from helper_msgcoding)"""
|
|
|
|
msg_data = {
|
|
|
|
'subject': ''.join(
|
2018-05-08 16:39:07 +02:00
|
|
|
random.choice(string.ascii_lowercase + string.digits) # nosec
|
2018-05-08 16:01:20 +02:00
|
|
|
for _ in range(40)),
|
|
|
|
'body': ''.join(
|
2018-05-08 16:39:07 +02:00
|
|
|
random.choice(string.ascii_lowercase + string.digits) # nosec
|
2018-05-08 16:01:20 +02:00
|
|
|
for _ in range(10000))
|
|
|
|
}
|
|
|
|
|
|
|
|
obj1 = MsgEncode(msg_data, 1)
|
|
|
|
obj2 = MsgEncode(msg_data, 2)
|
|
|
|
obj3 = MsgEncode(msg_data, 3)
|
|
|
|
# print "1: %i 2: %i 3: %i" % (
|
|
|
|
# len(obj1.data), len(obj2.data), len(obj3.data))
|
|
|
|
|
|
|
|
obj1e = MsgDecode(1, obj1.data)
|
|
|
|
# no subject in trivial encoding
|
|
|
|
self.assertEqual(msg_data['body'], obj1e.body)
|
|
|
|
|
|
|
|
obj2e = MsgDecode(2, obj2.data)
|
|
|
|
self.assertEqual(msg_data['subject'], obj2e.subject)
|
|
|
|
self.assertEqual(msg_data['body'], obj2e.body)
|
|
|
|
|
|
|
|
obj3e = MsgDecode(3, obj3.data)
|
|
|
|
self.assertEqual(msg_data['subject'], obj3e.subject)
|
|
|
|
self.assertEqual(msg_data['body'], obj3e.body)
|
2018-04-16 10:26:52 +02:00
|
|
|
|
2019-07-05 10:45:12 +02:00
|
|
|
try:
|
|
|
|
MsgEncode({'body': 'A msg with no subject'}, 3)
|
|
|
|
except Exception as e:
|
|
|
|
self.fail(
|
2019-07-10 12:23:10 +02:00
|
|
|
'Exception %s while trying to encode message'
|
2019-07-05 10:45:12 +02:00
|
|
|
' with no subject!' % e
|
|
|
|
)
|
|
|
|
|
2019-07-29 13:19:18 +02:00
|
|
|
@unittest.skip('Bad environment for asyncore.loop')
|
2019-07-10 12:23:10 +02:00
|
|
|
def test_tcpconnection(self):
|
|
|
|
"""initial fill script from network.tcp"""
|
2019-07-29 13:19:18 +02:00
|
|
|
BMConfigParser().set('bitmessagesettings', 'dontconnect', 'true')
|
2019-07-10 12:23:10 +02:00
|
|
|
try:
|
2019-11-03 16:11:52 +01:00
|
|
|
for peer in (Peer("127.0.0.1", 8448),):
|
2019-07-10 12:23:10 +02:00
|
|
|
direct = TCPConnection(peer)
|
|
|
|
while asyncore.socket_map:
|
|
|
|
print("loop, state = %s" % direct.state)
|
|
|
|
asyncore.loop(timeout=10, count=1)
|
|
|
|
except:
|
|
|
|
self.fail('Exception in test loop')
|
|
|
|
|
2019-07-29 13:19:18 +02:00
|
|
|
@staticmethod
|
|
|
|
def _wipe_knownnodes():
|
2018-10-03 17:42:12 +02:00
|
|
|
with knownnodes.knownNodesLock:
|
|
|
|
knownnodes.knownNodes = {stream: {} for stream in range(1, 4)}
|
|
|
|
|
2019-07-29 13:19:18 +02:00
|
|
|
@staticmethod
|
|
|
|
def _outdate_knownnodes():
|
|
|
|
with knownnodes.knownNodesLock:
|
|
|
|
for nodes in knownnodes.knownNodes.itervalues():
|
|
|
|
for node in nodes.itervalues():
|
|
|
|
node['lastseen'] -= 2419205 # older than 28 days
|
|
|
|
|
2018-10-03 17:42:12 +02:00
|
|
|
def test_knownnodes_pickle(self):
|
|
|
|
"""ensure that 3 nodes was imported for each stream"""
|
|
|
|
pickle_knownnodes()
|
|
|
|
self._wipe_knownnodes()
|
|
|
|
knownnodes.readKnownNodes()
|
|
|
|
for nodes in knownnodes.knownNodes.itervalues():
|
|
|
|
self_count = n = 0
|
|
|
|
for n, node in enumerate(nodes.itervalues()):
|
|
|
|
if node.get('self'):
|
|
|
|
self_count += 1
|
|
|
|
self.assertEqual(n - self_count, 2)
|
|
|
|
|
|
|
|
def test_knownnodes_default(self):
|
|
|
|
"""test adding default knownnodes if nothing loaded"""
|
|
|
|
cleanup()
|
|
|
|
self._wipe_knownnodes()
|
|
|
|
knownnodes.readKnownNodes()
|
|
|
|
self.assertGreaterEqual(
|
|
|
|
len(knownnodes.knownNodes[1]), len(knownnodes.DEFAULT_NODES))
|
|
|
|
|
|
|
|
def test_0_cleaner(self):
|
|
|
|
"""test knownnodes starvation leading to IndexError in Asyncore"""
|
2019-07-29 13:19:18 +02:00
|
|
|
self._outdate_knownnodes()
|
2018-10-11 15:34:57 +02:00
|
|
|
# time.sleep(303) # singleCleaner wakes up every 5 min
|
|
|
|
knownnodes.cleanupKnownNodes()
|
2019-08-09 16:15:00 +02:00
|
|
|
self.assertTrue(knownnodes.knownNodes[1])
|
2018-10-03 17:42:12 +02:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
thread, exc = excQueue.get(block=False)
|
|
|
|
except Queue.Empty:
|
|
|
|
return
|
|
|
|
if thread == 'Asyncore' and isinstance(exc, IndexError):
|
|
|
|
self.fail("IndexError because of empty knownNodes!")
|
|
|
|
|
2019-08-09 16:15:00 +02:00
|
|
|
def _initiate_bootstrap(self):
|
2019-07-29 13:19:18 +02:00
|
|
|
BMConfigParser().set('bitmessagesettings', 'dontconnect', 'true')
|
|
|
|
self._outdate_knownnodes()
|
2019-11-03 16:11:52 +01:00
|
|
|
knownnodes.addKnownNode(1, Peer('127.0.0.1', 8444), is_self=True)
|
2019-08-09 16:15:00 +02:00
|
|
|
knownnodes.cleanupKnownNodes()
|
|
|
|
time.sleep(2)
|
|
|
|
|
|
|
|
def _check_bootstrap(self):
|
|
|
|
_started = time.time()
|
2019-07-29 13:19:18 +02:00
|
|
|
BMConfigParser().remove_option('bitmessagesettings', 'dontconnect')
|
|
|
|
proxy_type = BMConfigParser().safeGet(
|
|
|
|
'bitmessagesettings', 'socksproxytype')
|
|
|
|
if proxy_type == 'SOCKS5':
|
|
|
|
connection_base = Socks5BMConnection
|
|
|
|
elif proxy_type == 'SOCKS4a':
|
|
|
|
connection_base = Socks4aBMConnection
|
|
|
|
else:
|
|
|
|
connection_base = TCPConnection
|
|
|
|
for _ in range(180):
|
|
|
|
time.sleep(1)
|
|
|
|
for peer, con in BMConnectionPool().outboundConnections.iteritems():
|
|
|
|
if not peer.host.startswith('bootstrap'):
|
|
|
|
self.assertIsInstance(con, connection_base)
|
2019-08-09 16:15:00 +02:00
|
|
|
self.assertNotEqual(peer.host, '127.0.0.1')
|
2019-07-29 13:19:18 +02:00
|
|
|
return
|
|
|
|
else: # pylint: disable=useless-else-on-loop
|
|
|
|
self.fail(
|
|
|
|
'Failed to connect during %s sec' % (time.time() - _started))
|
|
|
|
|
2019-10-24 21:35:32 +02:00
|
|
|
def test_onionservicesonly(self):
|
|
|
|
"""test onionservicesonly networking mode"""
|
2019-11-14 13:32:15 +01:00
|
|
|
BMConfigParser().set('bitmessagesettings', 'onionservicesonly', 'true')
|
2019-10-24 21:35:32 +02:00
|
|
|
self._initiate_bootstrap()
|
|
|
|
BMConfigParser().remove_option('bitmessagesettings', 'dontconnect')
|
|
|
|
for _ in range(360):
|
|
|
|
time.sleep(1)
|
|
|
|
for n, peer in enumerate(BMConnectionPool().outboundConnections):
|
|
|
|
if n > 2:
|
|
|
|
return
|
|
|
|
if not peer.host.endswith('.onion'):
|
|
|
|
self.fail(
|
|
|
|
'Found non onion hostname %s in outbound connections!'
|
|
|
|
% peer.host)
|
|
|
|
self.fail('Failed to connect to at least 3 nodes within 360 sec')
|
|
|
|
|
2019-08-09 16:15:00 +02:00
|
|
|
def test_bootstrap(self):
|
|
|
|
"""test bootstrapping"""
|
|
|
|
self._initiate_bootstrap()
|
|
|
|
self._check_bootstrap()
|
|
|
|
self._initiate_bootstrap()
|
|
|
|
BMConfigParser().set('bitmessagesettings', 'socksproxytype', 'stem')
|
2019-10-18 16:52:44 +02:00
|
|
|
start_proxyconfig()
|
2019-08-09 16:15:00 +02:00
|
|
|
self._check_bootstrap()
|
|
|
|
|
2018-04-16 10:26:52 +02:00
|
|
|
|
2019-10-18 16:52:44 +02:00
|
|
|
def run():
|
2018-04-16 20:19:30 +02:00
|
|
|
"""Starts all tests defined in this module"""
|
2018-10-03 17:42:12 +02:00
|
|
|
loader = unittest.TestLoader()
|
|
|
|
loader.sortTestMethodsUsing = None
|
|
|
|
suite = loader.loadTestsFromTestCase(TestCore)
|
2018-04-16 10:26:52 +02:00
|
|
|
return unittest.TextTestRunner(verbosity=2).run(suite)
|