fix(接口测试): 修复部分接口导出swagger文件报错问题
--bug=1022261 --user=郭雨琦 https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001022261
This commit is contained in:
parent
fab5f03873
commit
365164eb9b
|
@ -998,17 +998,19 @@ public class Swagger3Parser extends SwaggerAbstractParser {
|
|||
|
||||
// 返回code
|
||||
JSONArray statusCode = response.optJSONArray("statusCode");
|
||||
for (int i = 0; i < statusCode.length(); i++) {
|
||||
JSONObject statusCodeInfo = new JSONObject();
|
||||
statusCodeInfo.put("headers", headers);
|
||||
statusCodeInfo.put("content", buildContent(response));
|
||||
statusCodeInfo.put("description", StringUtils.EMPTY);
|
||||
JSONObject jsonObject = statusCode.getJSONObject(i);
|
||||
if (jsonObject.optString("value") != null) {
|
||||
statusCodeInfo.put("description", jsonObject.optString("value"));
|
||||
}
|
||||
if (jsonObject.optString("name") != null) {
|
||||
responseBody.put(jsonObject.optString("name"), statusCodeInfo);
|
||||
if (statusCode != null) {
|
||||
for (int i = 0; i < statusCode.length(); i++) {
|
||||
JSONObject statusCodeInfo = new JSONObject();
|
||||
statusCodeInfo.put("headers", headers);
|
||||
statusCodeInfo.put("content", buildContent(response));
|
||||
statusCodeInfo.put("description", StringUtils.EMPTY);
|
||||
JSONObject jsonObject = statusCode.getJSONObject(i);
|
||||
if (jsonObject.optString("value") != null) {
|
||||
statusCodeInfo.put("description", jsonObject.optString("value"));
|
||||
}
|
||||
if (jsonObject.optString("name") != null) {
|
||||
responseBody.put(jsonObject.optString("name"), statusCodeInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
return responseBody;
|
||||
|
|
Loading…
Reference in New Issue