Skip to content

Commit 81adee5

Browse files
tests: use custom exceptiongroup handler
This way tests can still be run with older versions of trio and anyio
1 parent 4d4d2d4 commit 81adee5

File tree

4 files changed

+36
-4
lines changed

4 files changed

+36
-4
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def main():
8282
"grpcio-tools",
8383
"uvloop; platform_system!='Windows'",
8484
"tblib>=1.3.2",
85-
"trio>=0.24.0",
85+
"trio>=0.11",
8686
"pip-tools>=6.3.1",
8787
"python-forge>=18.6",
8888
"trustme",

tests/exceptiongroups.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from typing import Iterable
2+
from contextlib import contextmanager
3+
import sys
4+
5+
if sys.version_info < (3, 11):
6+
from exceptiongroup import ExceptionGroup
7+
8+
9+
def _unroll_exceptions(
10+
exceptions: Iterable[Exception]
11+
) -> Iterable[Exception]:
12+
res: list[Exception] = []
13+
for exc in exceptions:
14+
if isinstance(exc, ExceptionGroup):
15+
res.extend(_unroll_exceptions(exc.exceptions))
16+
17+
else:
18+
res.append(exc)
19+
return res
20+
21+
22+
@contextmanager
23+
def unwrap_exceptiongroups_single():
24+
try:
25+
yield
26+
except ExceptionGroup as e:
27+
exceptions = _unroll_exceptions(e.exceptions)
28+
29+
assert len(exceptions) == 1, "Exception group contains multiple exceptions"
30+
31+
raise exceptions[0]

tests/test_echo.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
import anyio
55
import pytest
66
import trustme
7-
import trio.testing
87

98
import purerpc
109
from purerpc.test_utils import run_purerpc_service_in_process, run_grpc_service_in_process, \
1110
async_iterable_to_list, random_payload, grpc_client_parallelize, purerpc_channel, purerpc_client_parallelize, grpc_channel
11+
from .exceptiongroups import unwrap_exceptiongroups_single
1212

1313
pytestmark = pytest.mark.anyio
1414

@@ -201,7 +201,7 @@ async def test_purerpc_client_disconnect(echo_pb2, echo_grpc):
201201
port = await tg.start(server.serve_async)
202202

203203
# client
204-
with trio.testing.RaisesGroup(anyio.ClosedResourceError, strict=False):
204+
with pytest.raises(anyio.ClosedResourceError), unwrap_exceptiongroups_single():
205205
async with purerpc.insecure_channel("localhost", port) as channel:
206206
stub = echo_grpc.EchoStub(channel)
207207

tests/test_errors.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import purerpc
77
from purerpc.test_utils import run_purerpc_service_in_process, run_grpc_service_in_process, grpc_channel, \
88
grpc_client_parallelize, purerpc_channel
9+
from .exceptiongroups import unwrap_exceptiongroups_single
910

1011
pytestmark = pytest.mark.anyio
1112

@@ -89,7 +90,7 @@ async def generator():
8990

9091
stub = greeter_grpc.GreeterStub(channel)
9192

92-
with trio.testing.RaisesGroup(trio.testing.Matcher(ValueError, "oops"), strict=False):
93+
with pytest.raises(ValueError, match="oops"), unwrap_exceptiongroups_single():
9394
async with stub.SayHelloToMany(generator()) as aiter:
9495
async for resp in aiter:
9596
if resp.message == "2":

0 commit comments

Comments
 (0)