b11da2eb77
* add parse_cpu_spec() Previously, we didn't take into account that CPU IDs and such can be in the form of libvirt lists, with dashes, commas and carets. This patch adds the parse_cpu_spec() method - taken straight from Nova - and makes get_server_cpu_pinning() use it. * Change get_server_cpu_pinning() to accept a server_id instead of a full server JSON object. This makes it clearer what needs to be passed to the method. * add get_pinning_as_set() Returns the same results as get_server_cpu_pinning(), but as a set. Original-review: https://review.rdoproject.org/r/#/c/21324/ Change-Id: Ic37dcecb27d08f50e8d4a06701f46bc97e0bcc71
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
# Copyright 2018 Red Hat
|
|
# 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.
|
|
|
|
from tempest.lib import exceptions
|
|
|
|
|
|
class MissingHypervisorException(exceptions.TempestException):
|
|
message = "Unable to find IP in conf. Server: %(server)s, host: %(host)s."
|
|
|
|
|
|
class MissingServiceSectionException(exceptions.TempestException):
|
|
message = "Unable to find whitebox-%(service)s section in configuration."
|
|
|
|
|
|
class InvalidCPUSpec(exceptions.TempestException):
|
|
message = "CPU spec is invalid: %(spec)s."
|