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 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
# Test cases for exceptions (compile and run)
[case testException]
from typing import List
def f(x: List[int]) -> None:
g(x)
def g(x: List[int]) -> bool:
x[5] = 2
return True
def r1() -> None:
q1()
def q1() -> None:
raise Exception("test")
def r2() -> None:
q2()
def q2() -> None:
raise Exception
class A:
def __init__(self) -> None:
raise Exception
def hey() -> None:
A()
[file driver.py]
from native import f, r1, r2, hey
import traceback
try:
f([])
except IndexError:
traceback.print_exc()
try:
r1()
except Exception:
traceback.print_exc()
try:
r2()
except Exception:
traceback.print_exc()
try:
hey()
except Exception:
traceback.print_exc()
[out]
Traceback (most recent call last):
File "driver.py", line 4, in <module>
f([])
File "native.py", line 3, in f
g(x)
File "native.py", line 6, in g
x[5] = 2
IndexError: list assignment index out of range
Traceback (most recent call last):
File "driver.py", line 8, in <module>
r1()
File "native.py", line 10, in r1
q1()
File "native.py", line 13, in q1
raise Exception("test")
Exception: test
Traceback (most recent call last):
File "driver.py", line 12, in <module>
r2()
File "native.py", line 16, in r2
q2()
File "native.py", line 19, in q2
raise Exception
Exception
Traceback (most recent call last):
File "driver.py", line 16, in <module>
hey()
File "native.py", line 26, in hey
A()
File "native.py", line 23, in __init__
raise Exception
Exception
[case testTryExcept]
from typing import Any, Iterator
import wrapsys
def g(b: bool) -> None:
try:
if b:
x = [0]
x[1]
else:
raise Exception('hi')
except:
print("caught!")
def r(x: int) -> None:
if x == 0:
[0][1]
elif x == 1:
raise Exception('hi')
elif x == 2:
{1: 1}[0]
elif x == 3:
a = object() # type: Any
a.lol
def f(b: bool) -> None:
try:
r(int(b))
except AttributeError:
print('no')
except:
print(str(wrapsys.exc_info()[1]))
print(str(wrapsys.exc_info()[1]))
def h() -> None:
while True:
try:
raise Exception('gonna break')
except:
print(str(wrapsys.exc_info()[1]))
break
print(str(wrapsys.exc_info()[1]))
def i() -> None:
try:
r(0)
except:
print(type(wrapsys.exc_info()[1]))
raise
def j(n: int) -> None:
try:
r(n)
except (IndexError, KeyError):
print("lookup!")
except AttributeError as e:
print("attr! --", e)
def k() -> None:
try:
r(1)
except:
r(0)
def l() -> None:
try:
r(0)
except IndexError:
try:
r(2)
except KeyError as e:
print("key! --", e)
def m(x: object) -> int:
try:
st = id(x)
except Exception:
return -1
return st + 1
def iter_exception() -> Iterator[str]:
try:
r(0)
except KeyError as e:
yield 'lol'
[file wrapsys.py]
# This is a gross hack around some limitations of the test system/mypyc.
from typing import Any
import sys
def exc_info() -> Any:
return sys.exc_info() # type: ignore
[file driver.py]
import sys, traceback
from native import g, f, h, i, j, k, l, m, iter_exception
from testutil import assertRaises
print("== i ==")
try:
i()
except:
traceback.print_exc(file=sys.stdout)
print("== k ==")
try:
k()
except:
traceback.print_exc(file=sys.stdout)
print("== g ==")
g(True)
g(False)
print("== f ==")
f(True)
f(False)
print("== h ==")
h()
print("== j ==")
j(0)
j(2)
j(3)
try:
j(1)
except:
print("out!")
print("== l ==")
l()
m('lol')
with assertRaises(IndexError):
list(iter_exception())
[out]
== i ==
<class 'IndexError'>
Traceback (most recent call last):
File "driver.py", line 6, in <module>
i()
File "native.py", line 44, in i
r(0)
File "native.py", line 15, in r
[0][1]
IndexError: list index out of range
== k ==
Traceback (most recent call last):
File "native.py", line 59, in k
r(1)
File "native.py", line 17, in r
raise Exception('hi')
Exception: hi
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "driver.py", line 12, in <module>
k()
File "native.py", line 61, in k
r(0)
File "native.py", line 15, in r
[0][1]
IndexError: list index out of range
== g ==
caught!
caught!
== f ==
hi
None
list index out of range
None
== h ==
gonna break
None
== j ==
lookup!
lookup!
attr! -- 'object' object has no attribute 'lol'
out!
== l ==
key! -- 0
[case testTryFinally]
from typing import Any
import wrapsys
def a(b1: bool, b2: int) -> None:
try:
if b1:
raise Exception('hi')
finally:
print('finally:', str(wrapsys.exc_info()[1]))
if b2 == 2:
return
if b2 == 1:
raise Exception('again!')
def b(b1: int, b2: int) -> str:
try:
if b1 == 1:
raise Exception('hi')
elif b1 == 2:
[0][1]
elif b1 == 3:
return 'try'
except IndexError:
print('except')
finally:
print('finally:', str(wrapsys.exc_info()[1]))
if b2 == 2:
return 'finally'
if b2 == 1:
raise Exception('again!')
return 'outer'
def c() -> str:
try:
try:
return 'wee'
finally:
print("out a")
finally:
print("out b")
[file wrapsys.py]
# This is a gross hack around some limitations of the test system/mypyc.
from typing import Any
import sys
def exc_info() -> Any:
return sys.exc_info() # type: ignore
[file driver.py]
import traceback
import sys
from native import a, b, c
def run(f):
try:
x = f()
if x:
print("returned:", x)
except Exception as e:
print("caught:", type(e).__name__ + ": " + str(e))
print("== a ==")
for i in range(3):
for b1 in [False, True]:
run(lambda: a(b1, i))
print("== b ==")
for i in range(4):
for j in range(3):
run(lambda: b(i, j))
print("== b ==")
print(c())
[out]
== a ==
finally: None
finally: hi
caught: Exception: hi
finally: None
caught: Exception: again!
finally: hi
caught: Exception: again!
finally: None
finally: hi
== b ==
finally: None
returned: outer
finally: None
caught: Exception: again!
finally: None
returned: finally
finally: hi
caught: Exception: hi
finally: hi
caught: Exception: again!
finally: hi
returned: finally
except
finally: None
returned: outer
except
finally: None
caught: Exception: again!
except
finally: None
returned: finally
finally: None
returned: try
finally: None
caught: Exception: again!
finally: None
returned: finally
== b ==
out a
out b
wee
[case testCustomException]
from typing import List
class ListOutOfBounds(IndexError):
pass
class UserListWarning(UserWarning):
pass
def f(l: List[int], k: int) -> int:
try:
return l[k]
except IndexError:
raise ListOutOfBounds("Ruh-roh from f!")
def g(l: List[int], k: int) -> int:
try:
return f([1,2,3], 3)
except ListOutOfBounds:
raise ListOutOfBounds("Ruh-roh from g!")
def k(l: List[int], k: int) -> int:
try:
return g([1,2,3], 3)
except IndexError:
raise UserListWarning("Ruh-roh from k!")
def h() -> int:
try:
return k([1,2,3], 3)
except UserWarning:
return -1
[file driver.py]
from native import h
assert h() == -1
[case testExceptionAtModuleTopLevel]
from typing import Any
def f(x: int) -> None: pass
y: Any = ''
f(y)
[file driver.py]
import traceback
try:
import native
except TypeError:
traceback.print_exc()
else:
assert False
[out]
Traceback (most recent call last):
File "driver.py", line 3, in <module>
import native
File "native.py", line 6, in <module>
f(y)
TypeError: int object expected; got str
|