Class UrlRegexRequestMatcher

java.lang.Object
org.springframework.test.web.servlet.htmlunit.UrlRegexRequestMatcher
All Implemented Interfaces:
WebRequestMatcher

public final class UrlRegexRequestMatcher extends Object implements WebRequestMatcher
A WebRequestMatcher that allows matching on WebRequest#getUrl().toExternalForm() using a regular expression.

For example, if you would like to match on the domain code.jquery.com, you might want to use the following.

 WebRequestMatcher cdnMatcher = new UrlRegexRequestMatcher(".*?//code.jquery.com/.*");
 
Since:
4.2
Author:
Rob Winch, Sam Brannen
See Also:
  • Constructor Details

    • UrlRegexRequestMatcher

      public UrlRegexRequestMatcher(String regex)
    • UrlRegexRequestMatcher

      public UrlRegexRequestMatcher(Pattern pattern)
  • Method Details

    • matches

      public boolean matches(com.gargoylesoftware.htmlunit.WebRequest request)
      Description copied from interface: WebRequestMatcher
      Whether this matcher matches on the supplied web request.
      Specified by:
      matches in interface WebRequestMatcher
      Parameters:
      request - the WebRequest to attempt to match on
      Returns:
      true if this matcher matches on the WebRequest