Skip to content
Snippets Groups Projects
Verified Commit 7712e6b1 authored by drebs's avatar drebs
Browse files

[refactor] make get_total_storage() return a deferred

parent 7aa8e949
No related branches found
No related tags found
1 merge request!169#9007 - improve and document IBlobsBackend
......@@ -143,6 +143,10 @@ class IBlobsBackend(Interface):
:return: The size in units of 1024 bytes.
:rtype: int
:return: A deferred that fires with the amount of storage used in units
of 1024 bytes.
:rtype: twisted.internet.defer.Deferred
"""
def get_tag(user, blob_id, namespace=''):
......
......@@ -96,7 +96,7 @@ class FilesystemBackendTestCase(unittest.TestCase):
def test_write_cannot_exceed_quota(self, isfile):
isfile.return_value = False
backend = _blobs.FilesystemBlobsBackend(blobs_path=self.tempdir)
backend.get_total_storage = lambda x: 100
backend.get_total_storage = lambda x: defer.succeed(100)
backend.quota = 90
with pytest.raises(_blobs.QuotaExceeded):
fd = Mock()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment