File: test371.py

package info (click to toggle)
jython 2.7.3%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 62,820 kB
  • sloc: python: 641,384; java: 306,981; xml: 2,066; sh: 514; ansic: 126; makefile: 77
file content (338 lines) | stat: -rw-r--r-- 6,631 bytes parent folder | download | duplicates (9)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
"""
[ 577395 ] Outer finally not executed at return.
break/continue through finally.
"""
# Local name: bugtests/test371.py


import support

# Some glue to do all tests defined in this module,
# and fail only at end in finalTestReport()
totalTestFailures = 0
totalTests = 0

def testFail(mes):
    global totalTestFailures
    global totalTests
    print 'Fail:', mes
    totalTestFailures += 1
    totalTests += 1

def testPass(mes):
    global totalTests
    #print 'Ok:', mes
    totalTests += 1

def testEq(val, expected, mes):
    if val != expected:
	testFail('%s: expected %s, got %s' % (mes, repr(expected), repr(val)))
    else:
	testPass('%s: %s' % (mes, repr(val)))

def finalTestReport():
    global totalTestFailures
    global totalTests
    if totalTestFailures > 0:
	raise support.TestError('%d of %d test(s) failed in this module'
				% (totalTestFailures, totalTests))
    else:
        print 'All %d test(s) passed in this module.' % totalTests


retval = 'rql'


x = []
def tryfinallyreturn1(): 
    try:
	x.append(1) 
	return retval
    finally: 
	x.append(2)

r = tryfinallyreturn1()
testEq(x, [1,2], 'tryfinallyreturn1 side effect')
testEq(r, retval, 'tryfinallyreturn1 return value')

x = []
def tryfinallyreturn2(): # fails in jython 2.1, x == [1,2] afterwards 
    try:
	try: 
	    x.append(1)
	    return retval
	finally:
	    x.append(2) 
    finally:
	x.append(3) 

r = tryfinallyreturn2() 
testEq(x, [1,2,3], 'tryfinallyreturn2 side effect')
testEq(r, retval, 'tryfinallyreturn2 return value')

x = [] 
def tryfinallyreturn3(): # fails in jython 2.1, x == [1,2] afterwards
    try: 
	try:
	    try: 
		x.append(1)
		return retval
	    finally:
		x.append(2) 
	finally:
	    x.append(3) 
    finally:
	x.append(4) 

r = tryfinallyreturn3() 
testEq(x, [1,2,3,4], 'tryfinallyreturn3 side effect')
testEq(r, retval, 'tryfinallyreturn3 return value')


x = []
def tryfinallyraise1(): 
    try:
	x.append(1) 
	raise Exception
    finally: 
	x.append(2)

try:
    tryfinallyraise1() 
except Exception:
    testEq(x, [1,2], 'tryfinallyraise1 side effect')
else:
    testFail('tryfinallyraise1 did not trow Exception')


x = []
def tryfinallyraise2(): 
    try:
	try: 
	    x.append(1)
	    raise Exception
	finally:
	    x.append(2) 
    finally:
	x.append(3) 

try:
    tryfinallyraise2()
except Exception:
    testEq(x, [1,2,3], 'tryfinallyraise2 side effect')
else:
    testFail('tryfinallyraise2 did not trow Exception')

x = []
def tryfinallyraise3(): 
    try:
	try: 
	    try:
		x.append(1) 
		raise Exception
	    finally: 
		x.append(2)
	finally: 
	    x.append(3)
    finally: 
	x.append(4)

try:
    tryfinallyraise3() 
except Exception:
    testEq(x, [1,2,3,4], 'tryfinallyraise3 side effect')
else:
    testFail('tryfinallyraise3 did not trow Exception')


x = []
def fortryfinallycontinuereturn1(): 
    for i in range(3):
	try: 
	    x.append(2 * i)
	    if i == 0:
	        continue
	    return retval
	finally:
	    x.append(2 * i + 1) 

r = fortryfinallycontinuereturn1() 
testEq(x, [0,1,2,3], 'fortryfinallycontinuereturn1 side effect')
testEq(r, retval, 'fortryfinallycontinuereturn1 return value')

x = [] 
def fortryfinallycontinuereturn2():
    for i in range(3):
	try:
	    try: 
		x.append(3 * i)
		if i == 0:
		    continue
		return retval
	    finally:
		x.append(3 * i + 1) 
	finally:
	    x.append(3 * i + 2) 

r = fortryfinallycontinuereturn2() 
testEq(x, [0,1,2,3,4,5], 'fortryfinallycontinuereturn2 side effect')
testEq(r, retval, 'fortryfinallycontinuereturn2 return value')

x = [] 
def fortryfinallycontinuereturn3(): # fails in jython 2.1, x == [1,2] afterwards
    for i in range(3):
	try:
	    try: 
		try:
		    x.append(4 * i) 
		    if i == 0:
			continue
		    return retval
		finally: 
		    x.append(4 * i + 1)
	    finally: 
		x.append(4 * i + 2)
	finally: 
	    x.append(4 * i + 3)


r = fortryfinallycontinuereturn3() 
testEq(x, [0,1,2,3,4,5,6,7], 'fortryfinallycontinuereturn3 side effect')
testEq(r, retval, 'fortryfinallycontinuereturn3 return value')


x = []
def fortryfinallybreak1(): 
    for i in range(3):
	try: 
	    x.append(2 * i)
	    if i == 1:
	        break
	finally: 
	    x.append(2 * i + 1)
    return retval

r = fortryfinallybreak1() 
testEq(x, [0,1,2,3], 'fortryfinallybreak1 side effect')
testEq(r, retval, 'fortryfinallybreak1 return value')

x = [] 
def fortryfinallybreak2():
    for i in range(3):
	try:
	    try: 
		x.append(3 * i)
		if i == 1:
		    break
	    finally: 
		x.append(3 * i + 1)
	finally: 
	    x.append(3 * i + 2)
    return retval

r = fortryfinallybreak2() 
testEq(x, [0,1,2,3,4,5], 'fortryfinallybreak2 side effect')
testEq(r, retval, 'fortryfinallybreak2 return value')


x = []
def fortryfinallycontinueraise1(): 
    for i in range(3):
	try: 
	    x.append(2 * i)
	    if i == 0:
	        continue
	    raise Exception
	finally:
	    x.append(2 * i + 1) 

try:
    fortryfinallycontinueraise1()
except Exception:
    testEq(x, [0,1,2,3], 'fortryfinallycontinueraise1 side effect')
else:
    testFail('fortryfinallycontinueraise1 did not trow Exception')

x = []
def fortryfinallycontinueraise2():
    for i in range(3):
	try: 
	    try:
		x.append(3 * i) 
		if i == 0:
		    continue
		raise Exception
	    finally: 
		x.append(3 * i + 1)
	finally: 
	    x.append(3 * i + 2)

try:
    fortryfinallycontinueraise2() 
except Exception:
    testEq(x, [0,1,2,3,4,5], 'fortryfinallycontinueraise2 side effect')
else:
    testFail('fortryfinallycontinueraise2 did not trow Exception')


x = []
def tryfortrycontinueraise1(): 
    try:
	for i in range(3):
	    try:
		x.append(2 * i) 
		if i == 0:
		    continue
		raise Exception
	    finally: 
		x.append(2 * i + 1)
    finally: 
	x.append('last')

try:
    tryfortrycontinueraise1() 
except Exception:
    testEq(x, [0,1,2,3,'last'], 'tryfortrycontinueraise1 side effect')
else:
    testFail('tryfortrycontinueraise1 did not trow Exception')


x = []
def tryfortrybreak1(): 
    try:
	for i in range(3):
	    try:
		x.append(2 * i) 
		if i == 1:
		    break
	    finally:
		x.append(2 * i + 1) 
	return retval
    finally: 
	x.append('last')

r = tryfortrybreak1()
testEq(x, [0,1,2,3,'last'], 'tryfortrybreak1 side effect')
testEq(r, retval, 'tryfortrybreak1 return value')


x = [] 
def tryfortrycontinuereturn1():
    try:
	for i in range(3):
	    try: 
		x.append(2 * i)
		if i == 0:
		    continue
		return retval
	    finally:
		x.append(2 * i + 1) 
    finally:
	x.append('last') 

r = tryfortrycontinuereturn1() 
testEq(x, [0,1,2,3,'last'], 'tryfortryfinallyreturn1 side effect')
testEq(r, retval, 'tryfortrycontinuereturn1 return value')

finalTestReport()