亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

更多QQ空间微信QQ好友腾讯朋友复制链接
您的位置:首頁/技術文章
文章詳情頁

Spring Boot Rest控制器單元測試過程解析

【字号: 作者:豬豬瀏覽:56日期:2023-09-18 14:40:12

Spring Boot提供了一種為Rest Controller文件編寫單元測試的簡便方法。在SpringJUnit4ClassRunner和MockMvc的幫助下,可以創建一個Web應用程序上下文來為Rest Controller文件編寫單元測試。單元測試應該寫在src/test/java目錄下,用于編寫測試的類路徑資源應該放在src/test/resources目錄下。對于編寫單元測試,需要在構建配置文件中添加Spring Boot Starter Test依賴項,如下所示。

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope></dependency>

XML

Gradle用戶可以在build.gradle 文件中添加以下依賴項。

testCompile(‘org.springframework.boot:spring-boot-starter-test‘)

在編寫測試用例之前,應該先構建RESTful Web服務。 有關構建RESTful Web服務的更多信息,請參閱本教程中給出的相同章節。

編寫REST控制器的單元測試

在本節中,看看如何為REST控制器編寫單元測試。

首先,需要創建用于通過使用MockMvc創建Web應用程序上下文的Abstract類文件,并定義mapToJson()和mapFromJson()方法以將Java對象轉換為JSON字符串并將JSON字符串轉換為Java對象。

package com.yiibai.demo;import java.io.IOException;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;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.core.JsonParseException;import com.fasterxml.jackson.core.JsonProcessingException;import com.fasterxml.jackson.databind.JsonMappingException;import com.fasterxml.jackson.databind.ObjectMapper;@RunWith(SpringJUnit4ClassRunner.class)@SpringBootTest(classes = DemoApplication.class)@WebAppConfigurationpublic abstract class AbstractTest { protected MockMvc mvc; @Autowired WebApplicationContext webApplicationContext; protected void setUp() { mvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); } protected String mapToJson(Object obj) throws JsonProcessingException { ObjectMapper objectMapper = new ObjectMapper(); return objectMapper.writeValueAsString(obj); } protected <T> T mapFromJson(String json, Class<T> clazz) throws JsonParseException, JsonMappingException, IOException { ObjectMapper objectMapper = new ObjectMapper(); return objectMapper.readValue(json, clazz); }}

接下來,編寫一個擴展AbstractTest類的類文件,并為每個方法(如GET,POST,PUT和DELETE)編寫單元測試。

下面給出了GET API測試用例的代碼。 此API用于查看產品列表。

@Testpublic void getProductsList() throws Exception { String uri = '/products'; MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.get(uri) .accept(MediaType.APPLICATION_JSON_VALUE)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(200, status); String content = mvcResult.getResponse().getContentAsString(); Product[] productlist = super.mapFromJson(content, Product[].class); assertTrue(productlist.length > 0);}

POST API測試用例的代碼如下。 此API用于創建產品。

@Testpublic void createProduct() throws Exception { String uri = '/products'; Product product = new Product(); product.setId('3'); product.setName('Ginger'); String inputJson = super.mapToJson(product); MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.post(uri) .contentType(MediaType.APPLICATION_JSON_VALUE).content(inputJson)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(201, status); String content = mvcResult.getResponse().getContentAsString(); assertEquals(content, 'Product is created successfully');}

下面給出了PUT API測試用例的代碼。 此API用于更新現有產品。

@Testpublic void updateProduct() throws Exception { String uri = '/products/2'; Product product = new Product(); product.setName('Lemon'); String inputJson = super.mapToJson(product); MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.put(uri) .contentType(MediaType.APPLICATION_JSON_VALUE).content(inputJson)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(200, status); String content = mvcResult.getResponse().getContentAsString(); assertEquals(content, 'Product is updated successsfully');}

Delete API測試用例的代碼如下。 此API將刪除現有產品。

@Testpublic void deleteProduct() throws Exception { String uri = '/products/2'; MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.delete(uri)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(200, status); String content = mvcResult.getResponse().getContentAsString(); assertEquals(content, 'Product is deleted successsfully');}

完整的控制器測試類文件代碼如下 -

package com.yiibai.demo;import static org.junit.Assert.assertEquals;import static org.junit.Assert.assertTrue;import org.junit.Before;import org.junit.Test;import org.springframework.http.MediaType;import org.springframework.test.web.servlet.MvcResult;import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;import com.yiibai.demo.model.Product;public class ProductServiceControllerTest extends AbstractTest { @Override @Before public void setUp() { super.setUp(); } @Test public void getProductsList() throws Exception { String uri = '/products'; MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.get(uri) .accept(MediaType.APPLICATION_JSON_VALUE)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(200, status); String content = mvcResult.getResponse().getContentAsString(); Product[] productlist = super.mapFromJson(content, Product[].class); assertTrue(productlist.length > 0); } @Test public void createProduct() throws Exception { String uri = '/products'; Product product = new Product(); product.setId('3'); product.setName('Ginger'); String inputJson = super.mapToJson(product); MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.post(uri) .contentType(MediaType.APPLICATION_JSON_VALUE) .content(inputJson)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(201, status); String content = mvcResult.getResponse().getContentAsString(); assertEquals(content, 'Product is created successfully'); } @Test public void updateProduct() throws Exception { String uri = '/products/2'; Product product = new Product(); product.setName('Lemon'); String inputJson = super.mapToJson(product); MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.put(uri) .contentType(MediaType.APPLICATION_JSON_VALUE) .content(inputJson)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(200, status); String content = mvcResult.getResponse().getContentAsString(); assertEquals(content, 'Product is updated successsfully'); } @Test public void deleteProduct() throws Exception { String uri = '/products/2'; MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.delete(uri)).andReturn(); int status = mvcResult.getResponse().getStatus(); assertEquals(200, status); String content = mvcResult.getResponse().getContentAsString(); assertEquals(content, 'Product is deleted successsfully'); }}

創建一個可執行的JAR文件,并使用下面給出的Maven或Gradle命令運行Spring Boot應用程序 -

對于Maven,可以使用下面給出的命令

mvn clean install

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Spring
相關文章:
主站蜘蛛池模板: 亚洲欧美在线观看首页 | 亚洲欧美在线观看91偷拍 | 污黄视频在线观看 | 清草在线视频精品 | 国产裸舞凸点福利小视频 | 中文字字幕码一二三区 | 国产免费一区二区三区免费视频 | 国产成人精品女人不卡在线 | 日韩欧美制服 | 欧美亚洲国产精品久久高清 | 日韩黄色免费 | 精品国产呦系列在线看 | 欧美精品成人一区二区视频一 | 国产精品久久久久国产精品 | 免费在线a | 亚洲免费高清 | 午夜影院一区二区三区 | 免费成人黄色片 | 久久久精| 国产做受视频激情播放 | 亚洲香蕉毛片久久网站老妇人 | 亚洲1314| 黄色毛片儿 | 日韩欧美国产中文 | 中国美女做爰视频高清 | 黄色变态网站 | 国产v视频 | 非洲一级毛片又粗又长aaaa | 国产美女福利视频福利 | 一区二区国产精品 | 在线观看www妖精免费福利视频 | 免费观看黄色一级片 | 国产乱码 | 一区毛片 | 91免费观看视频 | 6080yy午夜不卡一二三区久久 | 亚洲成人精品 | 日本成人黄色片 | 麻豆视频在线观看 | 日韩精品久久久久久久电影99爱 | 久久爱91|