summaryrefslogtreecommitdiff
path: root/tests/blobs/test_fs_backend.py
AgeCommit message (Collapse)Author
2017-12-29[bug] isolate operations in blobs file system backenddrebs
Closes: #9025
2017-12-26[feature] add ranges to blobs backenddrebs
2017-12-20[refactor] move blobs fs backend and resource to their own submodulesdrebs
2017-12-19[test] use producer in all fs backend testsdrebs
2017-12-13[refactor] use producer/consumer on write/read_blob respectivellydrebs
2017-12-13[bug] handle path exceptions using twisted failuresdrebs
2017-12-13[refactor] make read_blob() return a deferreddrebs
2017-12-13[refactor] make get_tag() return a deferreddrebs
2017-12-13[refactor] make get_total_storage() return a deferreddrebs
2017-12-13[refactor] make list_blobs() return a deferreddrebs
2017-12-13[refactor] make count() return a deferreddrebs
2017-12-13[refactor] make get_blob_size() return a deferreddrebs
2017-12-13[refactor] make delete_blob() return a deferreddrebs
2017-12-13[refactor] make blobs backend delete_blob() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend write_blob() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend read_blob() agnostic of twisted.webdrebs
2017-12-13[refactor] make blobs backend list_blobs() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend count() agnostic of twisted.web requestsdrebs
2017-12-12[bug] use namespace when uploading blobsdrebs
2017-12-01[feature] add implementation for get_blob_sizeVictor Shyba
2017-11-22[test] avoid collision when running fs backend tests in paralleldrebs
Closes: #9000
2017-09-29[bug] check all http response status codesdrebs
2017-09-17[refactor] move tests to root of repositorydrebs
Tests entrypoint was in a testing/ subfolder in the root of the repository. This was made mainly because we had some common files for tests and we didn't want to ship them (files in testing/test_soledad, which is itself a python package. This sometimes causes errors when loading tests (it seems setuptools is confused with having one python package in a subdirectory of another). This commit moves the tests entrypoint to the root of the repository. Closes: #8952