mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-28 08:48:53 +00:00
3d771132a8
Complete the getter-based transformation, by hiding ".uri" and updating callers to use get_uri(). Also don't set a dummy self._uri, leave it undefined until someone calls set_uri().
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
|
|
# Test the NoNetworkGrid test harness
|
|
|
|
from twisted.trial import unittest
|
|
from twisted.application import service
|
|
from allmydata.test.no_network import NoNetworkGrid
|
|
from allmydata.immutable.upload import Data
|
|
from allmydata.util.consumer import download_to_data
|
|
|
|
class Harness(unittest.TestCase):
|
|
def setUp(self):
|
|
self.s = service.MultiService()
|
|
self.s.startService()
|
|
|
|
def tearDown(self):
|
|
return self.s.stopService()
|
|
|
|
def test_create(self):
|
|
basedir = "no_network/Harness/create"
|
|
g = NoNetworkGrid(basedir)
|
|
g.startService()
|
|
return g.stopService()
|
|
|
|
def test_upload(self):
|
|
basedir = "no_network/Harness/upload"
|
|
g = NoNetworkGrid(basedir)
|
|
g.setServiceParent(self.s)
|
|
|
|
c0 = g.clients[0]
|
|
DATA = "Data to upload" * 100
|
|
data = Data(DATA, "")
|
|
d = c0.upload(data)
|
|
def _uploaded(res):
|
|
n = c0.create_node_from_uri(res.get_uri())
|
|
return download_to_data(n)
|
|
d.addCallback(_uploaded)
|
|
def _check(res):
|
|
self.failUnlessEqual(res, DATA)
|
|
d.addCallback(_check)
|
|
|
|
return d
|
|
|