aws-smithy-http-server-python 0.66.1

Python server runtime for Smithy Rust Server Framework.
Documentation
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
#  Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#  SPDX-License-Identifier: Apache-2.0

import sys
import unittest
from types import ModuleType
from textwrap import dedent
from pathlib import Path
from tempfile import TemporaryDirectory

from stubgen import Writer, walk_module


def create_module(name: str, code: str) -> ModuleType:
    mod = ModuleType(name)
    exec(dedent(code), mod.__dict__)
    if not hasattr(mod, "__all__"):
        # Manually populate `__all__` with all the members that doesn't start with `__`
        mod.__all__ = [k for k in mod.__dict__.keys() if not k.startswith("__")]  # type: ignore
    sys.modules[name] = mod
    return mod


class TestStubgen(unittest.TestCase):
    def test_function_without_docstring(self):
        self.single_mod(
            """
            def foo():
                pass
            """,
            """
            import typing

            foo: typing.Any
            """,
        )

    def test_regular_function(self):
        self.single_mod(
            """
            def foo(bar):
                '''
                :param bar str:
                :rtype bool:
                '''
                pass
            """,
            """
            def foo(bar: str) -> bool:
                ...
            """,
        )

    def test_function_with_default_value(self):
        self.single_mod(
            """
            def foo(bar, qux=None):
                '''
                :param bar int:
                :param qux typing.Optional[str]:
                :rtype None:
                '''
                pass
            """,
            """
            import typing

            def foo(bar: int, qux: typing.Optional[str] = ...) -> None:
                ...
            """,
        )

    def test_empty_class(self):
        self.single_mod(
            """
            class Foo:
                pass
            """,
            """
            class Foo:
                ...
            """,
        )

    def test_class(self):
        self.single_mod(
            """
            class Foo:
                @property
                def bar(self):
                    '''
                    :type typing.List[bool]:
                    '''
                    pass

                def qux(self, a, b, c):
                    '''
                    :param a typing.Dict[typing.List[int]]:
                    :param b str:
                    :param c float:
                    :rtype typing.Union[int, str, bool]:
                    '''
                    pass
            """,
            """
            import typing

            class Foo:
                bar: typing.List[bool]

                def qux(self, a: typing.Dict[typing.List[int]], b: str, c: float) -> typing.Union[int, str, bool]:
                    ...
            """,
        )

    def test_class_with_constructor_signature(self):
        self.single_mod(
            """
            class Foo:
                '''
                :param bar str:
                :rtype None:
                '''
            """,
            """
            class Foo:
                def __init__(self, bar: str) -> None:
                    ...
            """,
        )

    def test_class_with_static_method(self):
        self.single_mod(
            """
            class Foo:
                @staticmethod
                def bar(name):
                    '''
                    :param name str:
                    :rtype typing.List[bool]:
                    '''
                    pass
            """,
            """
            import typing

            class Foo:
                @staticmethod
                def bar(name: str) -> typing.List[bool]:
                    ...
            """,
        )

    def test_class_with_an_undocumented_descriptor(self):
        self.single_mod(
            """
            class Foo:
                @property
                def bar(self):
                    pass
            """,
            """
            import typing

            class Foo:
                bar: typing.Any
            """,
        )

    def test_enum(self):
        self.single_mod(
            """
            class Foo:
                def __init__(self, name):
                    pass

            Foo.Bar = Foo("Bar")
            Foo.Baz = Foo("Baz")
            Foo.Qux = Foo("Qux")
            """,
            """
            class Foo:
                Bar: Foo

                Baz: Foo

                Qux: Foo
            """,
        )

    def test_generic(self):
        self.single_mod(
            """
            class Foo:
                '''
                :generic T:
                :generic U:
                :extends typing.Generic[T]:
                :extends typing.Generic[U]:
                '''

                @property
                def bar(self):
                    '''
                    :type typing.Tuple[T, U]:
                    '''
                    pass

                def baz(self, a):
                    '''
                    :param a U:
                    :rtype T:
                    '''
                    pass
            """,
            """
            import typing

            T = typing.TypeVar('T')
            U = typing.TypeVar('U')

            class Foo(typing.Generic[T], typing.Generic[U]):
                bar: typing.Tuple[T, U]

                def baz(self, a: U) -> T:
                    ...
            """,
        )

    def test_items_with_docstrings(self):
        self.single_mod(
            """
            class Foo:
                '''
                This is the docstring of Foo.

                And it has multiple lines.

                :generic T:
                :extends typing.Generic[T]:
                :param member T:
                '''

                @property
                def bar(self):
                    '''
                    This is the docstring of property `bar`.

                    :type typing.Optional[T]:
                    '''
                    pass

                def baz(self, t):
                    '''
                    This is the docstring of method `baz`.
                    :param t T:
                    :rtype T:
                    '''
                    pass
            """,
            '''
            import typing

            T = typing.TypeVar('T')

            class Foo(typing.Generic[T]):
                """
                This is the docstring of Foo.

                And it has multiple lines.
                """

                bar: typing.Optional[T]
                """
                This is the docstring of property `bar`.
                """

                def baz(self, t: T) -> T:
                    """
                    This is the docstring of method `baz`.
                    """
                    ...


                def __init__(self, member: T) -> None:
                    ...
            ''',
        )

    def test_adds_default_to_optional_types(self):
        # Since PyO3 provides `impl FromPyObject for Option<T>` and maps Python `None` to Rust `None`,
        # you don't have to pass `None` explicitly. Type-stubs also shoudln't require `None`s
        # to be passed explicitly (meaning they should have a default value).

        self.single_mod(
            """
            def foo(bar, qux):
                '''
                :param bar typing.Optional[int]:
                :param qux typing.List[typing.Optional[int]]:
                :rtype int:
                '''
                pass
            """,
            """
            import typing

            def foo(bar: typing.Optional[int] = ..., qux: typing.List[typing.Optional[int]]) -> int:
                ...
            """,
        )

    def test_multiple_mods(self):
        create_module(
            "foo.bar",
            """
            class Bar:
                '''
                :param qux str:
                :rtype None:
                '''
                pass
            """,
        )

        foo = create_module(
            "foo",
            """
            import sys

            bar = sys.modules["foo.bar"]

            class Foo:
                '''
                :param a __root_module_name__.bar.Bar:
                :param b typing.Optional[__root_module_name__.bar.Bar]:
                :rtype None:
                '''

                @property
                def a(self):
                    '''
                    :type __root_module_name__.bar.Bar:
                    '''
                    pass

                @property
                def b(self):
                    '''
                    :type typing.Optional[__root_module_name__.bar.Bar]:
                    '''
                    pass

            __all__ = ["bar", "Foo"]
            """,
        )

        with TemporaryDirectory() as temp_dir:
            foo_path = Path(temp_dir) / "foo.pyi"
            bar_path = Path(temp_dir) / "bar" / "__init__.pyi"

            writer = Writer(foo_path, "foo")
            walk_module(writer, foo)
            writer.dump()

            self.assert_stub(
                foo_path,
                """
                import foo.bar
                import typing

                class Foo:
                    a: foo.bar.Bar

                    b: typing.Optional[foo.bar.Bar]

                    def __init__(self, a: foo.bar.Bar, b: typing.Optional[foo.bar.Bar] = ...) -> None:
                        ...
                """,
            )

            self.assert_stub(
                bar_path,
                """
                class Bar:
                    def __init__(self, qux: str) -> None:
                        ...
                """,
            )

    def single_mod(self, mod_code: str, expected_stub: str) -> None:
        with TemporaryDirectory() as temp_dir:
            mod = create_module("test", mod_code)
            path = Path(temp_dir) / "test.pyi"

            writer = Writer(path, "test")
            walk_module(writer, mod)
            writer.dump()

            self.assert_stub(path, expected_stub)

    def assert_stub(self, path: Path, expected: str) -> None:
        self.assertEqual(path.read_text().strip(), dedent(expected).strip())


if __name__ == "__main__":
    unittest.main()