真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBootControllerPost接口單元測(cè)試示例

概述

成都創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),綏陽(yáng)網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:綏陽(yáng)等地區(qū)。綏陽(yáng)做網(wǎng)站價(jià)格咨詢:18982081108

在日常的開發(fā)中,我們一般會(huì)定義一個(gè)service層,用于實(shí)現(xiàn)業(yè)務(wù)邏輯,并且針對(duì)service層會(huì)有與之對(duì)應(yīng)的齊全的覆蓋率高的單元測(cè)試。而對(duì)于controller層,一般不怎么做單元測(cè)試,因?yàn)橹饕暮诵臉I(yè)務(wù)邏輯都在service層里,controller層只是做轉(zhuǎn)發(fā),調(diào)用service層接口而已。但是還是建議使用單元測(cè)試簡(jiǎn)單的將controller的方法跑一下,看看轉(zhuǎn)發(fā)和數(shù)據(jù)轉(zhuǎn)換的代碼是否能正常工作。

Spring Boot里對(duì)controller層進(jìn)行單元測(cè)試非常簡(jiǎn)單,只需要幾個(gè)注解和一點(diǎn)點(diǎn)輔助代碼即可搞定。

依賴的包

  
   org.junit.jupiter
   junit-jupiter-api
   test
  
  
   org.junit.jupiter
   junit-jupiter-engine
   test
  
  
   org.springframework.boot
   spring-boot-starter-test
   test
  
  
   com.alibaba
   fastjson
  

使用的Spring Boot 版本

2.0.4.RELEASE

代碼

@ExtendWith(SpringExtension.class)
@SpringBootTest(webEnvironment =SpringBootTest.WebEnvironment.MOCK,classes = TestApplication.class)
@AutoConfigureMockMvc
public class UserControllerTest {
 @Autowired
 private MockMvc mockMvc;
 @MockBean
 private UserService userService;
 @Test
 @DisplayName("測(cè)試controller方法")
 void test() throws Exception {
  User param = new User();
  param.setUserId(1111);
  List
addressList = new ArrayList<>(); Address address = new Address(); address.setName("我的地址"); addressList.add(address); param.setAddressList(addressList); MvcResult mvcResult = mockMvc.perform( post("/xxx/test") .contentType(MediaType.APPLICATION_JSON) .content(JSON.toJSONString(param))) .andReturn(); System.out.println(mvcResult.getResponse().getContentAsString()); } }
@RequestMapping(value = "/xxx", method = RequestMethod.POST)
public Object test(@RequestBody(required = false)User user) throws Exception {
}

如果你只是想簡(jiǎn)單的跑一下controller層,不想真正的去執(zhí)行service方法的話,需要使用@MockBean將對(duì)應(yīng)的servicemock掉。

 @MockBean
 private UserService userService;

使用Spring Boot Test的時(shí)候,它需要一個(gè)ApplicationContext,我們可以在@SpringBootTest注解中使用classes屬性來指定。

@SpringBootTest(webEnvironment =SpringBootTest.WebEnvironment.MOCK,classes = TestApplication.class)

TestApplication的代碼很簡(jiǎn)單。

@SpringBootApplication
public class TestApplication {
 public static void main(String[] args){
  SpringApplicationBuilder builder = new SpringApplicationBuilder();
  builder.environment(new StandardEnvironment());
  builder.sources(TestApplication.class);
  builder.main(TestApplication.class);
  builder.run(args);
 }
}

接下來我們只需要使用MockMvc發(fā)送post請(qǐng)求即可。如果controller層的post方法是帶@RequestBody注解的,可以先將入?yún)?duì)象轉(zhuǎn)換成JSON字符串。這里使用的是fastjson

JSON.toJSONString(param)

經(jīng)過測(cè)試,如上代碼能正常工作。

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)創(chuàng)新互聯(lián)的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接


當(dāng)前題目:SpringBootControllerPost接口單元測(cè)試示例
分享鏈接:http://weahome.cn/article/gjeshc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部