2013-10-09 12:03:50 -07:00
|
|
|
# Copyright (c) 2010-2013 OpenStack, LLC.
|
|
|
|
#
|
|
|
|
# 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 swiftclient import utils as u
|
|
|
|
|
|
|
|
|
|
|
|
class TestConfigTrueValue(testtools.TestCase):
|
|
|
|
|
|
|
|
def test_TRUE_VALUES(self):
|
|
|
|
for v in u.TRUE_VALUES:
|
|
|
|
self.assertEqual(v, v.lower())
|
|
|
|
|
|
|
|
def test_config_true_value(self):
|
|
|
|
orig_trues = u.TRUE_VALUES
|
|
|
|
try:
|
|
|
|
u.TRUE_VALUES = 'hello world'.split()
|
|
|
|
for val in 'hello world HELLO WORLD'.split():
|
|
|
|
self.assertTrue(u.config_true_value(val) is True)
|
|
|
|
self.assertTrue(u.config_true_value(True) is True)
|
|
|
|
self.assertTrue(u.config_true_value('foo') is False)
|
|
|
|
self.assertTrue(u.config_true_value(False) is False)
|
|
|
|
finally:
|
|
|
|
u.TRUE_VALUES = orig_trues
|
|
|
|
|
|
|
|
|
|
|
|
class TestPrtBytes(testtools.TestCase):
|
|
|
|
|
|
|
|
def test_zero_bytes(self):
|
|
|
|
bytes_ = 0
|
|
|
|
raw = '0'
|
|
|
|
human = '0'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_one_byte(self):
|
|
|
|
bytes_ = 1
|
|
|
|
raw = '1'
|
|
|
|
human = '1'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_less_than_one_k(self):
|
|
|
|
bytes_ = (2 ** 10) - 1
|
|
|
|
raw = '1023'
|
|
|
|
human = '1023'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_one_k(self):
|
|
|
|
bytes_ = 2 ** 10
|
|
|
|
raw = '1024'
|
|
|
|
human = '1.0K'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_a_decimal_k(self):
|
|
|
|
bytes_ = (3 * 2 ** 10) + 512
|
|
|
|
raw = '3584'
|
|
|
|
human = '3.5K'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_a_bit_less_than_one_meg(self):
|
|
|
|
bytes_ = (2 ** 20) - (2 ** 10)
|
|
|
|
raw = '1047552'
|
|
|
|
human = '1023K'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_just_a_hair_less_than_one_meg(self):
|
|
|
|
bytes_ = (2 ** 20) - (2 ** 10) + 1
|
|
|
|
raw = '1047553'
|
|
|
|
human = '1.0M'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_one_meg(self):
|
|
|
|
bytes_ = 2 ** 20
|
|
|
|
raw = '1048576'
|
|
|
|
human = '1.0M'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(raw, u.prt_bytes(bytes_, False).lstrip())
|
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_ten_meg(self):
|
|
|
|
bytes_ = 10 * 2 ** 20
|
|
|
|
human = '10M'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_bit_less_than_ten_meg(self):
|
|
|
|
bytes_ = (10 * 2 ** 20) - (100 * 2 ** 10)
|
|
|
|
human = '9.9M'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_just_a_hair_less_than_ten_meg(self):
|
|
|
|
bytes_ = (10 * 2 ** 20) - 1
|
|
|
|
human = '10.0M'
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual(human, u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_a_yotta(self):
|
|
|
|
bytes_ = 42 * 2 ** 80
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual('42Y', u.prt_bytes(bytes_, True).lstrip())
|
2013-10-09 12:03:50 -07:00
|
|
|
|
|
|
|
def test_overflow(self):
|
|
|
|
bytes_ = 2 ** 90
|
2014-01-17 11:30:46 +01:00
|
|
|
self.assertEqual('1024Y', u.prt_bytes(bytes_, True).lstrip())
|