summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hexoct.py
blob: a14a2c2696478940e23df80c90d14a3366ae741b (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
"""Test correct treatment of hex/oct constants.

This is complex because of changes due to PEP 237.

Some of these tests will have to change in Python 2.4!
"""

import sys
platform_long_is_32_bits = sys.maxint == 2147483647

import unittest
from test import test_support

import warnings
warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
                        "<string>")

class TextHexOct(unittest.TestCase):

    def test_hex_baseline(self):
        # Baseline tests
        self.assertEqual(0x0, 0)
        self.assertEqual(0x10, 16)
        if platform_long_is_32_bits:
            self.assertEqual(0x7fffffff, 2147483647)
        else:
            self.assertEqual(0x7fffffffffffffff, 9223372036854775807)
        # Ditto with a minus sign and parentheses
        self.assertEqual(-(0x0), 0)
        self.assertEqual(-(0x10), -16)
        if platform_long_is_32_bits:
            self.assertEqual(-(0x7fffffff), -2147483647)
        else:
            self.assertEqual(-(0x7fffffffffffffff), -9223372036854775807)
        # Ditto with a minus sign and NO parentheses
        self.assertEqual(-0x0, 0)
        self.assertEqual(-0x10, -16)
        if platform_long_is_32_bits:
            self.assertEqual(-0x7fffffff, -2147483647)
        else:
            self.assertEqual(-0x7fffffffffffffff, -9223372036854775807)

    def test_hex_unsigned(self):
        # This test is in a <string> so we can ignore the warnings
        exec """if 1:
        if platform_long_is_32_bits:
            # Positive-looking constants with negavive values
            self.assertEqual(0x80000000, -2147483648L)
            self.assertEqual(0xffffffff, -1)
            # Ditto with a minus sign and parentheses
            self.assertEqual(-(0x80000000), 2147483648L)
            self.assertEqual(-(0xffffffff), 1)
            # Ditto with a minus sign and NO parentheses
            # This failed in Python 2.2 through 2.2.2 and in 2.3a1
            self.assertEqual(-0x80000000, 2147483648L)
            self.assertEqual(-0xffffffff, 1)
        else:
            # Positive-looking constants with negavive values
            self.assertEqual(0x8000000000000000, -9223372036854775808L)
            self.assertEqual(0xffffffffffffffff, -1)
            # Ditto with a minus sign and parentheses
            self.assertEqual(-(0x8000000000000000), 9223372036854775808L)
            self.assertEqual(-(0xffffffffffffffff), 1)
            # Ditto with a minus sign and NO parentheses
            # This failed in Python 2.2 through 2.2.2 and in 2.3a1
            self.assertEqual(-0x8000000000000000, 9223372036854775808L)
            self.assertEqual(-0xffffffffffffffff, 1)
        \n"""

    def test_oct_baseline(self):
        # Baseline tests
        self.assertEqual(00, 0)
        self.assertEqual(020, 16)
        if platform_long_is_32_bits:
            self.assertEqual(017777777777, 2147483647)
        else:
            self.assertEqual(0777777777777777777777, 9223372036854775807)
        # Ditto with a minus sign and parentheses
        self.assertEqual(-(00), 0)
        self.assertEqual(-(020), -16)
        if platform_long_is_32_bits:
            self.assertEqual(-(017777777777), -2147483647)
        else:
            self.assertEqual(-(0777777777777777777777), -9223372036854775807)
        # Ditto with a minus sign and NO parentheses
        self.assertEqual(-00, 0)
        self.assertEqual(-020, -16)
        if platform_long_is_32_bits:
            self.assertEqual(-017777777777, -2147483647)
        else:
            self.assertEqual(-0777777777777777777777, -9223372036854775807)

    def test_oct_unsigned(self):
        # This test is in a <string> so we can ignore the warnings
        exec """if 1:
        if platform_long_is_32_bits:
            # Positive-looking constants with negavive values
            self.assertEqual(020000000000, -2147483648L)
            self.assertEqual(037777777777, -1)
            # Ditto with a minus sign and parentheses
            self.assertEqual(-(020000000000), 2147483648L)
            self.assertEqual(-(037777777777), 1)
            # Ditto with a minus sign and NO parentheses
            # This failed in Python 2.2 through 2.2.2 and in 2.3a1
            self.assertEqual(-020000000000, 2147483648L)
            self.assertEqual(-037777777777, 1)
        else:
            # Positive-looking constants with negavive values
            self.assertEqual(01000000000000000000000, -9223372036854775808L)
            self.assertEqual(01777777777777777777777, -1)
            # Ditto with a minus sign and parentheses
            self.assertEqual(-(01000000000000000000000), 9223372036854775808L)
            self.assertEqual(-(01777777777777777777777), 1)
            # Ditto with a minus sign and NO parentheses
            # This failed in Python 2.2 through 2.2.2 and in 2.3a1
            self.assertEqual(-01000000000000000000000, 9223372036854775808L)
            self.assertEqual(-01777777777777777777777, 1)
        \n"""

def test_main():
    suite = unittest.TestSuite()
    suite.addTest(unittest.makeSuite(TextHexOct))
    test_support.run_suite(suite)

if __name__ == "__main__":
    test_main()