Exemplo n.º 1
0
 def test_custom_new_table(self):
     table = tables.NewTable(buckets=0)
     self.assertEqual(node.Node(triedtable=table).triedtable, table)
Exemplo n.º 2
0
 def test_default_newtable(self):
     self.assertEqual(node.Node().newtable, tables.NewTable())
Exemplo n.º 3
0
 def __init__(self, **kwargs):
     self._newtable = kwargs.get('newtable', tables.NewTable())
     self._triedtable = kwargs.get('triedtable', tables.TriedTable())
     self._outpeers = kwargs.get('outpeers', 8)
     self._peers = [None for _ in range(self.outpeers)]
     self._len = 0
Exemplo n.º 4
0
 def test_custom_buckets(self):
     self.assertEqual(tables.NewTable(buckets=5).buckets, 5)
Exemplo n.º 5
0
 def test_custom_slots(self):
     self.assertEqual(tables.NewTable(slots=2)[0].slots, 2)
Exemplo n.º 6
0
 def test_default_slots(self):
     self.assertEqual(tables.NewTable()[0].slots, 64)
Exemplo n.º 7
0
 def test_default_buckets(self):
     self.assertEqual(tables.NewTable().buckets, 256)