-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtest_api.py
215 lines (166 loc) · 7.69 KB
/
test_api.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
import requests
import base64
host = "http://127.0.0.1:9898"
file = open('./image/3.png', 'rb').read()
# ===============================================================
# 测试 jsonp,只能使用 b64,不能使用 file
# ===============================================================
api_url = f"{host}/ocr/b64/text"
resp = requests.get(api_url, params = {
"callback": "handle",
"image": base64.b64encode(file).decode(),
})
print(f"jsonp, api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr/b64/json"
resp = requests.get(api_url, params = {
"callback": "handle",
"image": base64.b64encode(file).decode(),
})
print(f"jsonp, api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试 ocr
# ===============================================================
api_url = f"{host}/ocr/file/text"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr/file/json"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr/b64/text"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr/b64/json"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试 old
# ===============================================================
api_url = f"{host}/old/file/text"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/old/file/json"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/old/b64/text"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/old/b64/json"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试 ocr 概率
# ===============================================================
api_url = f"{host}/ocr_probability/file/text"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr_probability/file/json"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr_probability/b64/text"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/ocr_probability/b64/json"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试 old 概率
# ===============================================================
api_url = f"{host}/old_probability/file/text"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/old_probability/file/json"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/old_probability/b64/text"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/old_probability/b64/json"
resp = requests.post(
api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试目标检测
# ===============================================================
file = open('./image/5.jpg', 'rb').read()
api_url = f"{host}/det/file/text"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/det/file/json"
resp = requests.post(api_url, files={'image': file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/det/b64/text"
resp = requests.post(api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/det/b64/json"
resp = requests.post(api_url, json={'image': base64.b64encode(file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试滑块,算法 1
# ===============================================================
target_file = open('image/a.png', 'rb').read()
bg_file = open('image/b.png', 'rb').read()
api_url = f"{host}/match/file/text"
resp = requests.post(
api_url, files={'target': target_file, 'background': bg_file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/match/file/json"
resp = requests.post(
api_url, files={'target': target_file, 'background': bg_file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/match/b64/text"
resp = requests.post(
api_url, json={'target': base64.b64encode(target_file).decode(), 'background': base64.b64encode(bg_file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/match/b64/json"
resp = requests.post(
api_url, json={'target': base64.b64encode(target_file).decode(), 'background': base64.b64encode(bg_file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试滑块,算法 2
# ===============================================================
target_file = open('image/a.png', 'rb').read()
bg_file = open('image/b.png', 'rb').read()
api_url = f"{host}/simple_match/file/text"
resp = requests.post(
api_url, files={'target': target_file, 'background': bg_file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/simple_match/file/json"
resp = requests.post(
api_url, files={'target': target_file, 'background': bg_file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/simple_match/b64/text"
resp = requests.post(
api_url, json={'target': base64.b64encode(target_file).decode(), 'background': base64.b64encode(bg_file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/simple_match/b64/json"
resp = requests.post(
api_url, json={'target': base64.b64encode(target_file).decode(), 'background': base64.b64encode(bg_file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
# ===============================================================
# 测试坑位匹配
# ===============================================================
target_file = open('image/c.jpg', 'rb').read()
bg_file = open('image/d.jpg', 'rb').read()
api_url = f"{host}/compare/file/text"
resp = requests.post(
api_url, files={'target': target_file, 'background': bg_file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/compare/file/json"
resp = requests.post(
api_url, files={'target': target_file, 'background': bg_file})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/compare/b64/text"
resp = requests.post(
api_url, json={'target': base64.b64encode(target_file).decode(), 'background': base64.b64encode(bg_file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")
api_url = f"{host}/compare/b64/json"
resp = requests.post(
api_url, json={'target': base64.b64encode(target_file).decode(), 'background': base64.b64encode(bg_file).decode()})
print(f"api_url={api_url}, resp.text={resp.text}")