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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
"""
.. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
"""
import itertools
import sys
from decimal import Decimal
import pytest
from tcolorpy import tcolor
from typepy import Integer, StrictLevel, Typecode
class_under_test = Integer
nan = float("nan")
inf = float("inf")
class Test_Integer_is_type:
@pytest.mark.parametrize(
["value", "strict_level", "expected"],
[
[str(sys.maxsize), StrictLevel.MIN, True],
[str(sys.maxsize), StrictLevel.MIN + 1, True],
[str(sys.maxsize), StrictLevel.MAX, False],
["45e76582", StrictLevel.MIN, True],
["45e76582", StrictLevel.MIN + 1, False],
["45e76582", StrictLevel.MAX, False],
["4.5e-4", StrictLevel.MIN, True],
["4.5e-4", StrictLevel.MIN + 1, False],
["4.5e-4", StrictLevel.MAX, False],
[" 1 ", StrictLevel.MIN + 1, True],
[True, StrictLevel.MIN + 1, False],
[False, StrictLevel.MAX, False],
]
+ list(
itertools.product(
[0, sys.maxsize, -sys.maxsize, Decimal("1"), int(Decimal("45e765"))],
[StrictLevel.MIN, StrictLevel.MIN + 1],
[True],
)
)
+ list(
itertools.product(
[
0.5,
0.999,
Decimal("1.1"),
1e-05,
-1e-05,
"0.5",
".999",
"1e-05",
"-1e-05",
True,
False,
],
[StrictLevel.MIN],
[True],
)
)
+ list(
itertools.product(
[None, nan, inf, "", "0xff", "test", "1a1", "11a", "a11", "ใในใ".encode()],
[StrictLevel.MIN, StrictLevel.MAX],
[False],
)
),
)
def test_normal(self, value, strict_level, expected):
type_checker = class_under_test(value, strict_level)
assert type_checker.is_type() == expected
assert type_checker.typecode == Typecode.INTEGER
@pytest.mark.parametrize(
["value", "strip_ansi_escape", "expected"],
[[tcolor("1", "red"), False, False], [tcolor("1", "red"), True, True]],
)
def test_normal_ansi(self, value, strip_ansi_escape, expected):
type_checker = class_under_test(value, StrictLevel.MIN, strip_ansi_escape=strip_ansi_escape)
assert type_checker.is_type() == expected
assert type_checker.typecode == Typecode.INTEGER
|