in src/main/java/org/apache/sling/servlethelpers/MockSlingHttpServletRequest.java [774:790]
public String getRequestURI() {
StringBuilder requestUri = new StringBuilder();
if (StringUtils.isNotEmpty(this.getServletPath())) {
requestUri.append(this.getServletPath());
}
if (StringUtils.isNotEmpty(this.getPathInfo())) {
requestUri.append(this.getPathInfo());
}
if (StringUtils.isEmpty(requestUri)) {
return "/";
} else {
return requestUri.toString();
}
}