91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

在SpringBoot中怎么對restful api進行單元測試

發布時間:2020-12-04 16:42:41 來源:億速云 閱讀:202 作者:Leah 欄目:編程語言

在SpringBoot中怎么對restful api進行單元測試?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1.添加Springboot測試注解

@RunWith(SpringRunner.class)
@SpringBootTest
public class UserControllerTest {
}

2.偽造mvc環境

 // 注入Spring 工廠
  @Autowired
  private WebApplicationContext wac;
 //偽造mvc環境
  private MockMvc mockMvc;
  @Before
  public void setup(){
    mockMvc = MockMvcBuilders.webAppContextSetup(wac).build();
  }

3.引入靜態方法

import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

3.編寫測試方法

@Test
  public void whenXXXXSuccess() throws Exception {
    //模擬發送請求
    String result =
    mockMvc.perform(get("/user") //發往/user的get請求,可以換成post,put,delete方法執行相應請求
            .param("username","xxx") //get請求時填寫參數的位置
            .contentType(MediaType.APPLICATION_JSON_UTF8) //utf編碼
            .content(content)) //post和put請求填寫參數的位置
        .andExpect(status().isOk())
        .andExpect(jsonPath("$.length()").value(3)) //期望的json返回結果
        .andReturn().getResponse().getContentAsString(); //對返回字符串的json內容進行判斷
    log.info(result);
  }

看完上述內容,你們掌握在SpringBoot中怎么對restful api進行單元測試的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

南充市| 阿尔山市| 抚州市| 屏东市| 休宁县| 绩溪县| 长丰县| 海安县| 汝南县| 高青县| 法库县| 华蓥市| 邹平县| 滦南县| 康定县| 彭山县| 黄骅市| 大新县| 健康| 龙口市| 青龙| 泌阳县| 崇明县| 富顺县| 维西| 壶关县| 颍上县| 巫山县| 叙永县| 伊金霍洛旗| 武宁县| 黄石市| 杨浦区| 天祝| 文成县| 洞头县| 扎兰屯市| 轮台县| 宁明县| 赣榆县| 荥经县|