44132d4344
When the duration of the timeout timer used in the rabbit driver.is None and we want that the timer return a maximum of N secs it return None (infinite) instead of N. This change fixes that. Closes-bug: #1408370 Change-Id: I7f4cb3075f776c63aa7dc497173677f92b68c16d
65 lines
2.4 KiB
Python
65 lines
2.4 KiB
Python
|
|
# Copyright 2013 Red Hat, Inc.
|
|
#
|
|
# 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 oslo.messaging._drivers import common
|
|
from oslo.messaging import _utils as utils
|
|
from tests import utils as test_utils
|
|
|
|
|
|
class VersionIsCompatibleTestCase(test_utils.BaseTestCase):
|
|
def test_version_is_compatible_same(self):
|
|
self.assertTrue(utils.version_is_compatible('1.23', '1.23'))
|
|
|
|
def test_version_is_compatible_newer_minor(self):
|
|
self.assertTrue(utils.version_is_compatible('1.24', '1.23'))
|
|
|
|
def test_version_is_compatible_older_minor(self):
|
|
self.assertFalse(utils.version_is_compatible('1.22', '1.23'))
|
|
|
|
def test_version_is_compatible_major_difference1(self):
|
|
self.assertFalse(utils.version_is_compatible('2.23', '1.23'))
|
|
|
|
def test_version_is_compatible_major_difference2(self):
|
|
self.assertFalse(utils.version_is_compatible('1.23', '2.23'))
|
|
|
|
def test_version_is_compatible_newer_rev(self):
|
|
self.assertFalse(utils.version_is_compatible('1.23', '1.23.1'))
|
|
|
|
def test_version_is_compatible_newer_rev_both(self):
|
|
self.assertFalse(utils.version_is_compatible('1.23.1', '1.23.2'))
|
|
|
|
def test_version_is_compatible_older_rev_both(self):
|
|
self.assertTrue(utils.version_is_compatible('1.23.2', '1.23.1'))
|
|
|
|
def test_version_is_compatible_older_rev(self):
|
|
self.assertTrue(utils.version_is_compatible('1.24', '1.23.1'))
|
|
|
|
def test_version_is_compatible_no_rev_is_zero(self):
|
|
self.assertTrue(utils.version_is_compatible('1.23.0', '1.23'))
|
|
|
|
|
|
class TimerTestCase(test_utils.BaseTestCase):
|
|
def test_duration_is_none(self):
|
|
t = common.DecayingTimer()
|
|
t.start()
|
|
remaining = t.check_return(None)
|
|
self.assertEqual(None, remaining)
|
|
|
|
def test_duration_is_none_and_maximun_set(self):
|
|
t = common.DecayingTimer()
|
|
t.start()
|
|
remaining = t.check_return(None, maximum=2)
|
|
self.assertEqual(2, remaining)
|