mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-18 17:00:24 +00:00
cover uploads and downloads in tests
This commit is contained in:
parent
dbc9f7e06c
commit
1f495ec41f
@ -1003,7 +1003,10 @@ class Web(WebMixin, WebErrorMixin, testutil.StallMixin, testutil.ReallyEqualMixi
|
|||||||
def test_magicfolder_status_success(self):
|
def test_magicfolder_status_success(self):
|
||||||
self.s._magic_folders['default'] = mf = FakeMagicFolder()
|
self.s._magic_folders['default'] = mf = FakeMagicFolder()
|
||||||
mf.uploader.status = [
|
mf.uploader.status = [
|
||||||
create_test_queued_item(u"rel/path", [('done', 12345)])
|
create_test_queued_item(u"rel/uppath", [('done', 12345)])
|
||||||
|
]
|
||||||
|
mf.downloader.status = [
|
||||||
|
create_test_queued_item(u"rel/downpath", [('done', 23456)])
|
||||||
]
|
]
|
||||||
data = yield self.POST(
|
data = yield self.POST(
|
||||||
'/magic_folder?t=json',
|
'/magic_folder?t=json',
|
||||||
@ -1017,12 +1020,20 @@ class Web(WebMixin, WebErrorMixin, testutil.StallMixin, testutil.ReallyEqualMixi
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"status": "done",
|
"status": "done",
|
||||||
"path": "rel/path",
|
"path": "rel/uppath",
|
||||||
"kind": "upload",
|
"kind": "upload",
|
||||||
"percent_done": 100.0,
|
"percent_done": 100.0,
|
||||||
"done_at": 12345,
|
"done_at": 12345,
|
||||||
"size": 1234,
|
"size": 1234,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"status": "done",
|
||||||
|
"path": "rel/downpath",
|
||||||
|
"kind": "download",
|
||||||
|
"percent_done": 100.0,
|
||||||
|
"done_at": 23456,
|
||||||
|
"size": 1234,
|
||||||
|
},
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user