-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_input_special_chars.py
More file actions
305 lines (261 loc) · 10.2 KB
/
test_input_special_chars.py
File metadata and controls
305 lines (261 loc) · 10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
from io import StringIO
import pytest
from replit_river.codegen.client import schema_to_river_client_codegen
def test_input_special_chars_basemodel() -> None:
"""Handles special characters in input field names for BaseModel."""
schema_to_river_client_codegen(
read_schema=lambda: open(
"tests/v1/codegen/rpc/input-special-chars-schema.json"
), # noqa: E501
target_path="tests/v1/codegen/rpc/generated_input_special",
client_name="InputSpecialClient",
typed_dict_inputs=False, # BaseModel inputs
file_opener=lambda _: StringIO(),
method_filter=None,
protocol_version="v1.1",
)
def test_input_special_chars_typeddict() -> None:
"""Handles special characters in input field names for TypedDict."""
# Test should pass without raising an exception
schema_to_river_client_codegen(
read_schema=lambda: open(
"tests/v1/codegen/rpc/input-special-chars-schema.json"
), # noqa: E501
target_path="tests/v1/codegen/rpc/generated_input_special_td",
client_name="InputSpecialTDClient",
typed_dict_inputs=True, # TypedDict inputs
file_opener=lambda _: StringIO(),
method_filter=None,
protocol_version="v1.1",
)
def test_input_collision_error_basemodel() -> None:
"""Raises ValueError for input field name collisions with BaseModel."""
with pytest.raises(ValueError) as exc_info:
schema_to_river_client_codegen(
read_schema=lambda: open(
"tests/v1/codegen/rpc/input-collision-schema.json"
), # noqa: E501
target_path="tests/v1/codegen/rpc/generated_input_collision",
client_name="InputCollisionClient",
typed_dict_inputs=False, # BaseModel inputs
file_opener=lambda _: StringIO(),
method_filter=None,
protocol_version="v1.1",
)
# Check that the error message matches the expected format for field name collision
error_message = str(exc_info.value)
assert "Field name collision" in error_message
assert "data-3" in error_message
assert "data:3" in error_message
assert "all normalize to the same effective name 'data_3'" in error_message
def test_input_collision_error_typeddict() -> None:
"""Raises ValueError for input field name collisions with TypedDict."""
with pytest.raises(ValueError) as exc_info:
schema_to_river_client_codegen(
read_schema=lambda: open(
"tests/v1/codegen/rpc/input-collision-schema.json"
), # noqa: E501
target_path="tests/v1/codegen/rpc/generated_input_collision_td",
client_name="InputCollisionTDClient",
typed_dict_inputs=True, # TypedDict inputs
file_opener=lambda _: StringIO(),
method_filter=None,
protocol_version="v1.1",
)
# Check that the error message matches the expected format for field name collision
error_message = str(exc_info.value)
assert "Field name collision" in error_message
assert "data-3" in error_message
assert "data:3" in error_message
assert "all normalize to the same effective name 'data_3'" in error_message
def test_init_special_chars_basemodel() -> None:
"""Handles special characters in init field names for BaseModel."""
init_schema = {
"services": {
"test_service": {
"procedures": {
"stream_method": {
"init": {
"type": "object",
"properties": {
"init-field1": {"type": "string"},
"init:field2": {"type": "number"},
"init.field3": {"type": "boolean"},
},
"required": ["init-field1"],
},
"output": {"type": "boolean"},
"errors": {"not": {}},
"type": "stream",
}
}
}
}
}
import json
# Test should pass without raising an exception
schema_to_river_client_codegen(
read_schema=lambda: StringIO(json.dumps(init_schema)),
target_path="tests/v1/codegen/rpc/generated_init_special",
client_name="InitSpecialClient",
typed_dict_inputs=False, # BaseModel inputs
file_opener=lambda _: StringIO(),
method_filter=None,
protocol_version="v2.0",
)
def test_init_special_chars_typeddict() -> None:
"""Handles special characters in init field names for TypedDict."""
init_schema = {
"services": {
"test_service": {
"procedures": {
"stream_method": {
"init": {
"type": "object",
"properties": {
"init-field1": {"type": "string"},
"init:field2": {"type": "number"},
"init.field3": {"type": "boolean"},
},
"required": ["init-field1"],
},
"output": {"type": "boolean"},
"errors": {"not": {}},
"type": "stream",
}
}
}
}
}
import json
# Test should pass without raising an exception
schema_to_river_client_codegen(
read_schema=lambda: StringIO(json.dumps(init_schema)),
target_path="tests/v1/codegen/rpc/generated_init_special_td",
client_name="InitSpecialTDClient",
typed_dict_inputs=True, # TypedDict inputs
file_opener=lambda _: StringIO(),
method_filter=None,
protocol_version="v2.0",
)
class UnclosableStringIO(StringIO):
def close(self) -> None:
pass
def test_python_keyword_field_names_basemodel() -> None:
"""Handles Python reserved keywords as field names for BaseModel."""
import ast
import json
from pathlib import Path
keyword_schema = {
"services": {
"test_service": {
"procedures": {
"rpc_method": {
"input": {
"type": "object",
"properties": {
"from": {"type": "string"},
"to": {"type": "string"},
"class": {"type": "number"},
"import": {"type": "boolean"},
},
"required": ["from", "to"],
},
"output": {
"type": "object",
"properties": {
"from": {"type": "string"},
"to": {"type": "string"},
},
"required": ["from", "to"],
},
"errors": {"not": {}},
"type": "rpc",
}
}
}
}
}
files: dict[Path, UnclosableStringIO] = {}
def file_opener(path: Path) -> UnclosableStringIO:
buf = UnclosableStringIO()
files[path] = buf
return buf
schema_to_river_client_codegen(
read_schema=lambda: StringIO(json.dumps(keyword_schema)),
target_path="test_keyword_bm",
client_name="KeywordBMClient",
typed_dict_inputs=False,
file_opener=file_opener,
method_filter=None,
protocol_version="v1.1",
)
# Verify all generated files are valid Python
for path, buf in files.items():
buf.seek(0)
content = buf.read()
try:
ast.parse(content)
except SyntaxError as e:
raise AssertionError(
f"Generated file {path} has invalid syntax: {e}\n{content}"
)
def test_python_keyword_field_names_typeddict() -> None:
"""Handles Python reserved keywords as field names for TypedDict."""
import ast
import json
from pathlib import Path
keyword_schema = {
"services": {
"test_service": {
"procedures": {
"rpc_method": {
"input": {
"type": "object",
"properties": {
"from": {"type": "string"},
"to": {"type": "string"},
"class": {"type": "number"},
"import": {"type": "boolean"},
},
"required": ["from", "to"],
},
"output": {
"type": "object",
"properties": {
"from": {"type": "string"},
"to": {"type": "string"},
},
"required": ["from", "to"],
},
"errors": {"not": {}},
"type": "rpc",
}
}
}
}
}
files: dict[Path, UnclosableStringIO] = {}
def file_opener(path: Path) -> UnclosableStringIO:
buf = UnclosableStringIO()
files[path] = buf
return buf
schema_to_river_client_codegen(
read_schema=lambda: StringIO(json.dumps(keyword_schema)),
target_path="test_keyword_td",
client_name="KeywordTDClient",
typed_dict_inputs=True,
file_opener=file_opener,
method_filter=None,
protocol_version="v1.1",
)
# Verify all generated files are valid Python
for path, buf in files.items():
buf.seek(0)
content = buf.read()
try:
ast.parse(content)
except SyntaxError as e:
raise AssertionError(
f"Generated file {path} has invalid syntax: {e}\n{content}"
)