Merge "Make generateHostname honor pattern parameter" into stable/mitaka

This commit is contained in:
Jenkins 2016-07-19 16:08:43 +00:00 committed by Gerrit Code Review
commit c9e96c96d8
2 changed files with 35 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def _generate_hostname(pattern, number):
if pattern:
# NOTE(kzaitsev) works both for unicode and simple strings in py2
# and works as expected in py3
pattern.replace('#', str(number))
return pattern.replace('#', str(number))
counter = _random_string_counter or 1
# generate first 5 random chars

View File

@ -0,0 +1,34 @@
# Copyright (c) 2016 Mirantis, 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.
import re
import testtools
import unittest
from muranodashboard.dynamic_ui import yaql_functions
import six
class TestYAQLFunctions(testtools.TestCase):
def test_generate_hostname(self):
self.assertEqual(
yaql_functions._generate_hostname('foo-#', 1), 'foo-1')
self.assertEqual(
yaql_functions._generate_hostname('foo-#', 22), 'foo-22')
@unittest.skipIf(six.PY3, "lp bug #1604000")
def test_generate_hostname_random(self):
random = yaql_functions._generate_hostname('', 3)
self.assertTrue(bool(re.match(r'^\w{14}$', random)))