Skip to content

Commit eeecd24

Browse files
fix tests for strict exception groups (#42)
* fix tests to work with strict and non-strict exception groups * add python 3.12 to build, drop python 3.7 (end of life) * upgrade dev dependencies where needed for newer python versions --------- Co-authored-by: John Belmonte <[email protected]>
1 parent 36bab0d commit eeecd24

File tree

6 files changed

+63
-30
lines changed

6 files changed

+63
-30
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
build_and_test_pinned:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
os: [ubuntu-latest]
15-
python-version: ['3.7', '3.8', '3.9', '3.10'] # 'pypy-3.7'
16+
python-version: ['3.8', '3.9', '3.10', '3.11'] # 'pypy-3.7'
1617
steps:
1718
- uses: actions/checkout@v3
1819
- name: Setup Python
@@ -31,7 +32,7 @@ jobs:
3132
# macos-latest disabled due to unexplained timeout
3233
# https://github.com/python-trio/purerpc/issues/39
3334
os: [ubuntu-latest] # TODO: windows-latest
34-
python-version: ['3.11']
35+
python-version: ['3.12']
3536
steps:
3637
- uses: actions/checkout@v3
3738
- name: Setup Python

requirements_test.txt

+23-25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
2-
# This file is autogenerated by pip-compile with python 3.7
3-
# To update, run:
2+
# This file is autogenerated by pip-compile with Python 3.8
3+
# by the following command:
44
#
55
# pip-compile --extra=dev --output-file=requirements_test.txt setup.py
66
#
@@ -15,17 +15,21 @@ attrs==21.4.0
1515
# outcome
1616
# pytest
1717
# trio
18+
build==1.2.1
19+
# via pip-tools
1820
cffi==1.15.0
1921
# via cryptography
2022
click==8.1.2
2123
# via pip-tools
2224
cryptography==36.0.2
2325
# via trustme
24-
grpcio==1.44.0
26+
exceptiongroup==1.2.0 ; python_version < "3.11"
27+
# via purerpc (setup.py)
28+
grpcio==1.62.1
2529
# via
2630
# grpcio-tools
2731
# purerpc (setup.py)
28-
grpcio-tools==1.44.0
32+
grpcio-tools==1.62.1
2933
# via purerpc (setup.py)
3034
h2==3.2.0
3135
# via purerpc (setup.py)
@@ -39,37 +43,35 @@ idna==3.3
3943
# trio
4044
# trustme
4145
importlib-metadata==4.11.3
42-
# via
43-
# click
44-
# pep517
45-
# pluggy
46-
# pytest
46+
# via build
4747
iniconfig==1.1.1
4848
# via pytest
4949
outcome==1.1.0
5050
# via trio
5151
packaging==21.3
52-
# via pytest
53-
pep517==0.12.0
54-
# via pip-tools
55-
pip-tools==6.6.0
52+
# via
53+
# build
54+
# pytest
55+
pip-tools==7.4.1
5656
# via purerpc (setup.py)
5757
pluggy==1.0.0
5858
# via pytest
59-
protobuf==3.20.0
59+
protobuf==4.25.3
6060
# via grpcio-tools
6161
py==1.11.0
6262
# via pytest
6363
pycparser==2.21
6464
# via cffi
6565
pyparsing==3.0.8
6666
# via packaging
67+
pyproject-hooks==1.0.0
68+
# via
69+
# build
70+
# pip-tools
6771
pytest==7.1.1
6872
# via purerpc (setup.py)
6973
python-forge==18.6.0
7074
# via purerpc (setup.py)
71-
six==1.16.0
72-
# via grpcio
7375
sniffio==1.2.0
7476
# via
7577
# anyio
@@ -80,24 +82,20 @@ tblib==1.7.0
8082
# via purerpc (setup.py)
8183
tomli==2.0.1
8284
# via
83-
# pep517
85+
# build
86+
# pip-tools
87+
# pyproject-hooks
8488
# pytest
8589
trio==0.20.0
8690
# via purerpc (setup.py)
8791
trustme==0.9.0
8892
# via purerpc (setup.py)
89-
typing-extensions==4.1.1
90-
# via
91-
# anyio
92-
# importlib-metadata
93-
uvloop==0.16.0 ; platform_system != "Windows"
93+
uvloop==0.19.0 ; platform_system != "Windows"
9494
# via purerpc (setup.py)
9595
wheel==0.37.1
9696
# via pip-tools
9797
zipp==3.8.0
98-
# via
99-
# importlib-metadata
100-
# pep517
98+
# via importlib-metadata
10199

102100
# The following packages are considered to be unsafe in a requirements file:
103101
# pip

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ def main():
3535
"Operating System :: POSIX :: Linux",
3636
"Programming Language :: Python",
3737
"Programming Language :: Python :: 3 :: Only",
38-
"Programming Language :: Python :: 3.7",
3938
"Programming Language :: Python :: 3.8",
4039
"Programming Language :: Python :: 3.9",
4140
"Programming Language :: Python :: 3.10",
4241
"Programming Language :: Python :: 3.11",
42+
"Programming Language :: Python :: 3.12",
4343
"Programming Language :: Python :: Implementation :: CPython",
4444
"Programming Language :: Python :: Implementation :: PyPy",
4545
"Framework :: AsyncIO",
@@ -77,6 +77,7 @@ def main():
7777
"grpcio-tools<=1.26",
7878
],
7979
'dev': [
80+
"exceptiongroup; python_version<'3.11'",
8081
"pytest",
8182
"grpcio",
8283
"grpcio-tools",

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-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import purerpc
99
from purerpc.test_utils import run_purerpc_service_in_process, run_grpc_service_in_process, \
1010
async_iterable_to_list, random_payload, grpc_client_parallelize, purerpc_channel, purerpc_client_parallelize, grpc_channel
11+
from .exceptiongroups import unwrap_exceptiongroups_single
1112

1213
pytestmark = pytest.mark.anyio
1314

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

202203
# client
203-
with pytest.raises(anyio.ClosedResourceError):
204+
with pytest.raises(anyio.ClosedResourceError), unwrap_exceptiongroups_single():
204205
async with purerpc.insecure_channel("localhost", port) as channel:
205206
stub = echo_grpc.EchoStub(channel)
206207

tests/test_errors.py

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

910
pytestmark = pytest.mark.anyio
1011

@@ -88,7 +89,7 @@ async def generator():
8889

8990
stub = greeter_grpc.GreeterStub(channel)
9091

91-
with pytest.raises(ValueError, match="oops"):
92+
with pytest.raises(ValueError, match="oops"), unwrap_exceptiongroups_single():
9293
async with stub.SayHelloToMany(generator()) as aiter:
9394
async for resp in aiter:
9495
if resp.message == "2":

0 commit comments

Comments
 (0)