类 MockMvcWebConnection

  • 所有已实现的接口:
    com.gargoylesoftware.htmlunit.WebConnection, AutoCloseable

    public final class MockMvcWebConnection
    extends Object
    implements com.gargoylesoftware.htmlunit.WebConnection
    MockMvcWebConnection enables MockMvc to transform a WebRequest into a WebResponse.

    This is the core integration with HtmlUnit.

    Example usage can be seen below.

     WebClient webClient = new WebClient();
     MockMvc mockMvc = ...
     MockMvcWebConnection webConnection = new MockMvcWebConnection(mockMvc, webClient);
     webClient.setWebConnection(webConnection);
    
     // Use webClient as normal ...
     
    从以下版本开始:
    4.2
    作者:
    Rob Winch, Sam Brannen
    另请参阅:
    WebConnectionHtmlUnitDriver
    • 构造器详细资料

      • MockMvcWebConnection

        public MockMvcWebConnection​(MockMvc mockMvc,
                                    com.gargoylesoftware.htmlunit.WebClient webClient)
        Create a new instance that assumes the context path of the application is "" (i.e., the root context).

        For example, the URL http://localhost/test/this would use "" as the context path.

        参数:
        mockMvc - the MockMvc instance to use; never null
        webClient - the WebClient to use. never null
      • MockMvcWebConnection

        public MockMvcWebConnection​(MockMvc mockMvc,
                                    com.gargoylesoftware.htmlunit.WebClient webClient,
                                    String contextPath)
        Create a new instance with the specified context path.

        The path may be null in which case the first path segment of the URL is turned into the contextPath. Otherwise it must conform to HttpServletRequest.getContextPath() which states that it can be an empty string and otherwise must start with a "/" character and not end with a "/" character.

        参数:
        mockMvc - the MockMvc instance to use (never null)
        webClient - the WebClient to use (never null)
        contextPath - the contextPath to use
    • 方法详细资料

      • setWebClient

        public void setWebClient​(com.gargoylesoftware.htmlunit.WebClient webClient)
      • getResponse

        public com.gargoylesoftware.htmlunit.WebResponse getResponse​(com.gargoylesoftware.htmlunit.WebRequest webRequest)
                                                              throws IOException
        指定者:
        getResponse 在接口中 com.gargoylesoftware.htmlunit.WebConnection
        抛出:
        IOException