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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
|
import platform
import sys
from asyncio import CancelledError, Event, ensure_future, sleep
from graphql.execution import MapAsyncIterator
from pytest import mark, raises
is_pypy = platform.python_implementation() == "PyPy"
try: # pragma: no cover
anext # type: ignore
except NameError: # pragma: no cover (Python < 3.10)
# noinspection PyShadowingBuiltins
async def anext(iterator):
"""Return the next item from an async iterator."""
return await iterator.__anext__()
def describe_map_async_iterator():
@mark.asyncio
async def maps_over_async_generator():
async def source():
yield 1
yield 2
yield 3
doubles = MapAsyncIterator(source(), lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
assert await anext(doubles) == 6
with raises(StopAsyncIteration):
assert await anext(doubles)
@mark.asyncio
async def maps_over_async_iterable():
items = [1, 2, 3]
class Iterable:
def __aiter__(self):
return self
async def __anext__(self):
try:
return items.pop(0)
except IndexError:
raise StopAsyncIteration
doubles = MapAsyncIterator(Iterable(), lambda x: x + x)
values = [value async for value in doubles]
assert not items
assert values == [2, 4, 6]
@mark.asyncio
async def compatible_with_async_for():
async def source():
yield 1
yield 2
yield 3
doubles = MapAsyncIterator(source(), lambda x: x + x)
values = [value async for value in doubles]
assert values == [2, 4, 6]
@mark.asyncio
async def maps_over_async_values_with_async_function():
async def source():
yield 1
yield 2
yield 3
async def double(x):
return x + x
doubles = MapAsyncIterator(source(), double)
values = [value async for value in doubles]
assert values == [2, 4, 6]
@mark.asyncio
async def allows_returning_early_from_mapped_async_generator():
async def source():
yield 1
yield 2
yield 3 # pragma: no cover
doubles = MapAsyncIterator(source(), lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
# Early return
await doubles.aclose()
# Subsequent next calls
with raises(StopAsyncIteration):
await anext(doubles)
with raises(StopAsyncIteration):
await anext(doubles)
@mark.asyncio
async def allows_returning_early_from_mapped_async_iterable():
items = [1, 2, 3]
class Iterable:
def __aiter__(self):
return self
async def __anext__(self):
try:
return items.pop(0)
except IndexError: # pragma: no cover
raise StopAsyncIteration
doubles = MapAsyncIterator(Iterable(), lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
# Early return
await doubles.aclose()
# Subsequent next calls
with raises(StopAsyncIteration):
await anext(doubles)
with raises(StopAsyncIteration):
await anext(doubles)
@mark.asyncio
async def passes_through_early_return_from_async_values():
async def source():
try:
yield 1
yield 2
yield 3 # pragma: no cover
finally:
yield "Done"
yield "Last"
doubles = MapAsyncIterator(source(), lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
# Early return
await doubles.aclose()
# Subsequent next calls may yield from finally block
assert await anext(doubles) == "LastLast"
with raises(GeneratorExit):
assert await anext(doubles)
@mark.asyncio
async def allows_throwing_errors_through_async_iterable():
items = [1, 2, 3]
class Iterable:
def __aiter__(self):
return self
async def __anext__(self):
try:
return items.pop(0)
except IndexError: # pragma: no cover
raise StopAsyncIteration
doubles = MapAsyncIterator(Iterable(), lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
# Throw error
with raises(RuntimeError, match="Ouch") as exc_info:
await doubles.athrow(RuntimeError("Ouch"))
assert str(exc_info.value) == "Ouch"
with raises(StopAsyncIteration):
await anext(doubles)
with raises(StopAsyncIteration):
await anext(doubles)
@mark.asyncio
async def allows_throwing_errors_with_values_through_async_iterators():
class Iterator:
def __aiter__(self):
return self
async def __anext__(self):
return 1
one = MapAsyncIterator(Iterator(), lambda x: x)
assert await anext(one) == 1
# Throw error with value passed separately
try:
raise RuntimeError("Ouch")
except RuntimeError as error:
with raises(RuntimeError, match="Ouch") as exc_info:
await one.athrow(error.__class__, error)
assert exc_info.value is error
assert exc_info.tb is error.__traceback__
with raises(StopAsyncIteration):
await anext(one)
@mark.asyncio
async def allows_throwing_errors_with_traceback_through_async_iterators():
class Iterator:
def __aiter__(self):
return self
async def __anext__(self):
return 1
one = MapAsyncIterator(Iterator(), lambda x: x)
assert await anext(one) == 1
# Throw error with traceback passed separately
try:
raise RuntimeError("Ouch")
except RuntimeError as error:
with raises(RuntimeError) as exc_info:
await one.athrow(error.__class__, None, error.__traceback__)
assert exc_info.tb and error.__traceback__
assert exc_info.tb.tb_frame is error.__traceback__.tb_frame
with raises(StopAsyncIteration):
await anext(one)
@mark.asyncio
async def passes_through_caught_errors_through_async_generators():
async def source():
try:
yield 1
yield 2
yield 3 # pragma: no cover
except Exception as e:
yield e
doubles = MapAsyncIterator(source(), lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
# Throw error
await doubles.athrow(RuntimeError("ouch"))
with raises(StopAsyncIteration):
await anext(doubles)
with raises(StopAsyncIteration):
await anext(doubles)
@mark.asyncio
async def does_not_normally_map_over_thrown_errors():
async def source():
yield "Hello"
raise RuntimeError("Goodbye")
doubles = MapAsyncIterator(source(), lambda x: x + x)
assert await anext(doubles) == "HelloHello"
with raises(RuntimeError) as exc_info:
await anext(doubles)
assert str(exc_info.value) == "Goodbye"
@mark.asyncio
async def does_not_normally_map_over_externally_thrown_errors():
async def source():
yield "Hello"
doubles = MapAsyncIterator(source(), lambda x: x + x)
assert await anext(doubles) == "HelloHello"
with raises(RuntimeError) as exc_info:
await doubles.athrow(RuntimeError("Goodbye"))
assert str(exc_info.value) == "Goodbye"
@mark.asyncio
async def can_use_simple_iterator_instead_of_generator():
async def source():
yield 1
yield 2
yield 3
class Source:
def __init__(self):
self.counter = 0
def __aiter__(self):
return self
async def __anext__(self):
self.counter += 1
if self.counter > 3:
raise StopAsyncIteration
return self.counter
def double(x):
return x + x
for iterator in source, Source:
doubles = MapAsyncIterator(iterator(), double)
await doubles.aclose()
with raises(StopAsyncIteration):
await anext(doubles)
doubles = MapAsyncIterator(iterator(), double)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
assert await anext(doubles) == 6
with raises(StopAsyncIteration):
await anext(doubles)
doubles = MapAsyncIterator(iterator(), double)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
# Throw error
with raises(RuntimeError) as exc_info:
await doubles.athrow(RuntimeError("ouch"))
assert str(exc_info.value) == "ouch"
with raises(StopAsyncIteration):
await anext(doubles)
with raises(StopAsyncIteration):
await anext(doubles)
# no more exceptions should be thrown
if is_pypy:
# need to investigate why this is needed with PyPy
await doubles.aclose() # pragma: no cover
await doubles.athrow(RuntimeError("no more ouch"))
with raises(StopAsyncIteration):
await anext(doubles)
await doubles.aclose()
doubles = MapAsyncIterator(iterator(), double)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
try:
raise ValueError("bad")
except ValueError:
tb = sys.exc_info()[2]
# Throw error
with raises(ValueError):
await doubles.athrow(ValueError, None, tb)
await sleep(0)
@mark.asyncio
async def stops_async_iteration_on_close():
async def source():
yield 1
await Event().wait() # Block forever
yield 2 # pragma: no cover
yield 3 # pragma: no cover
singles = source()
doubles = MapAsyncIterator(singles, lambda x: x * 2)
result = await anext(doubles)
assert result == 2
# Make sure it is blocked
doubles_future = ensure_future(anext(doubles))
await sleep(0.05)
assert not doubles_future.done()
# Unblock and watch StopAsyncIteration propagate
await doubles.aclose()
await sleep(0.05)
assert doubles_future.done()
assert isinstance(doubles_future.exception(), StopAsyncIteration)
with raises(StopAsyncIteration):
await anext(singles)
@mark.asyncio
async def can_unset_closed_state_of_async_iterator():
items = [1, 2, 3]
class Iterator:
def __init__(self):
self.is_closed = False
def __aiter__(self):
return self
async def __anext__(self):
if self.is_closed:
raise StopAsyncIteration
try:
return items.pop(0)
except IndexError:
raise StopAsyncIteration
async def aclose(self):
self.is_closed = True
iterator = Iterator()
doubles = MapAsyncIterator(iterator, lambda x: x + x)
assert await anext(doubles) == 2
assert await anext(doubles) == 4
assert not iterator.is_closed
await doubles.aclose()
assert iterator.is_closed
with raises(StopAsyncIteration):
await anext(iterator)
with raises(StopAsyncIteration):
await anext(doubles)
assert doubles.is_closed
iterator.is_closed = False
doubles.is_closed = False
assert not doubles.is_closed
assert await anext(doubles) == 6
assert not doubles.is_closed
assert not iterator.is_closed
with raises(StopAsyncIteration):
await anext(iterator)
with raises(StopAsyncIteration):
await anext(doubles)
assert not doubles.is_closed
assert not iterator.is_closed
@mark.asyncio
async def can_cancel_async_iterator_while_waiting():
class Iterator:
def __init__(self):
self.is_closed = False
self.value = 1
def __aiter__(self):
return self
async def __anext__(self):
try:
await sleep(0.5)
return self.value # pragma: no cover
except CancelledError:
self.value = -1
raise
async def aclose(self):
self.is_closed = True
iterator = Iterator()
doubles = MapAsyncIterator(iterator, lambda x: x + x) # pragma: no cover exit
cancelled = False
async def iterator_task():
nonlocal cancelled
try:
async for _ in doubles:
assert False # pragma: no cover
except CancelledError:
cancelled = True
task = ensure_future(iterator_task())
await sleep(0.05)
assert not cancelled
assert not doubles.is_closed
assert iterator.value == 1
assert not iterator.is_closed
task.cancel()
await sleep(0.05)
assert cancelled
assert iterator.value == -1
assert doubles.is_closed
assert iterator.is_closed
|