Note follow-up issue.

This commit is contained in:
Itamar Turner-Trauring 2022-01-20 10:52:44 -05:00
parent 23368fc9d9
commit 1bf2b2ee5f

View File

@ -349,12 +349,16 @@ class ImmutableHTTPAPITests(AsyncTestCase):
""" """
If a storage index has multiple shares, uploads to different shares are If a storage index has multiple shares, uploads to different shares are
stored separately and can be downloaded separately. stored separately and can be downloaded separately.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_bucket_allocated_with_new_shares(self): def test_bucket_allocated_with_new_shares(self):
""" """
If some shares already exist, allocating shares indicates only the new If some shares already exist, allocating shares indicates only the new
ones were created. ones were created.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_bucket_allocation_new_upload_key(self): def test_bucket_allocation_new_upload_key(self):
@ -362,41 +366,57 @@ class ImmutableHTTPAPITests(AsyncTestCase):
If a bucket was allocated with one upload key, and a different upload If a bucket was allocated with one upload key, and a different upload
key is used to allocate the bucket again, the previous download is key is used to allocate the bucket again, the previous download is
cancelled. cancelled.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_upload_with_wrong_upload_key_fails(self): def test_upload_with_wrong_upload_key_fails(self):
""" """
Uploading with a key that doesn't match the one used to allocate the Uploading with a key that doesn't match the one used to allocate the
bucket will fail. bucket will fail.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_upload_offset_cannot_be_negative(self): def test_upload_offset_cannot_be_negative(self):
""" """
A negative upload offset will be rejected. A negative upload offset will be rejected.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_mismatching_upload_fails(self): def test_mismatching_upload_fails(self):
""" """
If an uploaded chunk conflicts with an already uploaded chunk, a If an uploaded chunk conflicts with an already uploaded chunk, a
CONFLICT error is returned. CONFLICT error is returned.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_read_of_wrong_storage_index_fails(self): def test_read_of_wrong_storage_index_fails(self):
""" """
Reading from unknown storage index results in 404. Reading from unknown storage index results in 404.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_read_of_wrong_share_number_fails(self): def test_read_of_wrong_share_number_fails(self):
""" """
Reading from unknown storage index results in 404. Reading from unknown storage index results in 404.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_read_with_negative_offset_fails(self): def test_read_with_negative_offset_fails(self):
""" """
The offset for reads cannot be negative. The offset for reads cannot be negative.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """
def test_read_with_negative_length_fails(self): def test_read_with_negative_length_fails(self):
""" """
The length for reads cannot be negative. The length for reads cannot be negative.
TBD in https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3860
""" """