ooi/ooi/tests/functional/middleware/test_storage_controller.py

228 lines
8.1 KiB
Python

# Copyright 2015 Spanish National Research Council
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import uuid
from ooi.tests import fakes
from ooi.tests.functional.middleware import test_middleware
from ooi import utils
def build_occi_volume(vol):
name = vol["displayName"]
vol_id = vol["id"]
size = vol["size"]
# TODO(enolfc): use proper status!
status = "online"
cats = []
cats.append('storage; '
'scheme="http://schemas.ogf.org/occi/infrastructure#"; '
'class="kind"; '
'title="storage resource"; '
'rel="http://schemas.ogf.org/occi/core#resource"; '
'location="%s/storage/"' % fakes.application_url)
attrs = [
'occi.core.title="%s"' % name,
'occi.storage.size=%s' % size,
'occi.storage.state="%s"' % status,
'occi.core.id="%s"' % vol_id,
]
links = []
links.append('<%s/storage/%s?action=backup>; '
'rel="http://schemas.ogf.org/occi/'
'infrastructure/storage/action#backup"' %
(fakes.application_url, vol_id))
links.append('<%s/storage/%s?action=resize>; '
'rel="http://schemas.ogf.org/occi/'
'infrastructure/storage/action#resize"' %
(fakes.application_url, vol_id))
links.append('<%s/storage/%s?action=online>; '
'rel="http://schemas.ogf.org/occi/'
'infrastructure/storage/action#online"' %
(fakes.application_url, vol_id))
links.append('<%s/storage/%s?action=snapshot>; '
'rel="http://schemas.ogf.org/occi/'
'infrastructure/storage/action#snapshot"' %
(fakes.application_url, vol_id))
links.append('<%s/storage/%s?action=offline>; '
'rel="http://schemas.ogf.org/occi/'
'infrastructure/storage/action#offline"' %
(fakes.application_url, vol_id))
result = []
for c in cats:
result.append(("Category", c))
for l in links:
result.append(("Link", l))
for a in attrs:
result.append(("X-OCCI-Attribute", a))
return result
class TestStorageController(test_middleware.TestMiddleware):
"""Test OCCI storage controller."""
def test_list_vols_empty(self):
tenant = fakes.tenants["bar"]
app = self.get_app()
for url in ("/storage/", "/storage"):
req = self._build_req(url, tenant["id"], method="GET")
req.environ["HTTP_X_PROJECT_ID"] = tenant["id"]
resp = req.get_response(app)
expected_result = ""
self.assertContentType(resp)
self.assertExpectedResult(expected_result, resp)
self.assertEqual(204, resp.status_code)
def test_list_vols(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
for url in ("/storage/", "/storage"):
req = self._build_req(url, tenant["id"], method="GET")
resp = req.get_response(app)
self.assertEqual(200, resp.status_code)
expected = []
for s in fakes.volumes[tenant["id"]]:
expected.append(
("X-OCCI-Location",
utils.join_url(self.application_url + "/",
"storage/%s" % s["id"]))
)
self.assertExpectedResult(expected, resp)
def test_show_vol(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
for volume in fakes.volumes[tenant["id"]]:
req = self._build_req("/storage/%s" % volume["id"],
tenant["id"], method="GET")
resp = req.get_response(app)
expected = build_occi_volume(volume)
self.assertContentType(resp)
self.assertExpectedResult(expected, resp)
self.assertEqual(200, resp.status_code)
def test_vol_not_found(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
req = self._build_req("/storage/%s" % uuid.uuid4().hex,
tenant["id"], method="GET")
resp = req.get_response(app)
self.assertEqual(404, resp.status_code)
def test_create_vol_no_size(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
headers = {
'Category': (
'storage;'
'scheme="http://schemas.ogf.org/occi/infrastructure#";'
'class="kind"')
}
req = self._build_req("/storage", tenant["id"], method="POST",
headers=headers)
resp = req.get_response(app)
self.assertEqual(400, resp.status_code)
self.assertDefaults(resp)
def test_create_vol(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
headers = {
'Category': (
'storage;'
'scheme="http://schemas.ogf.org/occi/infrastructure#";'
'class="kind"'),
'X-OCCI-Attribute': (
'occi.storage.size=1'
)
}
req = self._build_req("/storage", tenant["id"], method="POST",
headers=headers)
resp = req.get_response(app)
expected = [("X-OCCI-Location",
utils.join_url(self.application_url + "/",
"storage/%s" % "foo"))]
self.assertEqual(200, resp.status_code)
self.assertExpectedResult(expected, resp)
self.assertDefaults(resp)
def test_delete_vol(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
for volume in fakes.volumes[tenant["id"]]:
req = self._build_req("/storage/%s" % volume["id"],
tenant["id"], method="DELETE")
resp = req.get_response(app)
self.assertContentType(resp)
self.assertEqual(204, resp.status_code)
# TODO(enolfc): find a way to be sure that all volumes
# are in fact deleted.
def test_delete_all_vols(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
req = self._build_req("/storage/", tenant["id"], method="DELETE")
resp = req.get_response(app)
self.assertContentType(resp)
self.assertEqual(204, resp.status_code)
def test_action_vol(self):
tenant = fakes.tenants["foo"]
app = self.get_app()
for action in ("online", "offline", "backup", "snapshot", "resize"):
headers = {
'Category': (
'%s;'
'scheme="http://schemas.ogf.org/occi/infrastructure/'
'storage/action#";'
'class="action"' % action)
}
for vol in fakes.volumes[tenant["id"]]:
req = self._build_req("/storage/%s?action=%s" % (vol["id"],
action),
tenant["id"], method="POST",
headers=headers)
resp = req.get_response(app)
self.assertDefaults(resp)
self.assertEqual(501, resp.status_code)
class StorageControllerTextPlain(test_middleware.TestMiddlewareTextPlain,
TestStorageController):
"""Test OCCI compute controller with Accept: text/plain."""
class StorageControllerTextOcci(test_middleware.TestMiddlewareTextOcci,
TestStorageController):
"""Test OCCI compute controller with Accept: text/occi."""