MockMvc模拟的get请求不支持content
作者:互联网
MockMvc模拟的get请求不支持content
一、Http中get请求与post请求的区别
1、get请求
如果浏览器发起的是get请求,url的参数被解析成了查询字符串参数;
2、post请求
如果浏览器发起的是post请求,那么url里不会携带参数,同时通过表单提交的数据会被放在请求体发送给服务器。
二、@SpringBootTest
1、MockMvcRequestBuilders.post
Mock测试框架是Spring官方提供的一个测试框架,这是一个post请求的测试案例
@Test
@Transactional
public void update() throws Exception {
LicProduct licProduct = new LicProduct();
licProduct.setId("1382298674907758593");
licProduct.setPrProductCode("BPM");
licProduct.setPrProductName("BPM");
licProduct.setPrPublicKey("111");
licProduct.setPrPrivateKey("111");
String jsonstr = JSON.toJSONString(licProduct);
RequestBuilder request = MockMvcRequestBuilders.post("/licProduct/product/update")
.contentType(MediaType.APPLICATION_JSON)
.session(session)
.content(jsonstr);
MvcResult mvcResult = mvc.perform(request).andDo(print()).andReturn();
}
运行后可以顺利拿到构造的参数:
2、MockMvcRequestBuilders.get
@Test
@Transactional
public void list() throws Exception {
List<LicProductModule> moduleList = new LicProduct().getModuleList();
ArrayList<LicProductModule> list = new ArrayList<>();
LicProductModule licProductModule = new LicProductModule();
licProductModule.setPrProductId("1382308338080858114");
list.add(licProductModule);
moduleList = list;
String jsonstr = JSON.toJSONString(moduleList.get(0));
RequestBuilder request = MockMvcRequestBuilders.get("/licProductModule/list")
.contentType(MediaType.APPLICATION_JSON)
.session(session)
.content(jsonstr);
MvcResult mvcResult = mvc.perform(request).andDo(print()).andReturn();
}
上述代码是不成立的,get方法里面使用content方法是无法传值的,但是MockMvc测试框架尽然不会抛出异常,我这里做了一次按条件查询,这样导致的结果是所有的数据均被查询到,没有达到最初的预想!
正确的做法是在url里面直接把prProductId的值给带过来,这样是可以顺利把参数发送到后台的!
@Test
@Transactional
public void list() throws Exception {
RequestBuilder request = MockMvcRequestBuilders.get("/licProductModule/list?page=1&size=10&prProductId=1382308469681340417")
.contentType(MediaType.APPLICATION_JSON)
.session(session);
MvcResult mvcResult = mvc.perform(request).andDo(print()).andReturn();
}
作者在写单元测试的时候,没有事先考虑到http请求get和post的区别,白白浪费了不少时间!
标签:MockMvcRequestBuilders,请求,get,licProduct,list,content,MockMvc,post 来源: https://blog.csdn.net/Jianyang_usst/article/details/117261608