fix(Mock期望): 修改Api的响应时,自动更新Mock期望里【跟随API响应】的内容
修改Api的响应时,自动更新Mock期望里【跟随API响应】的内容
This commit is contained in:
parent
2958ce1291
commit
d8bf400e56
|
@ -282,6 +282,8 @@ public class ApiDefinitionService {
|
||||||
request.setMethod("dubbo://");
|
request.setMethod("dubbo://");
|
||||||
}
|
}
|
||||||
ApiDefinitionWithBLOBs returnModel = updateTest(request);
|
ApiDefinitionWithBLOBs returnModel = updateTest(request);
|
||||||
|
MockConfigService mockConfigService = CommonBeanFactory.getBean(MockConfigService.class);
|
||||||
|
mockConfigService.updateMockReturnMsgByApi(returnModel);
|
||||||
FileUtils.createBodyFiles(request.getRequest().getId(), bodyFiles);
|
FileUtils.createBodyFiles(request.getRequest().getId(), bodyFiles);
|
||||||
return returnModel;
|
return returnModel;
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ import io.metersphere.commons.utils.*;
|
||||||
import io.metersphere.jmeter.utils.ScriptEngineUtils;
|
import io.metersphere.jmeter.utils.ScriptEngineUtils;
|
||||||
import io.metersphere.i18n.Translator;
|
import io.metersphere.i18n.Translator;
|
||||||
import org.apache.commons.collections.CollectionUtils;
|
import org.apache.commons.collections.CollectionUtils;
|
||||||
|
import org.apache.commons.collections.MapUtils;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.apache.ibatis.session.SqlSession;
|
import org.apache.ibatis.session.SqlSession;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
@ -1332,4 +1333,33 @@ public class MockConfigService {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void updateMockReturnMsgByApi(ApiDefinitionWithBLOBs apiDefinitionWithBLOBs) {
|
||||||
|
if(apiDefinitionWithBLOBs == null){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Map<String, String> returnMap = MockApiUtils.getApiResponse(apiDefinitionWithBLOBs.getResponse());
|
||||||
|
if(MapUtils.isEmpty(returnMap) || !returnMap.containsKey("returnMsg")){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
List<MockExpectConfigWithBLOBs> updateList = this.selectMockExpectConfigByApiId(apiDefinitionWithBLOBs.getId());
|
||||||
|
if(CollectionUtils.isNotEmpty(updateList)){
|
||||||
|
for (MockExpectConfigWithBLOBs model: updateList) {
|
||||||
|
if(StringUtils.isNotEmpty(model.getResponse())){
|
||||||
|
try {
|
||||||
|
JSONObject responseObj = JSONObject.parseObject(model.getResponse());
|
||||||
|
if(responseObj.containsKey("responseResult")){
|
||||||
|
JSONObject responseResultObject = responseObj.getJSONObject("responseResult");
|
||||||
|
if(responseResultObject.containsKey("body")){
|
||||||
|
responseResultObject.getJSONObject("body").put("apiRspRaw",returnMap.get("returnMsg"));
|
||||||
|
|
||||||
|
model.setResponse(responseObj.toJSONString());
|
||||||
|
mockExpectConfigMapper.updateByPrimaryKeySelective(model);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}catch (Exception e){}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue