
Add a new utility function that can be used to generate a stable UUID for a resource request group. Related-Bug: #1922237 See-Also: https://review.opendev.org/785236 Change-Id: Ic3718defd74c2165077bb5a942e46474d3582cf5
415 lines
13 KiB
Python
Executable File
415 lines
13 KiB
Python
Executable File
# Copyright 2018 Ericsson
|
|
#
|
|
# 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 unittest import mock
|
|
import uuid
|
|
|
|
from neutron_lib.placement import utils as place_utils
|
|
from neutron_lib.tests import _base as base
|
|
|
|
|
|
class TestPlacementUtils(base.BaseTestCase):
|
|
|
|
def setUp(self):
|
|
super(TestPlacementUtils, self).setUp()
|
|
|
|
self._uuid_ns = uuid.UUID('94fedd4d-1ce0-4bb3-9c9a-c9c0f56de154')
|
|
|
|
def test_physnet_trait(self):
|
|
self.assertEqual(
|
|
'CUSTOM_PHYSNET_SOME_PHYSNET',
|
|
place_utils.physnet_trait('some-physnet'))
|
|
|
|
def test_vnic_type_trait(self):
|
|
self.assertEqual(
|
|
'CUSTOM_VNIC_TYPE_SOMEVNICTYPE',
|
|
place_utils.vnic_type_trait('somevnictype'))
|
|
|
|
def test_six_uuid5_literal(self):
|
|
try:
|
|
# assertNotRaises
|
|
place_utils.six_uuid5(
|
|
namespace=self._uuid_ns,
|
|
name='may or may not be a unicode string' +
|
|
' depending on Python version')
|
|
except Exception:
|
|
self.fail('could not generate uuid')
|
|
|
|
def test_six_uuid5_unicode(self):
|
|
try:
|
|
# assertNotRaises
|
|
place_utils.six_uuid5(
|
|
namespace=self._uuid_ns,
|
|
name=u'unicode string')
|
|
except Exception:
|
|
self.fail('could not generate uuid')
|
|
|
|
def test_agent_resource_provider_uuid(self):
|
|
try:
|
|
# assertNotRaises
|
|
place_utils.agent_resource_provider_uuid(
|
|
namespace=self._uuid_ns,
|
|
host='some host')
|
|
except Exception:
|
|
self.fail('could not generate agent resource provider uuid')
|
|
|
|
def test_device_resource_provider_uuid(self):
|
|
try:
|
|
# assertNotRaises
|
|
place_utils.device_resource_provider_uuid(
|
|
namespace=self._uuid_ns,
|
|
host='some host',
|
|
device='some device')
|
|
except Exception:
|
|
self.fail('could not generate device resource provider uuid')
|
|
|
|
def test_resource_request_group_uuid(self):
|
|
try:
|
|
# assertNotRaises
|
|
place_utils.resource_request_group_uuid(
|
|
namespace=self._uuid_ns,
|
|
qos_rules=[
|
|
mock.MagicMock(id='fake_id_0'),
|
|
mock.MagicMock(id='fake_id_1')
|
|
])
|
|
except Exception:
|
|
self.fail('could not generate resource request group uuid')
|
|
|
|
def test_agent_resource_provider_uuid_stable(self):
|
|
uuid_a = place_utils.agent_resource_provider_uuid(
|
|
namespace=self._uuid_ns,
|
|
host='somehost')
|
|
uuid_b = place_utils.agent_resource_provider_uuid(
|
|
namespace=self._uuid_ns,
|
|
host='somehost')
|
|
self.assertEqual(uuid_a, uuid_b)
|
|
|
|
def test_device_resource_provider_uuid_stable(self):
|
|
uuid_a = place_utils.device_resource_provider_uuid(
|
|
namespace=self._uuid_ns,
|
|
host='somehost',
|
|
device='some-device')
|
|
uuid_b = place_utils.device_resource_provider_uuid(
|
|
namespace=self._uuid_ns,
|
|
host='somehost',
|
|
device='some-device')
|
|
self.assertEqual(uuid_a, uuid_b)
|
|
|
|
def test_resource_request_group_uuid_stable(self):
|
|
uuid_a = place_utils.resource_request_group_uuid(
|
|
namespace=self._uuid_ns,
|
|
qos_rules=[
|
|
mock.MagicMock(id='fake_id_0'),
|
|
mock.MagicMock(id='fake_id_1')
|
|
]
|
|
)
|
|
uuid_b = place_utils.resource_request_group_uuid(
|
|
namespace=self._uuid_ns,
|
|
qos_rules=[
|
|
mock.MagicMock(id='fake_id_0'),
|
|
mock.MagicMock(id='fake_id_1')
|
|
]
|
|
)
|
|
self.assertEqual(uuid_a, uuid_b)
|
|
|
|
def test_parse_rp_bandwidths(self):
|
|
self.assertEqual(
|
|
{},
|
|
place_utils.parse_rp_bandwidths([]),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'eth0': {'egress': None, 'ingress': None}},
|
|
place_utils.parse_rp_bandwidths(['eth0']),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'eth0': {'egress': None, 'ingress': None}},
|
|
place_utils.parse_rp_bandwidths(['eth0::']),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_bandwidths,
|
|
['eth0::', 'eth0::'],
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_bandwidths,
|
|
['eth0:not a number:not a number'],
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'eth0': {'egress': 1, 'ingress': None}},
|
|
place_utils.parse_rp_bandwidths(['eth0:1:']),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'eth0': {'egress': None, 'ingress': 1}},
|
|
place_utils.parse_rp_bandwidths(['eth0::1']),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'eth0': {'egress': 1, 'ingress': 1}},
|
|
place_utils.parse_rp_bandwidths(['eth0:1:1']),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'eth0': {'egress': 1, 'ingress': 1},
|
|
'eth1': {'egress': 10, 'ingress': 10}},
|
|
place_utils.parse_rp_bandwidths(['eth0:1:1', 'eth1:10:10']),
|
|
)
|
|
|
|
def test_parse_rp_pp_with_direction(self):
|
|
self.assertEqual(
|
|
{},
|
|
place_utils.parse_rp_pp_with_direction([], 'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'egress': None, 'ingress': None}},
|
|
place_utils.parse_rp_pp_with_direction(['host0'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'egress': None, 'ingress': None}},
|
|
place_utils.parse_rp_pp_with_direction(['host0::'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'default_host': {'egress': None, 'ingress': None}},
|
|
place_utils.parse_rp_pp_with_direction(['::'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'egress': 1, 'ingress': None}},
|
|
place_utils.parse_rp_pp_with_direction(['host0:1:'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'egress': None, 'ingress': 1}},
|
|
place_utils.parse_rp_pp_with_direction(['host0::1'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'egress': 1, 'ingress': 1}},
|
|
place_utils.parse_rp_pp_with_direction(['host0:1:1'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'default_host': {'egress': 0, 'ingress': 0}},
|
|
place_utils.parse_rp_pp_with_direction([':0:0'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'egress': 1, 'ingress': 1},
|
|
'host1': {'egress': 10, 'ingress': 10}},
|
|
place_utils.parse_rp_pp_with_direction(
|
|
['host0:1:1', 'host1:10:10'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_pp_with_direction,
|
|
['default_host::', '::'], 'default_host',
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_pp_with_direction,
|
|
['host0::', 'host0::'], 'default_host',
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_pp_with_direction,
|
|
['host0:not a number:not a number'], 'default_host',
|
|
)
|
|
|
|
def test_parse_rp_pp_without_direction(self):
|
|
self.assertEqual(
|
|
{},
|
|
place_utils.parse_rp_pp_without_direction([], 'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'any': None}},
|
|
place_utils.parse_rp_pp_without_direction(['host0'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'any': None}},
|
|
place_utils.parse_rp_pp_without_direction(['host0:'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'any': 1}},
|
|
place_utils.parse_rp_pp_without_direction(['host0:1'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'default_host': {'any': None}},
|
|
place_utils.parse_rp_pp_without_direction([':'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'default_host': {'any': 0}},
|
|
place_utils.parse_rp_pp_without_direction([':0'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'host0': {'any': 1},
|
|
'host1': {'any': 10}},
|
|
place_utils.parse_rp_pp_without_direction(
|
|
['host0:1', 'host1:10'],
|
|
'default_host'),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_pp_without_direction,
|
|
['default_host:', ':'], 'default_host',
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_pp_without_direction,
|
|
['host0:', 'host0:'], 'default_host',
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_pp_without_direction,
|
|
['host0:not a number'], 'default_host',
|
|
)
|
|
|
|
def test_parse_rp_options(self):
|
|
self.assertEqual(
|
|
{},
|
|
place_utils._parse_rp_options([], tuple()),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'outer_key0': {'inner_key0': None}},
|
|
place_utils._parse_rp_options(['outer_key0'], ('inner_key0',)),
|
|
)
|
|
self.assertEqual(
|
|
{'outer_key0': {'inner_key0': None},
|
|
'outer_key1': {'inner_key0': None},
|
|
'outer_key2': {'inner_key0': None},
|
|
'outer_key3': {'inner_key0': None}},
|
|
place_utils._parse_rp_options(
|
|
['outer_key0', 'outer_key1', 'outer_key2', 'outer_key3'],
|
|
('inner_key0',)),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'outer_key0': {
|
|
'inner_key0': None,
|
|
'inner_key1': None,
|
|
'inner_key2': None,
|
|
'inner_key3': None}},
|
|
place_utils._parse_rp_options(
|
|
['outer_key0'],
|
|
('inner_key0', 'inner_key1', 'inner_key2', 'inner_key3')),
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'outer_key0': {
|
|
'inner_key0': None,
|
|
'inner_key1': None,
|
|
'inner_key2': None,
|
|
'inner_key3': None},
|
|
'outer_key1': {
|
|
'inner_key0': None,
|
|
'inner_key1': None,
|
|
'inner_key2': None,
|
|
'inner_key3': None},
|
|
'': {
|
|
'inner_key0': None,
|
|
'inner_key1': None,
|
|
'inner_key2': None,
|
|
'inner_key3': None},
|
|
'outer_key3': {
|
|
'inner_key0': None,
|
|
'inner_key1': 1,
|
|
'inner_key2': 2,
|
|
'inner_key3': 3}},
|
|
place_utils._parse_rp_options(
|
|
['outer_key0', 'outer_key1::::', '::::', 'outer_key3::1:2:3'],
|
|
('inner_key0', 'inner_key1', 'inner_key2', 'inner_key3')),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils._parse_rp_options,
|
|
['outer_key0:'], ('inner_key1', 'inner_key2'),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils._parse_rp_options,
|
|
['outer_key0::'], ('inner_key1',),
|
|
)
|
|
|
|
def test_parse_rp_inventory_defaults(self):
|
|
self.assertEqual(
|
|
{},
|
|
place_utils.parse_rp_inventory_defaults({}),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_inventory_defaults,
|
|
{'allocation_ratio': '-1.0'}
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'allocation_ratio': 1.0},
|
|
place_utils.parse_rp_inventory_defaults(
|
|
{'allocation_ratio': '1.0'}),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_inventory_defaults,
|
|
{'min_unit': '-1'}
|
|
)
|
|
|
|
self.assertEqual(
|
|
{'min_unit': 1},
|
|
place_utils.parse_rp_inventory_defaults(
|
|
{'min_unit': '1'}),
|
|
)
|
|
|
|
self.assertRaises(
|
|
ValueError,
|
|
place_utils.parse_rp_inventory_defaults,
|
|
{'no such inventory parameter': 1}
|
|
)
|