-
-
Notifications
You must be signed in to change notification settings - Fork 282
/
Copy pathtest_openapi.py
69 lines (52 loc) · 2.3 KB
/
test_openapi.py
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
import datetime
from dataclasses import dataclass
from typing import Optional
from robyn.openapi import OpenAPI, OpenAPIInfo
from robyn.types import JSONResponse
@dataclass
class DateResponseModel(JSONResponse):
date: datetime.datetime
optional_date: Optional[datetime.date] = None
def test_datetime_schema_object():
"""Test the schema generation for datetime types"""
openapi = OpenAPI(info=OpenAPIInfo())
schema = openapi.get_schema_object("test", datetime.datetime)
assert schema["type"] == "string"
assert schema["format"] == "date-time"
schema = openapi.get_schema_object("test", datetime.date)
assert schema["type"] == "string"
assert schema["format"] == "date"
def test_datetime_response_object():
"""Test the schema generation for response objects containing datetime fields"""
openapi = OpenAPI(info=OpenAPIInfo())
schema = openapi.get_schema_object("test", DateResponseModel)
assert schema["type"] == "object"
assert "properties" in schema
assert schema["properties"]["date"]["type"] == "string"
assert schema["properties"]["date"]["format"] == "date-time"
assert schema["properties"]["optional_date"]["anyOf"] == [{"type": "string", "format": "date"}, {"type": "null"}]
def test_datetime_path_object():
"""Test the OpenAPI path object generation for datetime return types"""
openapi = OpenAPI(info=OpenAPIInfo())
_, path_obj = openapi.get_path_obj(
endpoint="/test",
name="Test Endpoint",
description="Test description",
tags=["test"],
query_params=None,
request_body=None,
return_annotation=datetime.datetime,
)
assert path_obj["responses"]["200"]["content"]["application/json"]["schema"]["type"] == "string"
assert path_obj["responses"]["200"]["content"]["application/json"]["schema"]["format"] == "date-time"
_, path_obj = openapi.get_path_obj(
endpoint="/test",
name="Test Endpoint",
description="Test description",
tags=["test"],
query_params=None,
request_body=None,
return_annotation=datetime.date,
)
assert path_obj["responses"]["200"]["content"]["application/json"]["schema"]["type"] == "string"
assert path_obj["responses"]["200"]["content"]["application/json"]["schema"]["format"] == "date"