eab95a6246
* use int to_bytes/from_bytes instead of struct * fix ping queue bug and dht functional tests * run functional tests on travis * re-add contact comparison unit test * dont need __ne__ if its just inverting __eq__ result
34 lines
700 B
Python
34 lines
700 B
Python
from twisted.trial import unittest
|
|
|
|
from tests.functional.dht.dht_test_environment import TestKademliaBase
|
|
|
|
|
|
class TestKademliaBootstrap(TestKademliaBase):
|
|
"""
|
|
Test initializing the network / connecting the seed nodes
|
|
"""
|
|
|
|
def test_bootstrap_seed_nodes(self):
|
|
pass
|
|
|
|
|
|
class TestKademliaBootstrap40Nodes(TestKademliaBase):
|
|
network_size = 40
|
|
|
|
def test_bootstrap_network(self):
|
|
pass
|
|
|
|
|
|
class TestKademliaBootstrap80Nodes(TestKademliaBase):
|
|
network_size = 80
|
|
|
|
def test_bootstrap_network(self):
|
|
pass
|
|
|
|
|
|
@unittest.SkipTest
|
|
class TestKademliaBootstrap120Nodes(TestKademliaBase):
|
|
network_size = 120
|
|
|
|
def test_bootstrap_network(self):
|
|
pass
|