use of org.apache.sling.testing.mock.sling.servlet.MockRequestPathInfo in project aem-core-cif-components by adobe.
the class ProductPageWithSkuAndUrlKeyTest method testParseSuffixNoSlash.
@Test
public void testParseSuffixNoSlash() {
MockRequestPathInfo pathInfo = new MockRequestPathInfo();
pathInfo.setResourcePath("/page/path");
pathInfo.setSuffix("/foo-bar.html");
ProductUrlFormat.Params parameters = subject.parse(pathInfo, null);
assertEquals("/page/path", parameters.getPage());
assertEquals("foo-bar", parameters.getSku());
assertNull(parameters.getUrlKey());
}
use of org.apache.sling.testing.mock.sling.servlet.MockRequestPathInfo in project sling-org-apache-sling-pipes by apache.
the class CommandExecutorImplTest method testRawServlet.
String testRawServlet(Map<String, Object> params) throws IOException {
MockSlingHttpServletRequest request = context.request();
MockSlingHttpServletResponse response = context.response();
request.setParameterMap(params);
MockRequestPathInfo pathInfo = (MockRequestPathInfo) request.getRequestPathInfo();
pathInfo.setExtension("json");
request.setMethod("POST");
commands.doPost(request, response);
if (response.getStatus() != 200) {
System.out.println(response.getOutputAsString());
}
assertEquals(200, response.getStatus());
return response.getOutputAsString();
}
use of org.apache.sling.testing.mock.sling.servlet.MockRequestPathInfo in project sling-org-apache-sling-servlets-resolver by apache.
the class ScriptSelection2Test method prepareRequest.
@NotNull
private SlingHttpServletRequest prepareRequest(@Nullable String method, @NotNull Resource resource, @Nullable String selectorString, @NotNull String extension) {
MockSlingHttpServletRequest request = new MockSlingHttpServletRequest(context.resourceResolver(), context.bundleContext());
if (StringUtils.isEmpty(method)) {
request.setMethod("GET");
} else {
request.setMethod(method);
}
request.setResource(resource);
MockRequestPathInfo requestPathInfo = (MockRequestPathInfo) request.getRequestPathInfo();
if (StringUtils.isNotEmpty(selectorString)) {
requestPathInfo.setSelectorString(selectorString);
}
requestPathInfo.setExtension(extension);
return request;
}
Aggregations