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
8a99b502
Commit
8a99b502
authored
Jun 23, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF patch #736962. Converted test_compile to unittest format.
parent
bcc651a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
140 additions
and
167 deletions
+140
-167
Lib/test/output/test_compile
Lib/test/output/test_compile
+0
-7
Lib/test/test_compile.py
Lib/test/test_compile.py
+140
-160
No files found.
Lib/test/output/test_compile
deleted
100644 → 0
View file @
bcc651a1
test_compile
1 2
1 2
3 4
1 2 3
1 2 3
2 3 4
Lib/test/test_compile.py
View file @
8a99b502
from
test.test_support
import
verbose
,
TestFailed
if
verbose
:
print
"Testing whether compiler catches assignment to __debug__"
try
:
compile
(
'__debug__ = 1'
,
'?'
,
'single'
)
except
SyntaxError
:
pass
import
__builtin__
prev
=
__builtin__
.
__debug__
setattr
(
__builtin__
,
'__debug__'
,
'sure'
)
setattr
(
__builtin__
,
'__debug__'
,
prev
)
if
verbose
:
print
'Running tests on argument handling'
try
:
exec
'def f(a, a): pass'
raise
TestFailed
,
"duplicate arguments"
except
SyntaxError
:
pass
if
verbose
:
print
"compiling string with syntax error"
try
:
compile
(
"1+*3"
,
"filename"
,
"exec"
)
except
SyntaxError
,
detail
:
if
not
detail
.
filename
==
"filename"
:
raise
TestFailed
,
"expected 'filename', got %r"
%
detail
.
filename
try
:
exec
'def f(a = 0, a = 1): pass'
raise
TestFailed
,
"duplicate keyword arguments"
except
SyntaxError
:
pass
try
:
exec
'def f(a): global a; a = 1'
raise
TestFailed
,
"variable is global and local"
except
SyntaxError
:
pass
if
verbose
:
print
"testing complex args"
def
comp_args
((
a
,
b
)):
print
a
,
b
comp_args
((
1
,
2
))
def
comp_args
((
a
,
b
)
=
(
3
,
4
)):
print
a
,
b
comp_args
((
1
,
2
))
comp_args
()
def
comp_args
(
a
,
(
b
,
c
)):
print
a
,
b
,
c
comp_args
(
1
,
(
2
,
3
))
def
comp_args
(
a
=
2
,
(
b
,
c
)
=
(
3
,
4
)):
print
a
,
b
,
c
comp_args
(
1
,
(
2
,
3
))
comp_args
()
try
:
exec
'def f(a=1, (b, c)): pass'
raise
TestFailed
,
"non-default args after default"
except
SyntaxError
:
pass
if
verbose
:
print
"testing bad float literals"
def
expect_error
(
s
):
try
:
eval
(
s
)
raise
TestFailed
(
"%r accepted"
%
s
)
except
SyntaxError
:
pass
expect_error
(
"2e"
)
expect_error
(
"2.0e+"
)
expect_error
(
"1e-"
)
expect_error
(
"3-4e/21"
)
if
verbose
:
print
"testing compile() of indented block w/o trailing newline"
s
=
"""
import
unittest
import
warnings
import
sys
from
test
import
test_support
class
TestSpecifics
(
unittest
.
TestCase
):
def
test_debug_assignment
(
self
):
# catch assignments to __debug__
self
.
assertRaises
(
SyntaxError
,
compile
,
'__debug__ = 1'
,
'?'
,
'single'
)
import
__builtin__
prev
=
__builtin__
.
__debug__
setattr
(
__builtin__
,
'__debug__'
,
'sure'
)
setattr
(
__builtin__
,
'__debug__'
,
prev
)
def
test_argument_handling
(
self
):
# detect duplicate positional and keyword arguments
self
.
assertRaises
(
SyntaxError
,
eval
,
'lambda a,a:0'
)
self
.
assertRaises
(
SyntaxError
,
eval
,
'lambda a,a=1:0'
)
self
.
assertRaises
(
SyntaxError
,
eval
,
'lambda a=1,a=1:0'
)
try
:
exec
'def f(a, a): pass'
self
.
fail
(
"duplicate arguments"
)
except
SyntaxError
:
pass
try
:
exec
'def f(a = 0, a = 1): pass'
self
.
fail
(
"duplicate keyword arguments"
)
except
SyntaxError
:
pass
try
:
exec
'def f(a): global a; a = 1'
self
.
fail
(
"variable is global and local"
)
except
SyntaxError
:
pass
def
test_syntax_error
(
self
):
self
.
assertRaises
(
SyntaxError
,
compile
,
"1+*3"
,
"filename"
,
"exec"
)
def
test_duplicate_global_local
(
self
):
try
:
exec
'def f(a): global a; a = 1'
self
.
fail
(
"variable is global and local"
)
except
SyntaxError
:
pass
def
test_complex_args
(
self
):
def
comp_args
((
a
,
b
)):
return
a
,
b
self
.
assertEqual
(
comp_args
((
1
,
2
)),
(
1
,
2
))
def
comp_args
((
a
,
b
)
=
(
3
,
4
)):
return
a
,
b
self
.
assertEqual
(
comp_args
((
1
,
2
)),
(
1
,
2
))
self
.
assertEqual
(
comp_args
(),
(
3
,
4
))
def
comp_args
(
a
,
(
b
,
c
)):
return
a
,
b
,
c
self
.
assertEqual
(
comp_args
(
1
,
(
2
,
3
)),
(
1
,
2
,
3
))
def
comp_args
(
a
=
2
,
(
b
,
c
)
=
(
3
,
4
)):
return
a
,
b
,
c
self
.
assertEqual
(
comp_args
(
1
,
(
2
,
3
)),
(
1
,
2
,
3
))
self
.
assertEqual
(
comp_args
(),
(
2
,
3
,
4
))
def
test_argument_order
(
self
):
try
:
exec
'def f(a=1, (b, c)): pass'
self
.
fail
(
"non-default args after default"
)
except
SyntaxError
:
pass
def
test_float_literals
(
self
):
# testing bad float literals
self
.
assertRaises
(
SyntaxError
,
eval
,
"2e"
)
self
.
assertRaises
(
SyntaxError
,
eval
,
"2.0e+"
)
self
.
assertRaises
(
SyntaxError
,
eval
,
"1e-"
)
self
.
assertRaises
(
SyntaxError
,
eval
,
"3-4e/21"
)
def
test_indentation
(
self
):
# testing compile() of indented block w/o trailing newline"
s
=
"""
if 1:
if 2:
pass"""
compile
(
s
,
"<string>"
,
"exec"
)
if
verbose
:
print
"testing literals with leading zeroes"
def
expect_same
(
test_source
,
expected
):
got
=
eval
(
test_source
)
if
got
!=
expected
:
raise
TestFailed
(
"eval(%r) gave %r, but expected %r"
%
(
test_source
,
got
,
expected
))
expect_error
(
"077787"
)
expect_error
(
"0xj"
)
expect_error
(
"0x."
)
expect_error
(
"0e"
)
expect_same
(
"0777"
,
511
)
expect_same
(
"0777L"
,
511
)
expect_same
(
"000777"
,
511
)
expect_same
(
"0xff"
,
255
)
expect_same
(
"0xffL"
,
255
)
expect_same
(
"0XfF"
,
255
)
expect_same
(
"0777."
,
777
)
expect_same
(
"0777.0"
,
777
)
expect_same
(
"000000000000000000000000000000000000000000000000000777e0"
,
777
)
expect_same
(
"0777e1"
,
7770
)
expect_same
(
"0e0"
,
0
)
expect_same
(
"0000E-012"
,
0
)
expect_same
(
"09.5"
,
9.5
)
expect_same
(
"0777j"
,
777j
)
expect_same
(
"00j"
,
0j
)
expect_same
(
"00.0"
,
0
)
expect_same
(
"0e3"
,
0
)
expect_same
(
"090000000000000."
,
90000000000000.
)
expect_same
(
"090000000000000.0000000000000000000000"
,
90000000000000.
)
expect_same
(
"090000000000000e0"
,
90000000000000.
)
expect_same
(
"090000000000000e-0"
,
90000000000000.
)
expect_same
(
"090000000000000j"
,
90000000000000j
)
expect_error
(
"090000000000000"
)
# plain octal literal w/ decimal digit
expect_error
(
"080000000000000"
)
# plain octal literal w/ decimal digit
expect_error
(
"000000000000009"
)
# plain octal literal w/ decimal digit
expect_error
(
"000000000000008"
)
# plain octal literal w/ decimal digit
expect_same
(
"000000000000007"
,
7
)
expect_same
(
"000000000000008."
,
8.
)
expect_same
(
"000000000000009."
,
9.
)
# Verify treatment of unary minus on negative numbers SF bug #660455
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
"hex/oct constants"
,
FutureWarning
)
warnings
.
filterwarnings
(
"ignore"
,
"hex.* of negative int"
,
FutureWarning
)
# XXX Of course the following test will have to be changed in Python 2.4
# This test is in a <string> so the filterwarnings() can affect it
import
sys
all_one_bits
=
'0xffffffff'
if
sys
.
maxint
!=
2147483647
:
all_one_bits
=
'0xffffffffffffffff'
exec
"""
expect_same(all_one_bits, -1)
expect_same("-" + all_one_bits, 1)
"""
# Verify sequence packing/unpacking with "or". SF bug #757818
i
,
j
=
(
1
,
-
1
)
or
(
-
1
,
1
)
if
i
!=
1
or
j
!=
-
1
:
raise
TestFailed
,
"Sequence packing/unpacking"
compile
(
s
,
"<string>"
,
"exec"
)
def
test_literals_with_leading_zeroes
(
self
):
for
arg
in
[
"077787"
,
"0xj"
,
"0x."
,
"0e"
,
"090000000000000"
,
"080000000000000"
,
"000000000000009"
,
"000000000000008"
]:
self
.
assertRaises
(
SyntaxError
,
eval
,
arg
)
self
.
assertEqual
(
eval
(
"0777"
),
511
)
self
.
assertEqual
(
eval
(
"0777L"
),
511
)
self
.
assertEqual
(
eval
(
"000777"
),
511
)
self
.
assertEqual
(
eval
(
"0xff"
),
255
)
self
.
assertEqual
(
eval
(
"0xffL"
),
255
)
self
.
assertEqual
(
eval
(
"0XfF"
),
255
)
self
.
assertEqual
(
eval
(
"0777."
),
777
)
self
.
assertEqual
(
eval
(
"0777.0"
),
777
)
self
.
assertEqual
(
eval
(
"000000000000000000000000000000000000000000000000000777e0"
),
777
)
self
.
assertEqual
(
eval
(
"0777e1"
),
7770
)
self
.
assertEqual
(
eval
(
"0e0"
),
0
)
self
.
assertEqual
(
eval
(
"0000E-012"
),
0
)
self
.
assertEqual
(
eval
(
"09.5"
),
9.5
)
self
.
assertEqual
(
eval
(
"0777j"
),
777j
)
self
.
assertEqual
(
eval
(
"00j"
),
0j
)
self
.
assertEqual
(
eval
(
"00.0"
),
0
)
self
.
assertEqual
(
eval
(
"0e3"
),
0
)
self
.
assertEqual
(
eval
(
"090000000000000."
),
90000000000000.
)
self
.
assertEqual
(
eval
(
"090000000000000.0000000000000000000000"
),
90000000000000.
)
self
.
assertEqual
(
eval
(
"090000000000000e0"
),
90000000000000.
)
self
.
assertEqual
(
eval
(
"090000000000000e-0"
),
90000000000000.
)
self
.
assertEqual
(
eval
(
"090000000000000j"
),
90000000000000j
)
self
.
assertEqual
(
eval
(
"000000000000007"
),
7
)
self
.
assertEqual
(
eval
(
"000000000000008."
),
8.
)
self
.
assertEqual
(
eval
(
"000000000000009."
),
9.
)
def
test_unary_minus
(
self
):
# Verify treatment of unary minus on negative numbers SF bug #660455
warnings
.
filterwarnings
(
"ignore"
,
"hex/oct constants"
,
FutureWarning
)
warnings
.
filterwarnings
(
"ignore"
,
"hex.* of negative int"
,
FutureWarning
)
# XXX Of course the following test will have to be changed in Python 2.4
# This test is in a <string> so the filterwarnings() can affect it
all_one_bits
=
'0xffffffff'
if
sys
.
maxint
!=
2147483647
:
all_one_bits
=
'0xffffffffffffffff'
self
.
assertEqual
(
eval
(
all_one_bits
),
-
1
)
self
.
assertEqual
(
eval
(
"-"
+
all_one_bits
),
1
)
def
test_sequence_unpacking_error
(
self
):
# Verify sequence packing/unpacking with "or". SF bug #757818
i
,
j
=
(
1
,
-
1
)
or
(
-
1
,
1
)
self
.
assertEqual
(
i
,
1
)
self
.
assertEqual
(
j
,
-
1
)
def
test_main
():
test_support
.
run_unittest
(
TestSpecifics
)
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