Merge pull request #1030 from freyes/compare-openstack

Add CompareOpenStack class
This commit is contained in:
coreycb
2023-03-28 14:59:17 -04:00
committed by GitHub
3 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
# Copyright 2023 Canonical Ltd.
#
# 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 unit_tests.utils as ut_utils
from zaza.openstack.utilities import os_versions
class TestOpenStackUtils(ut_utils.BaseTestCase):
def test_compare_openstack(self):
antelope = os_versions.CompareOpenStack('antelope')
zed = os_versions.CompareOpenStack('zed')
yoga = os_versions.CompareOpenStack('yoga')
self.assertGreater(antelope, zed)
self.assertLess(zed, antelope)
self.assertGreaterEqual(zed, zed)
self.assertGreaterEqual(antelope, yoga)
self.assertGreaterEqual(zed, yoga)
self.assertEqual("CompareOpenStack<zed>", repr(zed))

View File

@@ -38,6 +38,7 @@ import urllib
from .os_versions import (
CompareOpenStack,
OPENSTACK_CODENAMES,
SWIFT_CODENAMES,
OVN_CODENAMES,
@@ -2116,7 +2117,7 @@ def get_keystone_api_version(model_name=None):
'keystone',
'preferred-api-version',
model_name=model_name)
if os_version >= 'queens':
if CompareOpenStack(os_version) >= 'queens':
api_version = 3
elif api_version is None:
api_version = 2

View File

@@ -365,6 +365,10 @@ class BasicStringComparator(object):
"""Do less than or equals."""
return not self.__gt__(other)
def __repr__(self):
"""Return the representation of CompareOpenStack."""
return "%s<%s>" % (self.__class__.__name__, self._list[self.index])
def __str__(self):
"""Give back the item at the index.
@@ -390,3 +394,15 @@ class CompareHostReleases(BasicStringComparator):
"""
_list = UBUNTU_RELEASES
class CompareOpenStack(BasicStringComparator):
"""Provide comparisons of OpenStack releases.
Use in the form of
if CompareOpenStack(release) > 'yoga':
# do something
"""
_list = list(OPENSTACK_CODENAMES.values())