-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtest_restapi.py
243 lines (175 loc) · 6.22 KB
/
test_restapi.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
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
# -*- coding: utf-8 -*-
# @Author : llc
# @Time : 2021/5/6 16:38
from __future__ import annotations
import json
from http import HTTPStatus
from typing import Optional, List
import pytest
from flask import Response
from pydantic import BaseModel, RootModel, Field
from flask_openapi3 import ExternalDocumentation
from flask_openapi3 import Info, Tag
from flask_openapi3 import OpenAPI
info = Info(title='book API', version='1.0.0')
jwt = {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
security_schemes = {"jwt": jwt}
class NotFoundResponse(BaseModel):
code: int = Field(-1, description="Status Code")
message: str = Field("Resource not found!", description="Exception Information")
def get_operation_id_for_path_callback(*, name: str, path: str, method: str) -> str:
print(name, path, method)
return name
app = OpenAPI(
__name__,
info=info,
security_schemes=security_schemes,
responses={"404": NotFoundResponse},
operation_id_callback=get_operation_id_for_path_callback,
)
app.config["TESTING"] = True
security = [{"jwt": []}]
book_tag = Tag(name='book', description='Book')
class BookQuery(BaseModel):
age: Optional[int] = Field(None, description='Age')
class BookBody(BaseModel):
age: Optional[int] = Field(..., ge=2, le=4, description='Age')
author: str = Field(None, min_length=2, max_length=4, description='Author')
class BookPath(BaseModel):
bid: int = Field(..., description='book id')
class BookBodyWithID(BaseModel):
bid: int = Field(..., description='book id')
age: Optional[int] = Field(None, ge=2, le=4, description='Age')
author: str = Field(None, min_length=2, max_length=4, description='Author')
class BaseResponse(BaseModel):
code: int = Field(0, description="Status Code")
message: str = Field("ok", description="Exception Information")
class BookListResponseV1(BaseResponse):
data: List[BookBodyWithID] = Field(..., description="All the books")
class BookListResponseV2(BaseModel):
books: List[BookBodyWithID] = Field(...)
class BookListResponseV3(RootModel):
root: List[BookBodyWithID]
class BookResponse(BaseModel):
code: int = Field(0, description="Status Code")
message: str = Field("ok", description="Exception Information")
data: BookBodyWithID
@pytest.fixture
def client():
client = app.test_client()
return client
@app.get(
'/book/<int:bid>',
tags=[book_tag],
operation_id="get_book_id",
external_docs=ExternalDocumentation(
url="https://www.openapis.org/",
description="Something great got better, get excited!"),
responses={"200": BookResponse},
security=security
)
def get_book(path: BookPath):
"""Get a book
to get some book by id, like:
http://localhost:5000/book/3
"""
if path.bid == 4:
return NotFoundResponse().model_dump(), 404
@app.get('/book', tags=[book_tag], responses={"200": BookListResponseV1})
def get_books(query: BookBody):
"""get books
to get all books
"""
assert query.age == 3
assert query.author == 'joy'
return {
"code": 0,
"message": "ok",
"data": [
{"bid": 1, "age": query.age, "author": "b1"},
{"bid": 2, "age": query.age, "author": "b2"}
]
}
@app.get('/book_v2', tags=[book_tag], responses={"200": BookListResponseV2})
def get_books_v2(query: BookBody):
"""get books
to get all books (v2)
"""
assert query.age == 3
assert query.author == 'joy'
return {
"books": [
{"bid": 1, "age": query.age, "author": "b1"},
{"bid": 2, "age": query.age, "author": "b2"}
]
}
@app.get('/book_v3', tags=[book_tag], responses={"200": BookListResponseV3})
def get_books_v3(query: BookBody):
"""get books
to get all books (v3)
"""
assert query.age == 3
assert query.author == 'joy'
books = [
{"bid": 1, "age": query.age, "author": "b1"},
{"bid": 2, "age": query.age, "author": "b2"}
]
# A `list` have to be converted to json-format `str` returned as a `Response` object,
# because flask doesn't support returning a `list` as a response
return Response(json.dumps(books), status=200, headers={'Content-Type': 'application/json'})
@app.post('/book', tags=[book_tag], responses={"200": BaseResponse})
def create_book(body: BookBody):
assert body.age == 3
return {"code": 0, "message": "ok"}, HTTPStatus.OK
@app.put('/book/<int:bid>', tags=[book_tag])
def update_book(path: BookPath, body: BookBody):
assert path.bid == 1
assert body.age == 3
return {"code": 0, "message": "ok"}
@app.patch('/book/<int:bid>', tags=[book_tag], doc_ui=False)
def update_book1(path: BookPath, body: BookBody):
assert path.bid == 1
assert body.age == 3
return {"code": 0, "message": "ok"}
@app.delete('/book/<int:bid>', tags=[book_tag], responses={"200": BaseResponse})
def delete_book(path: BookPath):
assert path.bid == 1
return {"code": 0, "message": "ok"}
@app.delete('/book_no_response/<int:bid>', tags=[book_tag], responses={"204": None})
def delete_book_no_response(path: BookPath):
assert path.bid == 1
return b'', 204
def test_openapi(client):
resp = client.get("/openapi/openapi.json")
print(resp.json)
assert resp.status_code == 200
assert resp.json == app.api_doc
def test_get(client):
resp = client.get("/book?age=3&author=joy")
assert resp.status_code == 200
resp_v2 = client.get("/book_v2?age=3&author=joy")
assert resp_v2.status_code == 200
resp_v3 = client.get("/book_v3?age=3&author=joy")
assert resp_v3.status_code == 200
def test_get_by_id_4(client):
resp = client.get("/book/4?age=3&author=joy")
assert resp.status_code == 404
def test_post(client):
resp = client.post("/book", json={"age": 3})
assert resp.status_code == 200
def test_put(client):
resp = client.put("/book/1", json={"age": 3})
assert resp.status_code == 200
def test_patch(client):
resp = client.patch("/book/1", json={"age": 3})
assert resp.status_code == 200
def test_delete(client):
resp = client.delete("/book/1")
assert resp.status_code == 200
def test_delete_no_response(client):
resp = client.delete("/book_no_response/1")
assert resp.status_code == 204