
We want to switch the SOAP library backing oslo.vmware [1], which changes how a ManagedObjectReference's attributes look like. To handle the two representations in the tests - especially for the transition period - we will set both attributes on fake.ManagedObjectReference. Therefore, we have to use fake.ManagedObjectReference everywhere instead of using manual Mock objects lacking one of the attributes. [1] https://specs.openstack.org/openstack/oslo-specs/specs/victoria/oslo-vmware-soap-library-switch.html Change-Id: I449e045e948ad543c4d046b6449094c7617ce78f
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# 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.
|
|
|
|
|
|
class ManagedObjectReference(object):
|
|
"""A managed object reference is a remote identifier."""
|
|
|
|
def __init__(self, name="ManagedObject", value=None, propSetVal=None):
|
|
super(ManagedObjectReference, self)
|
|
# Managed Object Reference value attributes
|
|
# typically have values like vm-123 or
|
|
# host-232 and not UUID.
|
|
self.value = value
|
|
self._value_1 = value
|
|
# Managed Object Reference type
|
|
# attributes hold the name of the type
|
|
# of the vCenter object the value
|
|
# attribute is the identifier for
|
|
self.type = name
|
|
self._type = name
|