使用MockMvc測試controller

來源:互聯網
上載者:User

標籤:exception   servlet   tac   啟動   dem   void   new   新特性   Servle   

  之前我們測試controller的時候僅僅是作為一個pojo來進行簡單的測試,spring3.2後我們可以按照控制器的方式來測試Spring MVC的controller了,這樣的話在測試控制器的時候,就沒有必要再啟動Web伺服器和Web瀏覽器了,下面是測試代碼:

import com.darling.controller.TestController;import org.junit.Test;import org.springframework.test.web.servlet.MockMvc;import org.springframework.test.web.servlet.ResultActions;import org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder;import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;import org.springframework.test.web.servlet.result.MockMvcResultMatchers;import org.springframework.test.web.servlet.setup.MockMvcBuilders;/** *   @author  *   @date 2018/9/5 11:17 *   @description   測試Spring 3.2新增的新的測試特性 */public class TestDemo {    @Test    public void testTestController() throws Exception{        TestController controller = new TestController();        MockMvc mockMvc = MockMvcBuilders.standaloneSetup(controller).build();        MockHttpServletRequestBuilder builder = MockMvcRequestBuilders.get("/test/testJsp");        ResultActions actions = mockMvc.perform(builder);        actions .andExpect(MockMvcResultMatchers.view().name("index"));    }}

由代碼可以看出我們向TestController發出了一個/testJsp的請求並斷言結果檢視的名稱為index;它首先傳遞一個TestController執行個體到MockMvcBuilders.standaloneSetup()並調用build()來構建MockMvc執行個體。然後它使用MockMvc執行個體來執行針對“/”的GET請求並設定期望得到的視圖名稱。如果斷言的視圖名與controller返回的不一致則拋出異常

  這種測試時spring3.2引入的新特性,記錄下來僅作備忘,個人覺得在條件允許的情況下還是比較樂意使用瀏覽器來測試的;

使用MockMvc測試controller

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.