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
|
from __future__ import annotations
import typing as t
import pytest
from blinker import Signal
def test_temp_connection() -> None:
sig = Signal()
canary = []
def receiver(sender: t.Any) -> None:
canary.append(sender)
sig.send(1)
with sig.connected_to(receiver):
sig.send(2)
sig.send(3)
assert canary == [2]
assert not sig.receivers
def test_temp_connection_for_sender() -> None:
sig = Signal()
canary = []
def receiver(sender: t.Any) -> None:
canary.append(sender)
with sig.connected_to(receiver, sender=2):
sig.send(1)
sig.send(2)
assert canary == [2]
assert not sig.receivers
class Failure(Exception):
pass
class BaseFailure(BaseException):
pass
@pytest.mark.parametrize("exc_type", [Failure, BaseFailure])
def test_temp_connection_failure(exc_type: type[BaseException]) -> None:
sig = Signal()
canary = []
def receiver(sender: t.Any) -> None:
canary.append(sender)
with pytest.raises(exc_type):
sig.send(1)
with sig.connected_to(receiver):
sig.send(2)
raise exc_type
sig.send(3)
assert canary == [2]
assert not sig.receivers
|