Merge pull request #1333 from tahoe-lafs/4063-pypy-test-failure

Make tests pass again

Fixes ticket:4063
This commit is contained in:
Itamar Turner-Trauring 2023-09-13 09:48:17 -04:00 committed by GitHub
commit ef20422bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 2 deletions

0
newsfragments/4063.minor Normal file
View File

View File

@ -1673,10 +1673,12 @@ class SharedImmutableMutableTestsMixin:
# semantically valid under HTTP.
check_bad_range("bytes=0-")
@given(data_length=st.integers(min_value=1, max_value=300000))
def test_read_with_no_range(self, data_length):
def _read_with_no_range_test(self, data_length):
"""
A read with no range returns the whole mutable/immutable.
Actual test is defined in subclasses, to fix complaints from Hypothesis
about the method having different executors.
"""
storage_index, uploaded_data, _ = self.upload(1, data_length)
response = self.http.result_of_with_flush(
@ -1770,6 +1772,13 @@ class ImmutableSharedTests(SharedImmutableMutableTestsMixin, SyncTestCase):
def get_leases(self, storage_index):
return self.http.storage_server.get_leases(storage_index)
@given(data_length=st.integers(min_value=1, max_value=300000))
def test_read_with_no_range(self, data_length):
"""
A read with no range returns the whole immutable.
"""
return self._read_with_no_range_test(data_length)
class MutableSharedTests(SharedImmutableMutableTestsMixin, SyncTestCase):
"""Shared tests, running on mutables."""
@ -1809,3 +1818,10 @@ class MutableSharedTests(SharedImmutableMutableTestsMixin, SyncTestCase):
def get_leases(self, storage_index):
return self.http.storage_server.get_slot_leases(storage_index)
@given(data_length=st.integers(min_value=1, max_value=300000))
def test_read_with_no_range(self, data_length):
"""
A read with no range returns the whole mutable.
"""
return self._read_with_no_range_test(data_length)