cinder/cinder/tests/unit/api/contrib/test_capabilities.py

103 lines
3.7 KiB
Python

# Copyright (c) 2015 Hitachi Data Systems, Inc.
# All Rights Reserved.
#
# 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 mock
from cinder.api.contrib import capabilities
from cinder import context
from cinder import test
from cinder.tests.unit.api import fakes
def rpcapi_get_capabilities(self, context, host, discover):
capabilities = dict(
vendor_name='OpenStack',
volume_backend_name='lvm',
pool_name='pool',
driver_version='2.0.0',
storage_protocol='iSCSI',
display_name='Capabilities of Cinder LVM driver',
description='These are volume type options provided by '
'Cinder LVM driver, blah, blah.',
visibility='public',
properties = dict(
compression = dict(
title='Compression',
description='Enables compression.',
type='boolean'),
qos = dict(
title='QoS',
description='Enables QoS.',
type='boolean'),
replication = dict(
title='Replication',
description='Enables replication.',
type='boolean'),
thin_provisioning = dict(
title='Thin Provisioning',
description='Sets thin provisioning.',
type='boolean'),
)
)
return capabilities
@mock.patch('cinder.volume.rpcapi.VolumeAPI.get_capabilities',
rpcapi_get_capabilities)
class CapabilitiesAPITest(test.TestCase):
def setUp(self):
super(CapabilitiesAPITest, self).setUp()
self.flags(host='fake')
self.controller = capabilities.CapabilitiesController()
self.ctxt = context.RequestContext('admin', 'fake', True)
def test_capabilities_summary(self):
req = fakes.HTTPRequest.blank('/fake/capabilities/fake')
req.environ['cinder.context'] = self.ctxt
res = self.controller.show(req, 'fake')
expected = {
'namespace': 'OS::Storage::Capabilities::fake',
'vendor_name': 'OpenStack',
'volume_backend_name': 'lvm',
'pool_name': 'pool',
'driver_version': '2.0.0',
'storage_protocol': 'iSCSI',
'display_name': 'Capabilities of Cinder LVM driver',
'description': 'These are volume type options provided by '
'Cinder LVM driver, blah, blah.',
'visibility': 'public',
'properties': {
'compression': {
'title': 'Compression',
'description': 'Enables compression.',
'type': 'boolean'},
'qos': {
'title': 'QoS',
'description': 'Enables QoS.',
'type': 'boolean'},
'replication': {
'title': 'Replication',
'description': 'Enables replication.',
'type': 'boolean'},
'thin_provisioning': {
'title': 'Thin Provisioning',
'description': 'Sets thin provisioning.',
'type': 'boolean'},
}
}
self.assertDictMatch(expected, res)