您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何Spring Boot中使用MockMvc對象進行單元測試,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
Spring測試框架提供MockMvc對象,可以在不需要客戶端-服務端請求的情況下進行MVC測試,完全在服務端這邊就可以執行Controller的請求,跟啟動了測試服務器一樣。
測試開始之前需要建立測試環境,setup方法被@Before修飾。通過MockMvcBuilders工具,使用WebApplicationContext對象作為參數,創建一個MockMvc對象。
MockMvc對象提供一組工具函數用來執行assert判斷,都是針對web請求的判斷。這組工具的使用方式是函數的鏈式調用,允許程序員將多個測試用例鏈接在一起,并進行多個判斷。在這個例子中我們用到下面的一些工具函數:
perform(get(...))建立web請求。在我們的第三個用例中,通過MockMvcRequestBuilder執行GET請求。
andExpect(...)可以在perform(...)函數調用后多次調用,表示對多個條件的判斷,這個函數的參數類型是ResultMatcher接口,在MockMvcResultMatchers這這個類中提供了很多返回ResultMatcher接口的工具函數。這個函數使得可以檢測同一個web請求的多個方面,包括HTTP響應狀態碼(response status),響應的內容類型(content type),會話中存放的值,檢驗重定向、model或者header的內容等等。這里需要通過第三方庫json-path檢測JSON格式的響應數據:檢查json數據包含正確的元素類型和對應的值,例如jsonPath("$.name").value("中文測試")用于檢查在根目錄下有一個名為name的節點,并且該節點對應的值是“testuser”。
本文對rest api的開發不做詳細描述,如需了解可以參考 Spring Boot實戰之Rest接口開發及數據庫基本操作
1、修改pom.xml,添加依賴庫json-path,用于檢測JSON格式的響應數據
<dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> </dependency>
2、添加用戶數據模型UserInfo.java
package com.xiaofangtech.sunt.bean; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.validation.constraints.Size; @Entity @Table(name="t_userinfo") public class UserInfo { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @Size(min=0, max=32) private String name; private Integer age; @Size(min=0, max=255) private String address; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } }
3、添加控制器UserController.java,用于實現對用戶的增刪改查
package com.xiaofangtech.sunt.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.jpa.repository.Modifying; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import com.xiaofangtech.sunt.bean.UserInfo; import com.xiaofangtech.sunt.repository.UserInfoRepository; import com.xiaofangtech.sunt.utils.*; @RestController @RequestMapping("user") public class UserController { @Autowired private UserInfoRepository userRepositoy; /*** * 根據用戶id,獲取用戶信息 * @param id * @return */ @RequestMapping(value="getuser", method=RequestMethod.GET) public Object getUser(Long id) { UserInfo userEntity = userRepositoy.findOne(id); ResultMsg resultMsg = new ResultMsg(ResultStatusCode.OK.getErrcode(), ResultStatusCode.OK.getErrmsg(), userEntity); return resultMsg; } /*** * 獲取所有用戶列表 * @return */ @RequestMapping(value="getalluser", method=RequestMethod.GET) public Object getUserList() { List<UserInfo> userEntities = (List<UserInfo>) userRepositoy.findAll(); ResultMsg resultMsg = new ResultMsg(ResultStatusCode.OK.getErrcode(), ResultStatusCode.OK.getErrmsg(), userEntities); return resultMsg; } /*** * 新增用戶信息 * @param userEntity * @return */ @Modifying @RequestMapping(value="adduser", method=RequestMethod.POST) public Object addUser(@RequestBody UserInfo userEntity) { userRepositoy.save(userEntity); ResultMsg resultMsg = new ResultMsg(ResultStatusCode.OK.getErrcode(), ResultStatusCode.OK.getErrmsg(), userEntity); return resultMsg; } /*** * 更新用戶信息 * @param userEntity * @return */ @Modifying @RequestMapping(value="updateuser", method=RequestMethod.PUT) public Object updateUser(@RequestBody UserInfo userEntity) { UserInfo user = userRepositoy.findOne(userEntity.getId()); if (user != null) { user.setName(userEntity.getName()); user.setAge(userEntity.getAge()); user.setAddress(userEntity.getAddress()); userRepositoy.save(user); } ResultMsg resultMsg = new ResultMsg(ResultStatusCode.OK.getErrcode(), ResultStatusCode.OK.getErrmsg(), user); return resultMsg; } /*** * 刪除用戶 * @param id * @return */ @Modifying @RequestMapping(value="deleteuser", method=RequestMethod.DELETE) public Object deleteUser(Long id) { try { userRepositoy.delete(id); } catch(Exception exception) { } ResultMsg resultMsg = new ResultMsg(ResultStatusCode.OK.getErrcode(), ResultStatusCode.OK.getErrmsg(), null); return resultMsg; } }
4、修改測試類,添加對以上接口進行單元測試的測試用例
package com.xiaofangtech.sunt; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.SpringApplicationConfiguration; import org.springframework.http.MediaType; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; import com.fasterxml.jackson.databind.ObjectMapper; import com.xiaofangtech.sunt.bean.UserInfo; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; import static org.hamcrest.Matchers.*; //這是JUnit的注解,通過這個注解讓SpringJUnit4ClassRunner這個類提供Spring測試上下文。 @RunWith(SpringJUnit4ClassRunner.class) //這是Spring Boot注解,為了進行集成測試,需要通過這個注解加載和配置Spring應用上下 @SpringApplicationConfiguration(classes = SpringJUnitTestApplication.class) @WebAppConfiguration public class SpringJUnitTestApplicationTests { @Autowired private WebApplicationContext context; private MockMvc mockMvc; @Before public void setupMockMvc() throws Exception { mockMvc = MockMvcBuilders.webAppContextSetup(context).build(); } /*** * 測試添加用戶接口 * @throws Exception */ @Test public void testAddUser() throws Exception { //構造添加的用戶信息 UserInfo userInfo = new UserInfo(); userInfo.setName("testuser2"); userInfo.setAge(29); userInfo.setAddress("北京"); ObjectMapper mapper = new ObjectMapper(); //調用接口,傳入添加的用戶參數 mockMvc.perform(post("/user/adduser") .contentType(MediaType.APPLICATION_JSON_UTF8) .content(mapper.writeValueAsString(userInfo))) //判斷返回值,是否達到預期,測試示例中的返回值的結構如下{"errcode":0,"errmsg":"OK","p2pdata":null} .andExpect(status().isOk()) .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8)) //使用jsonPath解析返回值,判斷具體的內容 .andExpect(jsonPath("$.errcode", is(0))) .andExpect(jsonPath("$.p2pdata", notNullValue())) .andExpect(jsonPath("$.p2pdata.id", not(0))) .andExpect(jsonPath("$.p2pdata.name", is("testuser2"))); } /*** * 測試更新用戶信息接口 * @throws Exception */ @Test public void testUpdateUser() throws Exception { //構造添加的用戶信息,更新id為2的用戶的用戶信息 UserInfo userInfo = new UserInfo(); userInfo.setId((long)2); userInfo.setName("testuser"); userInfo.setAge(26); userInfo.setAddress("南京"); ObjectMapper mapper = new ObjectMapper(); mockMvc.perform(put("/user/updateuser") .contentType(MediaType.APPLICATION_JSON_UTF8) .content(mapper.writeValueAsString(userInfo))) //判斷返回值,是否達到預期,測試示例中的返回值的結構如下 //{"errcode":0,"errmsg":"OK","p2pdata":null} .andExpect(status().isOk()) .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8)) .andExpect(jsonPath("$.errcode", is(0))) .andExpect(jsonPath("$.p2pdata", notNullValue())) .andExpect(jsonPath("$.p2pdata.id", is(2))) .andExpect(jsonPath("$.p2pdata.name", is("testuser"))) .andExpect(jsonPath("$.p2pdata.age", is(26))) .andExpect(jsonPath("$.p2pdata.address", is("南京"))); } /*** * 測試根據用戶id獲取用戶信息接口 * @throws Exception */ @Test public void testGetUser() throws Exception { mockMvc.perform(get("/user/getuser?id=2")) .andExpect(status().isOk()) .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8)) .andExpect(jsonPath("$.errcode", is(0))) .andExpect(jsonPath("$.p2pdata", notNullValue())) .andExpect(jsonPath("$.p2pdata.id", is(2))) .andExpect(jsonPath("$.p2pdata.name", is("testuser"))) .andExpect(jsonPath("$.p2pdata.age", is(26))) .andExpect(jsonPath("$.p2pdata.address", is("南京"))); } /*** * 測試獲取用戶列表接口 * @throws Exception */ @Test public void testGetUsers() throws Exception { mockMvc.perform(get("/user/getalluser")) .andExpect(status().isOk()) .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8)) .andExpect(jsonPath("$.errcode", is(0))) .andExpect(jsonPath("$.p2pdata", notNullValue())); } }
上述就是小編為大家分享的如何Spring Boot中使用MockMvc對象進行單元測試了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。