8c3abfdfb0
Midway through the valid uuid conversion project, we decided to use upper-case fake constant uuids. For backwards compatibility, we put both upper-case and lower-case versions of each constant in the fake_constants file, with the goal of returning and removing the lower-case versions when their usages had been converted to upper-case. This commit converts the lower-case usages of the constants to upper-case and removes the lower-case definitions from the constants file. Change-Id: I89e394fe6d0e0483c0816ae133f929616b340538
120 lines
3.7 KiB
Python
120 lines
3.7 KiB
Python
# Copyright 2015 SimpliVity Corp.
|
|
#
|
|
# 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.
|
|
|
|
from oslo_versionedobjects import fields
|
|
|
|
from cinder import objects
|
|
from cinder.tests.unit import fake_constants as fake
|
|
|
|
|
|
def fake_db_volume(**updates):
|
|
db_volume = {
|
|
'id': fake.VOLUME_ID,
|
|
'size': 1,
|
|
'name': 'volume-%s' % fake.VOLUME_ID,
|
|
'availability_zone': 'fake_availability_zone',
|
|
'status': 'available',
|
|
'attach_status': 'detached',
|
|
'previous_status': None,
|
|
'volume_attachment': [],
|
|
'volume_metadata': [],
|
|
'volume_admin_metadata': [],
|
|
'volume_glance_metadata': [],
|
|
'snapshots': [],
|
|
}
|
|
|
|
for name, field in objects.Volume.fields.items():
|
|
if name in db_volume:
|
|
continue
|
|
if field.nullable:
|
|
db_volume[name] = None
|
|
elif field.default != fields.UnspecifiedDefault:
|
|
db_volume[name] = field.default
|
|
else:
|
|
raise Exception('fake_db_volume needs help with %s.' % name)
|
|
|
|
if updates:
|
|
db_volume.update(updates)
|
|
|
|
return db_volume
|
|
|
|
|
|
def fake_db_volume_type(**updates):
|
|
db_volume_type = {
|
|
'id': fake.VOLUME_TYPE_ID,
|
|
'name': 'type-1',
|
|
'description': 'A fake volume type',
|
|
'is_public': True,
|
|
'projects': [],
|
|
'extra_specs': {},
|
|
}
|
|
|
|
for name, field in objects.VolumeType.fields.items():
|
|
if name in db_volume_type:
|
|
continue
|
|
if field.nullable:
|
|
db_volume_type[name] = None
|
|
elif field.default != fields.UnspecifiedDefault:
|
|
db_volume_type[name] = field.default
|
|
else:
|
|
raise Exception('fake_db_volume_type needs help with %s.' % name)
|
|
|
|
if updates:
|
|
db_volume_type.update(updates)
|
|
|
|
return db_volume_type
|
|
|
|
|
|
def fake_db_volume_attachment(**updates):
|
|
db_volume_attachment = {
|
|
'id': fake.ATTACHMENT_ID,
|
|
'volume_id': fake.VOLUME_ID,
|
|
}
|
|
|
|
for name, field in objects.VolumeAttachment.fields.items():
|
|
if name in db_volume_attachment:
|
|
continue
|
|
if field.nullable:
|
|
db_volume_attachment[name] = None
|
|
elif field.default != fields.UnspecifiedDefault:
|
|
db_volume_attachment[name] = field.default
|
|
else:
|
|
raise Exception(
|
|
'fake_db_volume_attachment needs help with %s.' % name)
|
|
|
|
if updates:
|
|
db_volume_attachment.update(updates)
|
|
|
|
return db_volume_attachment
|
|
|
|
|
|
def fake_volume_obj(context, **updates):
|
|
expected_attrs = updates.pop('expected_attrs',
|
|
['metadata', 'admin_metadata'])
|
|
vol = objects.Volume._from_db_object(context, objects.Volume(),
|
|
fake_db_volume(**updates),
|
|
expected_attrs=expected_attrs)
|
|
return vol
|
|
|
|
|
|
def fake_volume_type_obj(context, **updates):
|
|
return objects.VolumeType._from_db_object(
|
|
context, objects.VolumeType(), fake_db_volume_type(**updates))
|
|
|
|
|
|
def fake_volume_attachment_obj(context, **updates):
|
|
return objects.VolumeAttachment._from_db_object(
|
|
context, objects.VolumeAttachment(),
|
|
fake_db_volume_attachment(**updates))
|