Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7437680
test_objstorage_api.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
test_objstorage_api.py
View Options
# Copyright (C) 2015-2019 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
import
shutil
import
tempfile
import
unittest
import
pytest
from
swh.core.tests.server_testing
import
ServerTestFixtureAsync
from
swh.objstorage
import
get_objstorage
from
swh.objstorage.api.server
import
make_app
from
swh.objstorage.tests.objstorage_testing
import
ObjStorageTestFixture
class
TestRemoteObjStorage
(
ServerTestFixtureAsync
,
ObjStorageTestFixture
,
unittest
.
TestCase
):
""" Test the remote archive API.
"""
def
setUp
(
self
):
self
.
tmpdir
=
tempfile
.
mkdtemp
()
self
.
config
=
{
'objstorage'
:
{
'cls'
:
'pathslicing'
,
'args'
:
{
'root'
:
self
.
tmpdir
,
'slicing'
:
'0:1/0:5'
,
'allow_delete'
:
True
,
}
},
'client_max_size'
:
8
*
1024
*
1024
,
}
self
.
app
=
make_app
(
self
.
config
)
super
()
.
setUp
()
self
.
storage
=
get_objstorage
(
'remote'
,
{
'url'
:
self
.
url
()
})
def
tearDown
(
self
):
super
()
.
tearDown
()
shutil
.
rmtree
(
self
.
tmpdir
)
@pytest.mark.skip
(
'makes no sense to test this for the remote api'
)
def
test_delete_not_allowed
(
self
):
pass
@pytest.mark.skip
(
'makes no sense to test this for the remote api'
)
def
test_delete_not_allowed_by_default
(
self
):
pass
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Tue, Apr 15, 2:21 AM (1 w, 13 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3286496
Attached To
rDOBJS Object storage
Event Timeline
Log In to Comment