expect(request.getRequestURI()).andReturn("/app/cp/servletPath/extra/path/info");
expectNotForwardOrInclude();
replay(request, servletContext);
MappedHttpServletRequest wrapper = new MappedHttpServletRequest(servletContext, request, httpSessionWrapper, new RequestModuleMapping("/sp", "module", "/cp", "/servletPath"), applicationId);
assertEquals("/servletPath", wrapper.getServletPath());
assertEquals("/extra/path/info", wrapper.getPathInfo());
assertEquals("/app/cp", wrapper.getContextPath());
verify(request, servletContext);