中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot Controller Post接口單元測試示例

發布時間:2020-09-28 20:34:59 來源:腳本之家 閱讀:266 作者:Sam哥哥 欄目:編程語言

概述

在日常的開發中,我們一般會定義一個service層,用于實現業務邏輯,并且針對service層會有與之對應的齊全的覆蓋率高的單元測試。而對于controller層,一般不怎么做單元測試,因為主要的核心業務邏輯都在service層里,controller層只是做轉發,調用service層接口而已。但是還是建議使用單元測試簡單的將controller的方法跑一下,看看轉發和數據轉換的代碼是否能正常工作。

Spring Boot里對controller層進行單元測試非常簡單,只需要幾個注解和一點點輔助代碼即可搞定。

依賴的包

  <dependency>
   <groupId>org.junit.jupiter</groupId>
   <artifactId>junit-jupiter-api</artifactId>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupId>org.junit.jupiter</groupId>
   <artifactId>junit-jupiter-engine</artifactId>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupId>com.alibaba</groupId>
   <artifactId>fastjson</artifactId>
  </dependency>

使用的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("測試controller方法")
 void test() throws Exception {
  User param = new User();
  param.setUserId(1111);
  List<Address> 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 {
}

如果你只是想簡單的跑一下controller層,不想真正的去執行service方法的話,需要使用@MockBean將對應的servicemock掉。

 @MockBean
 private UserService userService;

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

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

TestApplication的代碼很簡單。

@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發送post請求即可。如果controller層的post方法是帶@RequestBody注解的,可以先將入參對象轉換成JSON字符串。這里使用的是fastjson

JSON.toJSONString(param)

經過測試,如上代碼能正常工作。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南昌市| 浠水县| 株洲县| 上杭县| 柳河县| 临澧县| 阿坝县| 内丘县| 赫章县| 沂水县| 洪洞县| 灌阳县| 普兰店市| 海淀区| 蒲江县| 福安市| 永寿县| 阿拉善右旗| 施秉县| 九寨沟县| 梨树县| 资兴市| 金沙县| 黔西县| 平乐县| 眉山市| 特克斯县| 东城区| 榕江县| 平果县| 青神县| 天峨县| 威海市| 四平市| 宝山区| 台中市| 正宁县| 武陟县| 南通市| 泸定县| 虎林市|