1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from unittest import TestCase
from tryton.common import humanize
class Humanize(TestCase):
"Test humanize"
def test_humanize(self):
"Test humanize"
for value, text in [
(0, '0'),
(1, '1'),
(5, '5'),
(10, '10'),
(50, '50'),
(100, '100'),
(1000, '1000'),
(1001, '1k'),
(1500, '1.5k'),
(1000000, '1000k'),
(1000001, '1M'),
(1010000, '1.01M'),
(10**33, '1000Q'),
(0.1, '0.1'),
(0.5, '0.5'),
(0.01, '0.01'),
(0.05, '0.05'),
(0.001, '1m'),
(0.0001, '0.1m'),
(0.000001, '1µ'),
(0.0000015, '1.5µ'),
(0.00000105, '1.05µ'),
(0.000001001, '1µ'),
(10**-33, '0.001q'),
]:
with self.subTest(value=value):
self.assertEqual(humanize(value), text)
if value:
value *= -1
text = '-' + text
with self.subTest(value=value):
self.assertEqual(humanize(value), text)
|