mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 05:53:12 +00:00
test_client.py, upload.py:: remove KiB/MiB/etc constants, and other dead code
This commit is contained in:
parent
578a117c5b
commit
cba3de04a4
@ -28,16 +28,6 @@ from pycryptopp.cipher.aes import AES
|
|||||||
from cStringIO import StringIO
|
from cStringIO import StringIO
|
||||||
|
|
||||||
|
|
||||||
KiB=1024
|
|
||||||
MiB=1024*KiB
|
|
||||||
GiB=1024*MiB
|
|
||||||
TiB=1024*GiB
|
|
||||||
PiB=1024*TiB
|
|
||||||
|
|
||||||
class HaveAllPeersError(Exception):
|
|
||||||
# we use this to jump out of the loop
|
|
||||||
pass
|
|
||||||
|
|
||||||
# this wants to live in storage, not here
|
# this wants to live in storage, not here
|
||||||
class TooFullError(Exception):
|
class TooFullError(Exception):
|
||||||
pass
|
pass
|
||||||
|
@ -7,22 +7,12 @@ from twisted.python import log
|
|||||||
import allmydata
|
import allmydata
|
||||||
from allmydata import client
|
from allmydata import client
|
||||||
from allmydata.storage_client import StorageFarmBroker
|
from allmydata.storage_client import StorageFarmBroker
|
||||||
from allmydata.introducer.client import IntroducerClient
|
|
||||||
from allmydata.util import base32, fileutil
|
from allmydata.util import base32, fileutil
|
||||||
from allmydata.interfaces import IFilesystemNode, IFileNode, \
|
from allmydata.interfaces import IFilesystemNode, IFileNode, \
|
||||||
IImmutableFileNode, IMutableFileNode, IDirectoryNode
|
IImmutableFileNode, IMutableFileNode, IDirectoryNode
|
||||||
from foolscap.api import flushEventualQueue
|
from foolscap.api import flushEventualQueue
|
||||||
import allmydata.test.common_util as testutil
|
import allmydata.test.common_util as testutil
|
||||||
|
|
||||||
class FakeIntroducerClient(IntroducerClient):
|
|
||||||
def __init__(self):
|
|
||||||
self._connections = set()
|
|
||||||
def add_peer(self, nodeid):
|
|
||||||
entry = (nodeid, "storage", "rref")
|
|
||||||
self._connections.add(entry)
|
|
||||||
def remove_all_peers(self):
|
|
||||||
self._connections.clear()
|
|
||||||
|
|
||||||
BASECONFIG = ("[client]\n"
|
BASECONFIG = ("[client]\n"
|
||||||
"introducer.furl = \n"
|
"introducer.furl = \n"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user