From 97d975879d701d927a723a47f31c316dc8b5318d Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 23 Nov 2016 16:49:19 -0500 Subject: [PATCH] add tests for versionutils Change-Id: Ie7648876115baff2e9e6debba0c1cc94a2d10896 Signed-off-by: Doug Hellmann --- openstack_releases/tests/test_versionutils.py | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 openstack_releases/tests/test_versionutils.py diff --git a/openstack_releases/tests/test_versionutils.py b/openstack_releases/tests/test_versionutils.py new file mode 100644 index 0000000000..73bea3e4b5 --- /dev/null +++ b/openstack_releases/tests/test_versionutils.py @@ -0,0 +1,51 @@ +# 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 oslotest import base + +from openstack_releases import versionutils + + +class TestValidateVersion(base.BaseTestCase): + + def test_valid_std(self): + errors = list(versionutils.validate_version('1.2.3')) + self.assertEqual(0, len(errors)) + + def test_invalid_std(self): + errors = list(versionutils.validate_version('1.2.3.4')) + self.assertEqual(1, len(errors)) + + def test_empty_std(self): + errors = list(versionutils.validate_version('')) + self.assertEqual(1, len(errors)) + + def test_valid_xstatic(self): + errors = list(versionutils.validate_version('1.2.3.4', + release_type='xstatic')) + self.assertEqual(0, len(errors)) + + def test_invalid_release_type(self): + errors = list(versionutils.validate_version('1.2.3', + release_type='nonesuch')) + self.assertEqual(1, len(errors)) + + def test_pre_not_allowed(self): + errors = list(versionutils.validate_version('1.2.3.0rc1', + pre_ok=False)) + self.assertEqual(1, len(errors)) + + def test_pre_ok(self): + errors = list(versionutils.validate_version('1.2.3.0rc1')) + self.assertEqual(0, len(errors))