77afc90b5d
This is stricter, but also provides plumbing for more advanced things like fixtures and testscenarios. Change-Id: I607b50390708ca3caa9799ef0b27007df5045a6c
74 lines
2.7 KiB
Python
74 lines
2.7 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# 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 testtools
|
|
|
|
from heat.common import short_id
|
|
import uuid
|
|
|
|
|
|
class ShortIdTest(testtools.TestCase):
|
|
|
|
def test_byte_string_8(self):
|
|
self.assertEqual(short_id._to_byte_string(0xab, 8), '\xab')
|
|
self.assertEqual(short_id._to_byte_string(0x05, 8), '\x05')
|
|
|
|
def test_byte_string_16(self):
|
|
self.assertEqual(short_id._to_byte_string(0xabcd, 16), '\xab\xcd')
|
|
self.assertEqual(short_id._to_byte_string(0xabc, 16), '\x0a\xbc')
|
|
|
|
def test_byte_string_12(self):
|
|
self.assertEqual(short_id._to_byte_string(0xabc, 12), '\xab\xc0')
|
|
self.assertEqual(short_id._to_byte_string(0x0ab, 12), '\x0a\xb0')
|
|
|
|
def test_byte_string_60(self):
|
|
val = 0x111111111111111
|
|
byte_string = short_id._to_byte_string(val, 60)
|
|
self.assertEqual(byte_string, '\x11\x11\x11\x11\x11\x11\x11\x10')
|
|
|
|
def test_get_id_string(self):
|
|
id = short_id.get_id('11111111-1111-4111-bfff-ffffffffffff')
|
|
self.assertEqual(id, 'ceirceirceir')
|
|
|
|
def test_get_id_uuid_1(self):
|
|
source = uuid.UUID('11111111-1111-4111-bfff-ffffffffffff')
|
|
self.assertEqual(source.time, 0x111111111111111)
|
|
self.assertEqual(short_id.get_id(source), 'ceirceirceir')
|
|
|
|
def test_get_id_uuid_f(self):
|
|
source = uuid.UUID('ffffffff-ffff-4fff-8000-000000000000')
|
|
self.assertEqual(short_id.get_id(source), '777777777777')
|
|
|
|
def test_get_id_uuid_0(self):
|
|
source = uuid.UUID('00000000-0000-4000-bfff-ffffffffffff')
|
|
self.assertEqual(short_id.get_id(source), 'aaaaaaaaaaaa')
|
|
|
|
def test_get_id_uuid_endianness(self):
|
|
source = uuid.UUID('ffffffff-00ff-4000-aaaa-aaaaaaaaaaaa')
|
|
self.assertEqual(short_id.get_id(source), 'aaaa77777777')
|
|
|
|
def test_get_id_uuid1(self):
|
|
source = uuid.uuid1()
|
|
self.assertRaises(ValueError, short_id.get_id, source)
|
|
|
|
def test_generate_ids(self):
|
|
allowed_chars = 'abcdefghijklmnopqrstuvwxyz234567'
|
|
ids = [short_id.generate_id() for i in range(25)]
|
|
|
|
for id in ids:
|
|
self.assertEqual(len(id), 12)
|
|
self.assertFalse(id.translate(None, allowed_chars))
|
|
self.assertEqual(ids.count(id), 1)
|