mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-19 00:06:57 +00:00
mutable WIP: merge conflicts in test_system.py
This commit is contained in:
parent
d4230d1781
commit
cf84bae850
@ -1304,10 +1304,76 @@ class SystemTest(testutil.SignalMixin, testutil.PollMixin, unittest.TestCase):
|
||||
d.addCallback(_got_up)
|
||||
def _got_down(res):
|
||||
return self.GET("status/publish-%d" % self._publish_status)
|
||||
#d.addCallback(_got_down)
|
||||
#d.addCallback(_got_down) # TODO: disabled during #303 refactoring
|
||||
def _got_publish(res):
|
||||
return self.GET("status/retrieve-%d" % self._retrieve_status)
|
||||
d.addCallback(_got_publish)
|
||||
#d.addCallback(_got_publish)
|
||||
|
||||
# check that the helper status page exists
|
||||
d.addCallback(lambda res:
|
||||
self.GET("helper_status", followRedirect=True))
|
||||
def _got_helper_status(res):
|
||||
self.failUnless("Bytes Fetched:" in res)
|
||||
# touch a couple of files in the helper's working directory to
|
||||
# exercise more code paths
|
||||
workdir = os.path.join(self.getdir("client0"), "helper")
|
||||
incfile = os.path.join(workdir, "CHK_incoming", "spurious")
|
||||
f = open(incfile, "wb")
|
||||
f.write("small file")
|
||||
f.close()
|
||||
then = time.time() - 86400*3
|
||||
now = time.time()
|
||||
os.utime(incfile, (now, then))
|
||||
encfile = os.path.join(workdir, "CHK_encoding", "spurious")
|
||||
f = open(encfile, "wb")
|
||||
f.write("less small file")
|
||||
f.close()
|
||||
os.utime(encfile, (now, then))
|
||||
d.addCallback(_got_helper_status)
|
||||
# and that the json form exists
|
||||
d.addCallback(lambda res:
|
||||
self.GET("helper_status?t=json", followRedirect=True))
|
||||
def _got_helper_status_json(res):
|
||||
data = simplejson.loads(res)
|
||||
self.failUnlessEqual(data["chk_upload_helper.upload_need_upload"],
|
||||
1)
|
||||
self.failUnlessEqual(data["chk_upload_helper.incoming_count"], 1)
|
||||
self.failUnlessEqual(data["chk_upload_helper.incoming_size"], 10)
|
||||
self.failUnlessEqual(data["chk_upload_helper.incoming_size_old"],
|
||||
10)
|
||||
self.failUnlessEqual(data["chk_upload_helper.encoding_count"], 1)
|
||||
self.failUnlessEqual(data["chk_upload_helper.encoding_size"], 15)
|
||||
self.failUnlessEqual(data["chk_upload_helper.encoding_size_old"],
|
||||
15)
|
||||
d.addCallback(_got_helper_status_json)
|
||||
|
||||
# and check that client[3] (which uses a helper but does not run one
|
||||
# itself) doesn't explode when you ask for its status
|
||||
d.addCallback(lambda res: getPage(self.helper_webish_url + "status/"))
|
||||
def _got_non_helper_status(res):
|
||||
self.failUnless("Upload and Download Status" in res)
|
||||
d.addCallback(_got_non_helper_status)
|
||||
|
||||
# or for helper status with t=json
|
||||
d.addCallback(lambda res:
|
||||
getPage(self.helper_webish_url + "helper_status?t=json"))
|
||||
def _got_non_helper_status_json(res):
|
||||
data = simplejson.loads(res)
|
||||
self.failUnlessEqual(data, {})
|
||||
d.addCallback(_got_non_helper_status_json)
|
||||
|
||||
# see if the statistics page exists
|
||||
d.addCallback(lambda res: self.GET("statistics"))
|
||||
def _got_stats(res):
|
||||
self.failUnless("Node Statistics" in res)
|
||||
self.failUnless(" 'downloader.files_downloaded': 8," in res)
|
||||
d.addCallback(_got_stats)
|
||||
d.addCallback(lambda res: self.GET("statistics?t=json"))
|
||||
def _got_stats_json(res):
|
||||
data = simplejson.loads(res)
|
||||
self.failUnlessEqual(data["counters"]["uploader.files_uploaded"], 5)
|
||||
self.failUnlessEqual(data["stats"]["chk_upload_helper.upload_need_upload"], 1)
|
||||
d.addCallback(_got_stats_json)
|
||||
|
||||
# TODO: mangle the second segment of a file, to test errors that
|
||||
# occur after we've already sent some good data, which uses a
|
||||
|
Loading…
x
Reference in New Issue
Block a user