Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9c00f428
Commit
9c00f428
authored
Feb 12, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Systematic testing of hex/oct constants.
parent
48035eb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
0 deletions
+81
-0
Lib/test/test_hexoct.py
Lib/test/test_hexoct.py
+81
-0
No files found.
Lib/test/test_hexoct.py
0 → 100644
View file @
9c00f428
"""Test correct treatment of hex/oct constants.
This is complex because of changes due to PEP 237.
Some of these tests will hvae to change in Python 2.4!
"""
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
)
self
.
assertEqual
(
0x7fffffff
,
2147483647
)
# Ditto with a minus sign and parentheses
self
.
assertEqual
(
-
(
0x0
),
0
)
self
.
assertEqual
(
-
(
0x10
),
-
16
)
self
.
assertEqual
(
-
(
0x7fffffff
),
-
2147483647
)
# Ditto with a minus sign and NO parentheses
self
.
assertEqual
(
-
0x0
,
0
)
self
.
assertEqual
(
-
0x10
,
-
16
)
self
.
assertEqual
(
-
0x7fffffff
,
-
2147483647
)
def
test_hex_unsigned
(
self
):
# This test is in a <string> so we can ignore the warnings
exec
"""if 1:
# 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)
\
n
"""
def
test_oct_baseline
(
self
):
# Baseline tests
self
.
assertEqual
(
00
,
0
)
self
.
assertEqual
(
020
,
16
)
self
.
assertEqual
(
017777777777
,
2147483647
)
# Ditto with a minus sign and parentheses
self
.
assertEqual
(
-
(
00
),
0
)
self
.
assertEqual
(
-
(
020
),
-
16
)
self
.
assertEqual
(
-
(
017777777777
),
-
2147483647
)
# Ditto with a minus sign and NO parentheses
self
.
assertEqual
(
-
00
,
0
)
self
.
assertEqual
(
-
020
,
-
16
)
self
.
assertEqual
(
-
017777777777
,
-
2147483647
)
def
test_oct_unsigned
(
self
):
# This test is in a <string> so we can ignore the warnings
exec
"""if 1:
# 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)
\
n
"""
def
test_main
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
TextHexOct
))
test_support
.
run_suite
(
suite
)
if
__name__
==
"__main__"
:
test_main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment