mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 06:42:26 +00:00
20 lines
637 B
Python
20 lines
637 B
Python
|
|
from twisted.trial import unittest
|
|
|
|
from allmydata import client
|
|
|
|
class Basic(unittest.TestCase):
|
|
def test_loadable(self):
|
|
c = client.Client("")
|
|
c.startService()
|
|
return c.stopService()
|
|
|
|
def test_permute(self):
|
|
c = client.Client("")
|
|
c.all_peers = ["%d" % i for i in range(5)]
|
|
self.failUnlessEqual(c.permute_peerids("one"), ['3','1','0','4','2'])
|
|
self.failUnlessEqual(c.permute_peerids("one", 3), ['3','1','0'])
|
|
self.failUnlessEqual(c.permute_peerids("two"), ['0','4','2','1','3'])
|
|
c.all_peers = []
|
|
self.failUnlessEqual(c.permute_peerids("one"), [])
|