|
10 | 10 |
|
11 | 11 | from .calls import write_test_schema
|
12 | 12 |
|
| 13 | +## NOTE: these tests aren't usually run. They theoretically could and theoretically |
| 14 | +# should be run in CI, but getting an appropriate "remote" container is difficult with |
| 15 | +# github actions; this will happen at some point in the future. |
| 16 | +# To run them: `poetry run pytest -m ""` |
| 17 | + |
13 | 18 | # NOTE: this is the name of the "remote" binding of the service container
|
14 | 19 | # in CI. These tests are only run in CI because otherwise setup is fiddly.
|
15 | 20 | # If you want to see these tests run locally, figure out your computer's
|
16 | 21 | # network-local IP address (typically 192.168.x.x) and make that the `remote_host`
|
17 | 22 | # string below, and then start up a testing container bound to that interface:
|
18 | 23 | # docker run --rm -p 192.168.x.x:50051:50051 authzed/spicedb serve-testing
|
19 |
| -remote_host = "remote-spicedb" |
20 |
| - |
| 24 | +remote_host = "192.168.something.something" |
21 | 25 |
|
22 |
| -@pytest.mark.ci_only |
| 26 | +@pytest.mark.remote_calls |
23 | 27 | async def test_normal_async_client_raises_error_on_insecure_remote_call(token):
|
24 | 28 | with pytest.raises(grpc.RpcError):
|
25 | 29 | client = AsyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
|
26 | 30 | await write_test_schema(client)
|
27 | 31 |
|
28 | 32 |
|
29 |
| -@pytest.mark.ci_only |
| 33 | +@pytest.mark.remote_calls |
30 | 34 | async def test_normal_sync_client_raises_error_on_insecure_remote_call(token):
|
31 | 35 | with pytest.raises(grpc.RpcError):
|
32 | 36 | client = SyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
|
33 | 37 | await write_test_schema(client)
|
34 | 38 |
|
35 | 39 |
|
36 |
| -@pytest.mark.ci_only |
| 40 | +@pytest.mark.remote_calls |
37 | 41 | async def test_insecure_client_makes_insecure_remote_call(token):
|
38 | 42 | insecure_client = InsecureClient(f"{remote_host}:50051", token)
|
39 | 43 | await write_test_schema(insecure_client)
|
0 commit comments