soia-client 1.0.10__tar.gz → 1.0.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {soia_client-1.0.10 → soia_client-1.0.11}/PKG-INFO +1 -1
- {soia_client-1.0.10 → soia_client-1.0.11}/pyproject.toml +1 -1
- {soia_client-1.0.10 → soia_client-1.0.11}/soia_client.egg-info/PKG-INFO +1 -1
- {soia_client-1.0.10 → soia_client-1.0.11}/soia_client.egg-info/SOURCES.txt +2 -0
- soia_client-1.0.11/soialib/_.py +3 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/__init__.py +2 -0
- soia_client-1.0.11/soialib/service_client.py +70 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/tests/test_module_initializer.py +5 -2
- {soia_client-1.0.10 → soia_client-1.0.11}/tests/test_serializers.py +12 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/LICENSE +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/README +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/setup.cfg +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soia_client.egg-info/dependency_links.txt +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soia_client.egg-info/top_level.txt +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/__init__.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/arrays.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/enums.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/function_maker.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/optionals.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/primitives.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/repr.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/structs.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/impl/type_adapter.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/keyed_items.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/method.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/module_initializer.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/never.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/serializer.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/serializers.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/spec.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/soialib/timestamp.py +0 -0
- {soia_client-1.0.10 → soia_client-1.0.11}/tests/test_timestamp.py +0 -0
|
@@ -5,6 +5,7 @@ soia_client.egg-info/PKG-INFO
|
|
|
5
5
|
soia_client.egg-info/SOURCES.txt
|
|
6
6
|
soia_client.egg-info/dependency_links.txt
|
|
7
7
|
soia_client.egg-info/top_level.txt
|
|
8
|
+
soialib/_.py
|
|
8
9
|
soialib/__init__.py
|
|
9
10
|
soialib/keyed_items.py
|
|
10
11
|
soialib/method.py
|
|
@@ -12,6 +13,7 @@ soialib/module_initializer.py
|
|
|
12
13
|
soialib/never.py
|
|
13
14
|
soialib/serializer.py
|
|
14
15
|
soialib/serializers.py
|
|
16
|
+
soialib/service_client.py
|
|
15
17
|
soialib/spec.py
|
|
16
18
|
soialib/timestamp.py
|
|
17
19
|
soialib/impl/__init__.py
|
|
@@ -6,12 +6,14 @@ from soialib.serializers import (
|
|
|
6
6
|
optional_serializer,
|
|
7
7
|
primitive_serializer,
|
|
8
8
|
)
|
|
9
|
+
from soialib.service_client import ServiceClient
|
|
9
10
|
from soialib.timestamp import Timestamp
|
|
10
11
|
|
|
11
12
|
__all__ = [
|
|
12
13
|
"KeyedItems",
|
|
13
14
|
"Method",
|
|
14
15
|
"Serializer",
|
|
16
|
+
"ServiceClient",
|
|
15
17
|
"Timestamp",
|
|
16
18
|
"array_serializer",
|
|
17
19
|
"optional_serializer",
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import http.client
|
|
2
|
+
from typing import Final, Mapping, TypeVar
|
|
3
|
+
from urllib.parse import urlparse
|
|
4
|
+
|
|
5
|
+
from soialib import Method
|
|
6
|
+
|
|
7
|
+
Request = TypeVar("Request")
|
|
8
|
+
Response = TypeVar("Response")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ServiceClient:
|
|
12
|
+
_scheme: Final[str]
|
|
13
|
+
_host: Final[str] # May include the port
|
|
14
|
+
_path: Final[str]
|
|
15
|
+
|
|
16
|
+
def __init__(self, service_url: str, use_https: bool = False):
|
|
17
|
+
parsed_url = urlparse(service_url)
|
|
18
|
+
if parsed_url.query:
|
|
19
|
+
raise ValueError("Service URL must not contain a query string")
|
|
20
|
+
scheme = parsed_url.scheme
|
|
21
|
+
if scheme not in ["http", "https"]:
|
|
22
|
+
raise ValueError("Service URL must start with http:// or https://")
|
|
23
|
+
self._scheme = scheme
|
|
24
|
+
self._host = parsed_url.netloc
|
|
25
|
+
self._path = parsed_url.path
|
|
26
|
+
|
|
27
|
+
def invoke_remote(
|
|
28
|
+
self,
|
|
29
|
+
method: Method[Request, Response],
|
|
30
|
+
request: Request,
|
|
31
|
+
headers: Mapping[str, str] = {},
|
|
32
|
+
) -> Response:
|
|
33
|
+
request_json = method.request_serializer.to_json_code(request)
|
|
34
|
+
body = ":".join(
|
|
35
|
+
[
|
|
36
|
+
method.name,
|
|
37
|
+
str(method.number),
|
|
38
|
+
"",
|
|
39
|
+
request_json,
|
|
40
|
+
]
|
|
41
|
+
)
|
|
42
|
+
headers = {
|
|
43
|
+
**headers,
|
|
44
|
+
"Content-Type": "text/plain; charset=utf-8",
|
|
45
|
+
"Content-Length": str(len(body)),
|
|
46
|
+
}
|
|
47
|
+
if self._scheme == "https":
|
|
48
|
+
conn = http.client.HTTPSConnection(self._host)
|
|
49
|
+
else:
|
|
50
|
+
conn = http.client.HTTPConnection(self._host)
|
|
51
|
+
try:
|
|
52
|
+
conn.request(
|
|
53
|
+
"POST",
|
|
54
|
+
self._path,
|
|
55
|
+
body=body,
|
|
56
|
+
headers=headers,
|
|
57
|
+
)
|
|
58
|
+
response = conn.getresponse()
|
|
59
|
+
status_code = response.status
|
|
60
|
+
content_type = response.getheader("Content-Type")
|
|
61
|
+
response_data = response.read().decode("utf-8", errors="ignore")
|
|
62
|
+
finally:
|
|
63
|
+
conn.close()
|
|
64
|
+
if status_code in range(200, 300):
|
|
65
|
+
return method.response_serializer.from_json_code(response_data)
|
|
66
|
+
else:
|
|
67
|
+
message = f"HTTP response status {status_code}"
|
|
68
|
+
if content_type == "text/plain":
|
|
69
|
+
message = f"{message}: {response_data}"
|
|
70
|
+
raise RuntimeError(message)
|
|
@@ -441,7 +441,6 @@ class ModuleInitializerTestCase(unittest.TestCase):
|
|
|
441
441
|
|
|
442
442
|
def test_primitives_repr(self):
|
|
443
443
|
primitives_cls = self.init_test_module()["Primitives"]
|
|
444
|
-
serializer = primitives_cls.SERIALIZER
|
|
445
444
|
p = primitives_cls(
|
|
446
445
|
bool=True,
|
|
447
446
|
bytes=b"a",
|
|
@@ -469,7 +468,6 @@ class ModuleInitializerTestCase(unittest.TestCase):
|
|
|
469
468
|
|
|
470
469
|
def test_cannot_mutate_frozen_class(self):
|
|
471
470
|
point_cls = self.init_test_module()["Point"]
|
|
472
|
-
serializer = point_cls.SERIALIZER
|
|
473
471
|
point = point_cls(x=1.5, y=2.5)
|
|
474
472
|
try:
|
|
475
473
|
point.x = 3.5
|
|
@@ -585,6 +583,11 @@ class ModuleInitializerTestCase(unittest.TestCase):
|
|
|
585
583
|
def test_struct_ctor_raises_error_if_unknown_arg(self):
|
|
586
584
|
module = self.init_test_module()
|
|
587
585
|
segment_cls = module["Segment"]
|
|
586
|
+
try:
|
|
587
|
+
segment_cls(foo=4)
|
|
588
|
+
self.fail("Expected to fail")
|
|
589
|
+
except Exception:
|
|
590
|
+
pass
|
|
588
591
|
|
|
589
592
|
def test_to_frozen_checks_type_of_struct_field(self):
|
|
590
593
|
module = self.init_test_module()
|
|
@@ -97,6 +97,18 @@ class TimestampTestCase(unittest.TestCase):
|
|
|
97
97
|
self.assertEqual(
|
|
98
98
|
primitive_serializer("float32").to_json_code(float("nan")), "NaN"
|
|
99
99
|
)
|
|
100
|
+
self.assertEqual(primitive_serializer("float32").from_json_code("3.14"), 3.14)
|
|
101
|
+
self.assertEqual(
|
|
102
|
+
primitive_serializer("float32").from_json_code("Infinity"), float("inf")
|
|
103
|
+
)
|
|
104
|
+
self.assertEqual(
|
|
105
|
+
primitive_serializer("float32").from_json_code("-Infinity"), -float("inf")
|
|
106
|
+
)
|
|
107
|
+
self.assertNotEqual(
|
|
108
|
+
primitive_serializer("float32").from_json_code("NaN"),
|
|
109
|
+
primitive_serializer("float32").from_json_code("NaN"),
|
|
110
|
+
)
|
|
111
|
+
|
|
100
112
|
self.assertEqual(primitive_serializer("float64").to_json_code(3.14), "3.14")
|
|
101
113
|
self.assertEqual(
|
|
102
114
|
primitive_serializer("float64").to_json_code(3.14, readable=True),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|