Skip to content

Commit c1aa8b9

Browse files
committed
Reformat test files
1 parent 2227a94 commit c1aa8b9

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

tests/calls.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
from authzed.api.v1 import (
2-
WriteSchemaRequest
3-
)
1+
from authzed.api.v1 import WriteSchemaRequest
42

53
from .utils import maybe_await
64

5+
76
async def write_test_schema(client):
87
schema = """
98
caveat likes_harry_potter(likes bool) {

tests/conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import pytest
22
import uuid
33

4+
45
@pytest.fixture(scope="function")
56
def token():
67
return str(uuid.uuid4())

tests/insecure_client_test.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import grpc
33

44
from authzed.api.v1 import (
5-
InsecureClient,
6-
SyncClient,
7-
AsyncClient,
8-
)
5+
InsecureClient,
6+
SyncClient,
7+
AsyncClient,
8+
)
99
from grpcutil import insecure_bearer_token_credentials
1010

1111
from .calls import write_test_schema
@@ -18,18 +18,21 @@
1818
# docker run --rm -p 192.168.x.x:50051:50051 authzed/spicedb serve-testing
1919
remote_host = "remote-spicedb"
2020

21+
2122
@pytest.mark.ci_only
2223
async def test_normal_async_client_raises_error_on_insecure_remote_call(token):
2324
with pytest.raises(grpc.RpcError):
2425
client = AsyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
2526
await write_test_schema(client)
2627

28+
2729
@pytest.mark.ci_only
2830
async def test_normal_sync_client_raises_error_on_insecure_remote_call(token):
2931
with pytest.raises(grpc.RpcError):
3032
client = SyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
3133
await write_test_schema(client)
3234

35+
3336
@pytest.mark.ci_only
3437
async def test_insecure_client_makes_insecure_remote_call(token):
3538
insecure_client = InsecureClient(f"{remote_host}:50051", token)

tests/utils.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
from inspect import isawaitable
22
from typing import (
3-
TypeVar,
4-
Union,
5-
Iterable,
6-
AsyncIterable,
7-
)
3+
TypeVar,
4+
Union,
5+
Iterable,
6+
AsyncIterable,
7+
)
88

99
T = TypeVar("T")
1010

11+
1112
async def maybe_async_iterable_to_list(iterable: Union[Iterable[T], AsyncIterable[T]]) -> list[T]:
1213
items = []
1314
if isinstance(iterable, AsyncIterable):
@@ -18,6 +19,7 @@ async def maybe_async_iterable_to_list(iterable: Union[Iterable[T], AsyncIterabl
1819
items.append(item)
1920
return items
2021

22+
2123
async def maybe_await(resp: T) -> T:
2224
if isawaitable(resp):
2325
resp = await resp

0 commit comments

Comments
 (0)