blob: 6a9e5124c690050a74dc29243c30b060a1c23fa7 [file] [log] [blame]
Guido van Rossum3bead091992-01-27 17:00:37 +00001# Python test set -- part 1, grammar.
2# This just tests whether the parser accepts them all.
3
Guido van Rossumf0253f22002-08-29 14:57:26 +00004# NOTE: When you run this test as a script from the command line, you
5# get warnings about certain hex/oct constants. Since those are
6# issued by the parser, you can't suppress them by adding a
7# filterwarnings() call to this module. Therefore, to shut up the
8# regression test, the filterwarnings() call has been added to
9# regrtest.py.
10
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000011from test.test_support import TestFailed, verify, vereq, check_syntax
Jeremy Hylton7d3dff22001-10-10 01:45:02 +000012import sys
Guido van Rossum3bead091992-01-27 17:00:37 +000013
14print '1. Parser'
15
16print '1.1 Tokens'
17
18print '1.1.1 Backslashes'
19
20# Backslash means line continuation:
21x = 1 \
22+ 1
Fred Drake132dce22000-12-12 23:11:42 +000023if x != 2: raise TestFailed, 'backslash for line continuation'
Guido van Rossum3bead091992-01-27 17:00:37 +000024
25# Backslash does not means continuation in comments :\
26x = 0
Fred Drake132dce22000-12-12 23:11:42 +000027if x != 0: raise TestFailed, 'backslash ending comment'
Guido van Rossum3bead091992-01-27 17:00:37 +000028
29print '1.1.2 Numeric literals'
30
31print '1.1.2.1 Plain integers'
Fred Drake132dce22000-12-12 23:11:42 +000032if 0xff != 255: raise TestFailed, 'hex int'
33if 0377 != 255: raise TestFailed, 'octal int'
Guido van Rossumdd8cb441993-12-29 15:33:08 +000034if 2147483647 != 017777777777: raise TestFailed, 'large positive int'
35try:
Fred Drake004d5e62000-10-23 17:22:08 +000036 from sys import maxint
Guido van Rossumdd8cb441993-12-29 15:33:08 +000037except ImportError:
Fred Drake004d5e62000-10-23 17:22:08 +000038 maxint = 2147483647
Guido van Rossumdd8cb441993-12-29 15:33:08 +000039if maxint == 2147483647:
Guido van Rossum66b12592003-02-12 16:57:47 +000040 # The following test will start to fail in Python 2.4;
41 # change the 020000000000 to -020000000000
Guido van Rossum6c9e1302003-11-29 23:52:13 +000042 if -2147483647-1 != -020000000000: raise TestFailed, 'max negative int'
Fred Drake004d5e62000-10-23 17:22:08 +000043 # XXX -2147483648
Guido van Rossum6c9e1302003-11-29 23:52:13 +000044 if 037777777777 < 0: raise TestFailed, 'large oct'
45 if 0xffffffff < 0: raise TestFailed, 'large hex'
Fred Drake004d5e62000-10-23 17:22:08 +000046 for s in '2147483648', '040000000000', '0x100000000':
47 try:
48 x = eval(s)
49 except OverflowError:
Walter Dörwald70a6b492004-02-12 17:35:32 +000050 print "OverflowError on huge integer literal " + repr(s)
Guido van Rossumdd8cb441993-12-29 15:33:08 +000051elif eval('maxint == 9223372036854775807'):
Guido van Rossum6c9e1302003-11-29 23:52:13 +000052 if eval('-9223372036854775807-1 != -01000000000000000000000'):
Fred Drake004d5e62000-10-23 17:22:08 +000053 raise TestFailed, 'max negative int'
Guido van Rossum6c9e1302003-11-29 23:52:13 +000054 if eval('01777777777777777777777') < 0: raise TestFailed, 'large oct'
55 if eval('0xffffffffffffffff') < 0: raise TestFailed, 'large hex'
Fred Drake004d5e62000-10-23 17:22:08 +000056 for s in '9223372036854775808', '02000000000000000000000', \
57 '0x10000000000000000':
58 try:
59 x = eval(s)
60 except OverflowError:
Walter Dörwald70a6b492004-02-12 17:35:32 +000061 print "OverflowError on huge integer literal " + repr(s)
Guido van Rossumdd8cb441993-12-29 15:33:08 +000062else:
Fred Drake004d5e62000-10-23 17:22:08 +000063 print 'Weird maxint value', maxint
Guido van Rossum3bead091992-01-27 17:00:37 +000064
65print '1.1.2.2 Long integers'
66x = 0L
67x = 0l
68x = 0xffffffffffffffffL
69x = 0xffffffffffffffffl
70x = 077777777777777777L
71x = 077777777777777777l
72x = 123456789012345678901234567890L
73x = 123456789012345678901234567890l
74
75print '1.1.2.3 Floating point'
76x = 3.14
77x = 314.
78x = 0.314
79# XXX x = 000.314
80x = .314
81x = 3e14
82x = 3E14
83x = 3e-14
84x = 3e+14
85x = 3.e14
86x = .3e14
87x = 3.1e4
88
Guido van Rossumb31c7f71993-11-11 10:31:23 +000089print '1.1.3 String literals'
90
Marc-André Lemburg36619082001-01-17 19:11:13 +000091x = ''; y = ""; verify(len(x) == 0 and x == y)
92x = '\''; y = "'"; verify(len(x) == 1 and x == y and ord(x) == 39)
93x = '"'; y = "\""; verify(len(x) == 1 and x == y and ord(x) == 34)
Guido van Rossumb31c7f71993-11-11 10:31:23 +000094x = "doesn't \"shrink\" does it"
95y = 'doesn\'t "shrink" does it'
Marc-André Lemburg36619082001-01-17 19:11:13 +000096verify(len(x) == 24 and x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +000097x = "does \"shrink\" doesn't it"
98y = 'does "shrink" doesn\'t it'
Marc-André Lemburg36619082001-01-17 19:11:13 +000099verify(len(x) == 24 and x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000100x = """
101The "quick"
102brown fox
103jumps over
104the 'lazy' dog.
105"""
106y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n'
Marc-André Lemburg36619082001-01-17 19:11:13 +0000107verify(x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000108y = '''
109The "quick"
110brown fox
111jumps over
112the 'lazy' dog.
Marc-André Lemburg36619082001-01-17 19:11:13 +0000113'''; verify(x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000114y = "\n\
115The \"quick\"\n\
116brown fox\n\
117jumps over\n\
118the 'lazy' dog.\n\
Marc-André Lemburg36619082001-01-17 19:11:13 +0000119"; verify(x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000120y = '\n\
121The \"quick\"\n\
122brown fox\n\
123jumps over\n\
124the \'lazy\' dog.\n\
Marc-André Lemburg36619082001-01-17 19:11:13 +0000125'; verify(x == y)
Guido van Rossumb31c7f71993-11-11 10:31:23 +0000126
127
Guido van Rossum3bead091992-01-27 17:00:37 +0000128print '1.2 Grammar'
129
130print 'single_input' # NEWLINE | simple_stmt | compound_stmt NEWLINE
131# XXX can't test in a script -- this rule is only used when interactive
132
133print 'file_input' # (NEWLINE | stmt)* ENDMARKER
134# Being tested as this very moment this very module
135
136print 'expr_input' # testlist NEWLINE
137# XXX Hard to test -- used only in calls to input()
138
139print 'eval_input' # testlist ENDMARKER
140x = eval('1, 0 or 1')
141
142print 'funcdef'
143### 'def' NAME parameters ':' suite
144### parameters: '(' [varargslist] ')'
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000145### varargslist: (fpdef ['=' test] ',')* ('*' NAME [',' ('**'|'*' '*') NAME]
146### | ('**'|'*' '*') NAME)
Fred Drake004d5e62000-10-23 17:22:08 +0000147### | fpdef ['=' test] (',' fpdef ['=' test])* [',']
Guido van Rossum3bead091992-01-27 17:00:37 +0000148### fpdef: NAME | '(' fplist ')'
149### fplist: fpdef (',' fpdef)* [',']
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000150### arglist: (argument ',')* (argument | *' test [',' '**' test] | '**' test)
Fred Drake004d5e62000-10-23 17:22:08 +0000151### argument: [test '='] test # Really [keyword '='] test
Guido van Rossum3bead091992-01-27 17:00:37 +0000152def f1(): pass
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000153f1()
154f1(*())
155f1(*(), **{})
Guido van Rossum3bead091992-01-27 17:00:37 +0000156def f2(one_argument): pass
157def f3(two, arguments): pass
158def f4(two, (compound, (argument, list))): pass
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000159def f5((compound, first), two): pass
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000160vereq(f2.func_code.co_varnames, ('one_argument',))
161vereq(f3.func_code.co_varnames, ('two', 'arguments'))
Jeremy Hylton7d3dff22001-10-10 01:45:02 +0000162if sys.platform.startswith('java'):
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000163 vereq(f4.func_code.co_varnames,
Finn Bock4ab7adb2001-12-09 09:12:34 +0000164 ('two', '(compound, (argument, list))', 'compound', 'argument',
165 'list',))
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000166 vereq(f5.func_code.co_varnames,
Jeremy Hylton7d3dff22001-10-10 01:45:02 +0000167 ('(compound, first)', 'two', 'compound', 'first'))
168else:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000169 vereq(f4.func_code.co_varnames,
170 ('two', '.1', 'compound', 'argument', 'list'))
171 vereq(f5.func_code.co_varnames,
172 ('.0', 'two', 'compound', 'first'))
Guido van Rossum3bead091992-01-27 17:00:37 +0000173def a1(one_arg,): pass
174def a2(two, args,): pass
175def v0(*rest): pass
176def v1(a, *rest): pass
177def v2(a, b, *rest): pass
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000178def v3(a, (b, c), *rest): return a, b, c, rest
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000179# ceval unpacks the formal arguments into the first argcount names;
180# thus, the names nested inside tuples must appear after these names.
Jeremy Hylton7d3dff22001-10-10 01:45:02 +0000181if sys.platform.startswith('java'):
182 verify(v3.func_code.co_varnames == ('a', '(b, c)', 'rest', 'b', 'c'))
183else:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000184 vereq(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000185verify(v3(1, (2, 3), 4) == (1, 2, 3, (4,)))
Guido van Rossumb6775db1994-08-01 11:34:53 +0000186def d01(a=1): pass
187d01()
188d01(1)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000189d01(*(1,))
190d01(**{'a':2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000191def d11(a, b=1): pass
192d11(1)
193d11(1, 2)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000194d11(1, **{'b':2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000195def d21(a, b, c=1): pass
196d21(1, 2)
197d21(1, 2, 3)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000198d21(*(1, 2, 3))
199d21(1, *(2, 3))
200d21(1, 2, *(3,))
201d21(1, 2, **{'c':3})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000202def d02(a=1, b=2): pass
203d02()
204d02(1)
205d02(1, 2)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000206d02(*(1, 2))
207d02(1, *(2,))
208d02(1, **{'b':2})
209d02(**{'a': 1, 'b': 2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000210def d12(a, b=1, c=2): pass
211d12(1)
212d12(1, 2)
213d12(1, 2, 3)
214def d22(a, b, c=1, d=2): pass
215d22(1, 2)
216d22(1, 2, 3)
217d22(1, 2, 3, 4)
218def d01v(a=1, *rest): pass
219d01v()
220d01v(1)
221d01v(1, 2)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000222d01v(*(1, 2, 3, 4))
223d01v(*(1,))
224d01v(**{'a':2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000225def d11v(a, b=1, *rest): pass
226d11v(1)
227d11v(1, 2)
228d11v(1, 2, 3)
229def d21v(a, b, c=1, *rest): pass
230d21v(1, 2)
231d21v(1, 2, 3)
232d21v(1, 2, 3, 4)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000233d21v(*(1, 2, 3, 4))
234d21v(1, 2, **{'c': 3})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000235def d02v(a=1, b=2, *rest): pass
236d02v()
237d02v(1)
238d02v(1, 2)
239d02v(1, 2, 3)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000240d02v(1, *(2, 3, 4))
241d02v(**{'a': 1, 'b': 2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000242def d12v(a, b=1, c=2, *rest): pass
243d12v(1)
244d12v(1, 2)
245d12v(1, 2, 3)
246d12v(1, 2, 3, 4)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000247d12v(*(1, 2, 3, 4))
248d12v(1, 2, *(3, 4, 5))
249d12v(1, *(2,), **{'c': 3})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000250def d22v(a, b, c=1, d=2, *rest): pass
251d22v(1, 2)
252d22v(1, 2, 3)
253d22v(1, 2, 3, 4)
254d22v(1, 2, 3, 4, 5)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000255d22v(*(1, 2, 3, 4))
256d22v(1, 2, *(3, 4, 5))
257d22v(1, *(2, 3), **{'d': 4})
Neal Norwitz33b730e2006-03-27 08:58:23 +0000258def d31v((x)): pass
259d31v(1)
260def d32v((x,)): pass
261d32v((1,))
Guido van Rossum3bead091992-01-27 17:00:37 +0000262
Sean Reifscheider4af861c2008-03-20 17:39:31 +0000263# Check ast errors in *args and *kwargs
264check_syntax("f(*g(1=2))")
265check_syntax("f(**g(1=2))")
266
Jeremy Hylton619eea62001-01-25 20:12:27 +0000267### lambdef: 'lambda' [varargslist] ':' test
268print 'lambdef'
269l1 = lambda : 0
270verify(l1() == 0)
271l2 = lambda : a[d] # XXX just testing the expression
272l3 = lambda : [2 < x for x in [-1, 3, 0L]]
273verify(l3() == [0, 1, 0])
274l4 = lambda x = lambda y = lambda z=1 : z : y() : x()
275verify(l4() == 1)
276l5 = lambda x, y, z=2: x + y + z
277verify(l5(1, 2) == 5)
278verify(l5(1, 2, 3) == 6)
279check_syntax("lambda x: x = 2")
280
Guido van Rossum3bead091992-01-27 17:00:37 +0000281### stmt: simple_stmt | compound_stmt
282# Tested below
283
284### simple_stmt: small_stmt (';' small_stmt)* [';']
285print 'simple_stmt'
286x = 1; pass; del x
Neal Norwitzf8d403d2005-12-11 20:12:40 +0000287def foo():
288 # verify statments that end with semi-colons
289 x = 1; pass; del x;
290foo()
Guido van Rossum3bead091992-01-27 17:00:37 +0000291
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000292### small_stmt: expr_stmt | print_stmt | pass_stmt | del_stmt | flow_stmt | import_stmt | global_stmt | access_stmt | exec_stmt
Guido van Rossum3bead091992-01-27 17:00:37 +0000293# Tested below
294
295print 'expr_stmt' # (exprlist '=')* exprlist
2961
2971, 2, 3
298x = 1
299x = 1, 2, 3
300x = y = z = 1, 2, 3
301x, y, z = 1, 2, 3
302abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4)
303# NB these variables are deleted below
304
Jeremy Hylton47793992001-02-19 15:35:26 +0000305check_syntax("x + 1 = 1")
306check_syntax("a + 1 = b + 2")
307
Guido van Rossum3bead091992-01-27 17:00:37 +0000308print 'print_stmt' # 'print' (test ',')* [test]
309print 1, 2, 3
310print 1, 2, 3,
311print
312print 0 or 1, 0 or 1,
313print 0 or 1
314
Barry Warsawefc92ee2000-08-21 15:46:50 +0000315print 'extended print_stmt' # 'print' '>>' test ','
316import sys
317print >> sys.stdout, 1, 2, 3
318print >> sys.stdout, 1, 2, 3,
319print >> sys.stdout
320print >> sys.stdout, 0 or 1, 0 or 1,
321print >> sys.stdout, 0 or 1
322
Barry Warsaw7e3e1c12000-10-11 21:26:03 +0000323# test printing to an instance
Barry Warsaw9182b452000-08-29 04:57:10 +0000324class Gulp:
Fred Drake004d5e62000-10-23 17:22:08 +0000325 def write(self, msg): pass
Barry Warsaw9182b452000-08-29 04:57:10 +0000326
Barry Warsaw7e3e1c12000-10-11 21:26:03 +0000327gulp = Gulp()
328print >> gulp, 1, 2, 3
329print >> gulp, 1, 2, 3,
330print >> gulp
331print >> gulp, 0 or 1, 0 or 1,
332print >> gulp, 0 or 1
333
334# test print >> None
Barry Warsaw9182b452000-08-29 04:57:10 +0000335def driver():
Fred Drake004d5e62000-10-23 17:22:08 +0000336 oldstdout = sys.stdout
337 sys.stdout = Gulp()
338 try:
339 tellme(Gulp())
340 tellme()
341 finally:
342 sys.stdout = oldstdout
Barry Warsaw9182b452000-08-29 04:57:10 +0000343
344# we should see this once
345def tellme(file=sys.stdout):
Fred Drake004d5e62000-10-23 17:22:08 +0000346 print >> file, 'hello world'
Barry Warsaw9182b452000-08-29 04:57:10 +0000347
348driver()
349
350# we should not see this at all
351def tellme(file=None):
Fred Drake004d5e62000-10-23 17:22:08 +0000352 print >> file, 'goodbye universe'
Barry Warsaw9182b452000-08-29 04:57:10 +0000353
354driver()
355
Barry Warsawefc92ee2000-08-21 15:46:50 +0000356# syntax errors
Barry Warsawefc92ee2000-08-21 15:46:50 +0000357check_syntax('print ,')
358check_syntax('print >> x,')
359
Guido van Rossum3bead091992-01-27 17:00:37 +0000360print 'del_stmt' # 'del' exprlist
361del abc
362del x, y, (z, xyz)
363
364print 'pass_stmt' # 'pass'
365pass
366
367print 'flow_stmt' # break_stmt | continue_stmt | return_stmt | raise_stmt
368# Tested below
369
370print 'break_stmt' # 'break'
371while 1: break
372
373print 'continue_stmt' # 'continue'
374i = 1
375while i: i = 0; continue
376
Jeremy Hylton3faa52e2001-02-01 22:48:12 +0000377msg = ""
378while not msg:
379 msg = "continue + try/except ok"
380 try:
381 continue
382 msg = "continue failed to continue inside try"
383 except:
384 msg = "continue inside try called except block"
385print msg
386
387msg = ""
388while not msg:
389 msg = "finally block not called"
390 try:
391 continue
392 finally:
393 msg = "continue + try/finally ok"
394print msg
Tim Peters10fb3862001-02-09 20:17:14 +0000395
Thomas Wouters80d373c2001-09-26 12:43:39 +0000396
397# This test warrants an explanation. It is a test specifically for SF bugs
398# #463359 and #462937. The bug is that a 'break' statement executed or
399# exception raised inside a try/except inside a loop, *after* a continue
400# statement has been executed in that loop, will cause the wrong number of
401# arguments to be popped off the stack and the instruction pointer reset to
402# a very small number (usually 0.) Because of this, the following test
403# *must* written as a function, and the tracking vars *must* be function
404# arguments with default values. Otherwise, the test will loop and loop.
405
406print "testing continue and break in try/except in loop"
407def test_break_continue_loop(extra_burning_oil = 1, count=0):
408 big_hippo = 2
409 while big_hippo:
410 count += 1
411 try:
412 if extra_burning_oil and big_hippo == 1:
413 extra_burning_oil -= 1
414 break
415 big_hippo -= 1
416 continue
417 except:
418 raise
419 if count > 2 or big_hippo <> 1:
420 print "continue then break in try/except in loop broken!"
421test_break_continue_loop()
422
Guido van Rossum3bead091992-01-27 17:00:37 +0000423print 'return_stmt' # 'return' [testlist]
424def g1(): return
425def g2(): return 1
426g1()
427x = g2()
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000428check_syntax("class foo:return 1")
429
430print 'yield_stmt'
431check_syntax("class foo:yield 1")
Guido van Rossum3bead091992-01-27 17:00:37 +0000432
433print 'raise_stmt' # 'raise' test [',' test]
434try: raise RuntimeError, 'just testing'
435except RuntimeError: pass
436try: raise KeyboardInterrupt
437except KeyboardInterrupt: pass
438
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000439print 'import_name' # 'import' dotted_as_names
Guido van Rossum3bead091992-01-27 17:00:37 +0000440import sys
Guido van Rossum51b1c1c1995-03-04 22:30:54 +0000441import time, sys
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000442print 'import_from' # 'from' dotted_name 'import' ('*' | '(' import_as_names ')' | import_as_names)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000443from time import time
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000444from time import (time)
Guido van Rossum3bead091992-01-27 17:00:37 +0000445from sys import *
Guido van Rossum51b1c1c1995-03-04 22:30:54 +0000446from sys import path, argv
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000447from sys import (path, argv)
448from sys import (path, argv,)
Guido van Rossum3bead091992-01-27 17:00:37 +0000449
450print 'global_stmt' # 'global' NAME (',' NAME)*
451def f():
Fred Drake004d5e62000-10-23 17:22:08 +0000452 global a
453 global a, b
454 global one, two, three, four, five, six, seven, eight, nine, ten
Guido van Rossum3bead091992-01-27 17:00:37 +0000455
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000456print 'exec_stmt' # 'exec' expr ['in' expr [',' expr]]
457def f():
Fred Drake004d5e62000-10-23 17:22:08 +0000458 z = None
459 del z
460 exec 'z=1+1\n'
Fred Drake132dce22000-12-12 23:11:42 +0000461 if z != 2: raise TestFailed, 'exec \'z=1+1\'\\n'
Fred Drake004d5e62000-10-23 17:22:08 +0000462 del z
463 exec 'z=1+1'
Fred Drake132dce22000-12-12 23:11:42 +0000464 if z != 2: raise TestFailed, 'exec \'z=1+1\''
Fred Drake004d5e62000-10-23 17:22:08 +0000465 z = None
466 del z
Guido van Rossumdbb718f2001-09-21 19:22:34 +0000467 import types
468 if hasattr(types, "UnicodeType"):
469 exec r"""if 1:
Fred Drake004d5e62000-10-23 17:22:08 +0000470 exec u'z=1+1\n'
Fred Drake132dce22000-12-12 23:11:42 +0000471 if z != 2: raise TestFailed, 'exec u\'z=1+1\'\\n'
Fred Drake004d5e62000-10-23 17:22:08 +0000472 del z
473 exec u'z=1+1'
Fred Drake132dce22000-12-12 23:11:42 +0000474 if z != 2: raise TestFailed, 'exec u\'z=1+1\''
Guido van Rossumdbb718f2001-09-21 19:22:34 +0000475"""
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000476f()
477g = {}
478exec 'z = 1' in g
Guido van Rossum1f976121995-01-10 10:34:21 +0000479if g.has_key('__builtins__'): del g['__builtins__']
Fred Drake132dce22000-12-12 23:11:42 +0000480if g != {'z': 1}: raise TestFailed, 'exec \'z = 1\' in g'
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000481g = {}
482l = {}
Jeremy Hylton2922ea82001-02-28 23:49:19 +0000483
484import warnings
485warnings.filterwarnings("ignore", "global statement", module="<string>")
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000486exec 'global a; a = 1; b = 2' in g, l
Guido van Rossum1f976121995-01-10 10:34:21 +0000487if g.has_key('__builtins__'): del g['__builtins__']
488if l.has_key('__builtins__'): del l['__builtins__']
Jeremy Hyltone1bb5f92001-01-19 03:26:33 +0000489if (g, l) != ({'a':1}, {'b':2}): raise TestFailed, 'exec ... in g (%s), l (%s)' %(g,l)
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000490
491
Jeremy Hyltonf828e2d2001-02-19 15:54:52 +0000492print "assert_stmt" # assert_stmt: 'assert' test [',' test]
493assert 1
494assert 1, 1
495assert lambda x:x
496assert 1, lambda x:x+1
497
Guido van Rossum3bead091992-01-27 17:00:37 +0000498### compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
499# Tested below
500
501print 'if_stmt' # 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
502if 1: pass
503if 1: pass
504else: pass
505if 0: pass
506elif 0: pass
507if 0: pass
508elif 0: pass
509elif 0: pass
510elif 0: pass
511else: pass
512
513print 'while_stmt' # 'while' test ':' suite ['else' ':' suite]
514while 0: pass
515while 0: pass
516else: pass
517
Amaury Forgeot d'Arcf1a71782008-01-24 23:42:08 +0000518# Issue1920: "while 0" is optimized away,
519# ensure that the "else" clause is still present.
520x = 0
521while 0:
522 x = 1
523else:
524 x = 2
525assert x == 2
526
Guido van Rossum3bead091992-01-27 17:00:37 +0000527print 'for_stmt' # 'for' exprlist 'in' exprlist ':' suite ['else' ':' suite]
Guido van Rossum3bead091992-01-27 17:00:37 +0000528for i in 1, 2, 3: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000529for i, j, k in (): pass
530else: pass
Guido van Rossumb6775db1994-08-01 11:34:53 +0000531class Squares:
Fred Drake004d5e62000-10-23 17:22:08 +0000532 def __init__(self, max):
533 self.max = max
534 self.sofar = []
535 def __len__(self): return len(self.sofar)
536 def __getitem__(self, i):
537 if not 0 <= i < self.max: raise IndexError
538 n = len(self.sofar)
539 while n <= i:
540 self.sofar.append(n*n)
541 n = n+1
542 return self.sofar[i]
Guido van Rossumb6775db1994-08-01 11:34:53 +0000543n = 0
544for x in Squares(10): n = n+x
545if n != 285: raise TestFailed, 'for over growing sequence'
Guido van Rossum3bead091992-01-27 17:00:37 +0000546
Neal Norwitzedef2be2006-07-12 05:26:17 +0000547result = []
548for x, in [(1,), (2,), (3,)]:
549 result.append(x)
550vereq(result, [1, 2, 3])
551
Guido van Rossumb6775db1994-08-01 11:34:53 +0000552print 'try_stmt'
553### try_stmt: 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
554### | 'try' ':' suite 'finally' ':' suite
Guido van Rossum3bead091992-01-27 17:00:37 +0000555### except_clause: 'except' [expr [',' expr]]
Guido van Rossum85f18201992-11-27 22:53:50 +0000556try:
Fred Drake004d5e62000-10-23 17:22:08 +0000557 1/0
Guido van Rossum85f18201992-11-27 22:53:50 +0000558except ZeroDivisionError:
Fred Drake004d5e62000-10-23 17:22:08 +0000559 pass
Guido van Rossumb6775db1994-08-01 11:34:53 +0000560else:
Fred Drake004d5e62000-10-23 17:22:08 +0000561 pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000562try: 1/0
563except EOFError: pass
564except TypeError, msg: pass
565except RuntimeError, msg: pass
566except: pass
Guido van Rossumb6775db1994-08-01 11:34:53 +0000567else: pass
Guido van Rossum85f18201992-11-27 22:53:50 +0000568try: 1/0
569except (EOFError, TypeError, ZeroDivisionError): pass
570try: 1/0
571except (EOFError, TypeError, ZeroDivisionError), msg: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000572try: pass
573finally: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000574
575print 'suite' # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDENT
576if 1: pass
577if 1:
Fred Drake004d5e62000-10-23 17:22:08 +0000578 pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000579if 1:
Fred Drake004d5e62000-10-23 17:22:08 +0000580 #
581 #
582 #
583 pass
584 pass
585 #
586 pass
587 #
Guido van Rossum3bead091992-01-27 17:00:37 +0000588
589print 'test'
590### and_test ('or' and_test)*
591### and_test: not_test ('and' not_test)*
592### not_test: 'not' not_test | comparison
593if not 1: pass
594if 1 and 1: pass
595if 1 or 1: pass
596if not not not 1: pass
597if not 1 and 1 and 1: pass
598if 1 and 1 or 1 and 1 and 1 or not 1 and 1: pass
599
600print 'comparison'
601### comparison: expr (comp_op expr)*
602### comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
603if 1: pass
604x = (1 == 1)
605if 1 == 1: pass
606if 1 != 1: pass
607if 1 <> 1: pass
608if 1 < 1: pass
609if 1 > 1: pass
610if 1 <= 1: pass
611if 1 >= 1: pass
612if 1 is 1: pass
613if 1 is not 1: pass
614if 1 in (): pass
615if 1 not in (): pass
Guido van Rossum85f18201992-11-27 22:53:50 +0000616if 1 < 1 > 1 == 1 >= 1 <= 1 <> 1 != 1 in 1 not in 1 is 1 is not 1: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000617
618print 'binary mask ops'
619x = 1 & 1
620x = 1 ^ 1
621x = 1 | 1
622
623print 'shift ops'
624x = 1 << 1
625x = 1 >> 1
626x = 1 << 1 >> 1
627
628print 'additive ops'
629x = 1
630x = 1 + 1
631x = 1 - 1 - 1
632x = 1 - 1 + 1 - 1 + 1
633
634print 'multiplicative ops'
635x = 1 * 1
636x = 1 / 1
637x = 1 % 1
638x = 1 / 1 * 1 % 1
639
640print 'unary ops'
641x = +1
642x = -1
643x = ~1
644x = ~1 ^ 1 & 1 | 1 & 1 ^ -1
645x = -1*1/1 + 1*1 - ---1*1
646
647print 'selectors'
648### trailer: '(' [testlist] ')' | '[' subscript ']' | '.' NAME
649### subscript: expr | [expr] ':' [expr]
Guido van Rossum85f18201992-11-27 22:53:50 +0000650f1()
651f2(1)
652f2(1,)
653f3(1, 2)
654f3(1, 2,)
655f4(1, (2, (3, 4)))
656v0()
657v0(1)
658v0(1,)
659v0(1,2)
660v0(1,2,3,4,5,6,7,8,9,0)
661v1(1)
662v1(1,)
663v1(1,2)
664v1(1,2,3)
665v1(1,2,3,4,5,6,7,8,9,0)
666v2(1,2)
667v2(1,2,3)
668v2(1,2,3,4)
669v2(1,2,3,4,5,6,7,8,9,0)
670v3(1,(2,3))
671v3(1,(2,3),4)
672v3(1,(2,3),4,5,6,7,8,9,0)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000673print
Guido van Rossum3bead091992-01-27 17:00:37 +0000674import sys, time
675c = sys.path[0]
676x = time.time()
677x = sys.modules['time'].time()
678a = '01234'
679c = a[0]
680c = a[-1]
681s = a[0:5]
682s = a[:5]
683s = a[0:]
684s = a[:]
685s = a[-5:]
686s = a[:-1]
687s = a[-4:-3]
Neal Norwitz03bdedd2006-02-28 17:53:58 +0000688# A rough test of SF bug 1333982. http://python.org/sf/1333982
Jeremy Hylton7b03bad2006-02-28 17:46:23 +0000689# The testing here is fairly incomplete.
Neal Norwitz03bdedd2006-02-28 17:53:58 +0000690# Test cases should include: commas with 1 and 2 colons
Jeremy Hylton7b03bad2006-02-28 17:46:23 +0000691d = {}
692d[1] = 1
693d[1,] = 2
694d[1,2] = 3
695d[1,2,3] = 4
696L = list(d)
697L.sort()
698print L
699
Guido van Rossum3bead091992-01-27 17:00:37 +0000700
701print 'atoms'
702### atom: '(' [testlist] ')' | '[' [testlist] ']' | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING
703### dictmaker: test ':' test (',' test ':' test)* [',']
704
705x = (1)
706x = (1 or 2 or 3)
707x = (1 or 2 or 3, 2, 3)
708
709x = []
710x = [1]
711x = [1 or 2 or 3]
712x = [1 or 2 or 3, 2, 3]
713x = []
714
715x = {}
716x = {'one': 1}
717x = {'one': 1,}
718x = {'one' or 'two': 1 or 2}
719x = {'one': 1, 'two': 2}
720x = {'one': 1, 'two': 2,}
721x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6}
722
723x = `x`
724x = `1 or 2 or 3`
Neal Norwitza3ce6aa2006-11-04 19:32:54 +0000725x = `1,2`
Guido van Rossum3bead091992-01-27 17:00:37 +0000726x = x
727x = 'x'
728x = 123
729
730### exprlist: expr (',' expr)* [',']
731### testlist: test (',' test)* [',']
732# These have been exercised enough above
733
Brett Cannon4ebc7e32005-04-09 01:27:37 +0000734print 'classdef' # 'class' NAME ['(' [testlist] ')'] ':' suite
Guido van Rossum3bead091992-01-27 17:00:37 +0000735class B: pass
Brett Cannon4ebc7e32005-04-09 01:27:37 +0000736class B2(): pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000737class C1(B): pass
738class C2(B): pass
739class D(C1, C2, B): pass
740class C:
Fred Drake004d5e62000-10-23 17:22:08 +0000741 def meth1(self): pass
742 def meth2(self, arg): pass
743 def meth3(self, a1, a2): pass
Skip Montanaro803d6e52000-08-12 18:09:51 +0000744
745# list comprehension tests
746nums = [1, 2, 3, 4, 5]
747strs = ["Apple", "Banana", "Coconut"]
748spcs = [" Apple", " Banana ", "Coco nut "]
749
750print [s.strip() for s in spcs]
751print [3 * x for x in nums]
752print [x for x in nums if x > 2]
753print [(i, s) for i in nums for s in strs]
754print [(i, s) for i in nums for s in [f for f in strs if "n" in f]]
Tim Petersf545baa2003-06-15 23:26:30 +0000755print [(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)]
Jeremy Hylton578ceee2001-01-23 01:51:40 +0000756
757def test_in_func(l):
758 return [None < x < 3 for x in l if x > 2]
759
760print test_in_func(nums)
761
Jeremy Hyltone241e292001-03-19 20:42:11 +0000762def test_nested_front():
763 print [[y for y in [x, x + 1]] for x in [1,3,5]]
764
765test_nested_front()
766
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000767check_syntax("[i, s for i in nums for s in strs]")
768check_syntax("[x if y]")
Skip Montanaro46dfa5f2000-08-22 02:43:07 +0000769
Skip Montanaro803d6e52000-08-12 18:09:51 +0000770suppliers = [
771 (1, "Boeing"),
772 (2, "Ford"),
773 (3, "Macdonalds")
774]
775
776parts = [
777 (10, "Airliner"),
778 (20, "Engine"),
779 (30, "Cheeseburger")
780]
781
782suppart = [
783 (1, 10), (1, 20), (2, 20), (3, 30)
784]
785
786print [
787 (sname, pname)
788 for (sno, sname) in suppliers
789 for (pno, pname) in parts
790 for (sp_sno, sp_pno) in suppart
791 if sno == sp_sno and pno == sp_pno
792]
Raymond Hettinger354433a2004-05-19 08:20:33 +0000793
794# generator expression tests
795g = ([x for x in range(10)] for x in range(1))
796verify(g.next() == [x for x in range(10)])
797try:
798 g.next()
799 raise TestFailed, 'should produce StopIteration exception'
800except StopIteration:
801 pass
802
803a = 1
804try:
805 g = (a for d in a)
806 g.next()
807 raise TestFailed, 'should produce TypeError'
808except TypeError:
809 pass
810
811verify(list((x, y) for x in 'abcd' for y in 'abcd') == [(x, y) for x in 'abcd' for y in 'abcd'])
812verify(list((x, y) for x in 'ab' for y in 'xy') == [(x, y) for x in 'ab' for y in 'xy'])
813
814a = [x for x in range(10)]
815b = (x for x in (y for y in a))
816verify(sum(b) == sum([x for x in range(10)]))
817
818verify(sum(x**2 for x in range(10)) == sum([x**2 for x in range(10)]))
819verify(sum(x*x for x in range(10) if x%2) == sum([x*x for x in range(10) if x%2]))
820verify(sum(x for x in (y for y in range(10))) == sum([x for x in range(10)]))
821verify(sum(x for x in (y for y in (z for z in range(10)))) == sum([x for x in range(10)]))
822verify(sum(x for x in [y for y in (z for z in range(10))]) == sum([x for x in range(10)]))
823verify(sum(x for x in (y for y in (z for z in range(10) if True)) if True) == sum([x for x in range(10)]))
824verify(sum(x for x in (y for y in (z for z in range(10) if True) if False) if True) == 0)
825check_syntax("foo(x for x in range(10), 100)")
826check_syntax("foo(100, x for x in range(10))")
827
828# test for outmost iterable precomputation
829x = 10; g = (i for i in range(x)); x = 5
830verify(len(list(g)) == 10)
831
832# This should hold, since we're only precomputing outmost iterable.
833x = 10; t = False; g = ((i,j) for i in range(x) if t for j in range(x))
834x = 5; t = True;
835verify([(i,j) for i in range(10) for j in range(5)] == list(g))
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000836
Thomas Woutersced6cdd2006-04-12 00:07:59 +0000837# Grammar allows multiple adjacent 'if's in listcomps and genexps,
838# even though it's silly. Make sure it works (ifelse broke this.)
839verify([ x for x in range(10) if x % 2 if x % 3 ], [1, 5, 7])
840verify((x for x in range(10) if x % 2 if x % 3), [1, 5, 7])
841
Neal Norwitz3b3aae02006-09-05 03:56:01 +0000842# Verify unpacking single element tuples in listcomp/genexp.
843vereq([x for x, in [(4,), (5,), (6,)]], [4, 5, 6])
844vereq(list(x for x, in [(7,), (8,), (9,)]), [7, 8, 9])
845
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000846# Test ifelse expressions in various cases
847def _checkeval(msg, ret):
848 "helper to check that evaluation of expressions is done correctly"
849 print x
850 return ret
851
852verify([ x() for x in lambda: True, lambda: False if x() ] == [True])
853verify([ x() for x in (lambda: True, lambda: False) if x() ] == [True])
854verify([ x(False) for x in (lambda x: False if x else True, lambda x: True if x else False) if x(False) ] == [True])
855verify((5 if 1 else _checkeval("check 1", 0)) == 5)
856verify((_checkeval("check 2", 0) if 0 else 5) == 5)
857verify((5 and 6 if 0 else 1) == 1)
858verify(((5 and 6) if 0 else 1) == 1)
859verify((5 and (6 if 1 else 1)) == 6)
860verify((0 or _checkeval("check 3", 2) if 0 else 3) == 3)
861verify((1 or _checkeval("check 4", 2) if 1 else _checkeval("check 5", 3)) == 1)
862verify((0 or 5 if 1 else _checkeval("check 6", 3)) == 5)
863verify((not 5 if 1 else 1) == False)
864verify((not 5 if 0 else 1) == 1)
865verify((6 + 1 if 1 else 2) == 7)
866verify((6 - 1 if 1 else 2) == 5)
867verify((6 * 2 if 1 else 4) == 12)
868verify((6 / 2 if 1 else 3) == 3)
869verify((6 < 4 if 0 else 2) == 2)