适用于组件的Adobe AEM(Adobe Experience Manager)HTL2HTML

时间:2018-11-13 20:15:31

标签: aem

Adob​​e AEM(Adobe Experience Manager)HTL2HTML编译和测试 (AEM 6.1很快将升级到6.3)

我想从HTL组件自动生成HTML 作为构建过程的一部分(使用默认值/和自定义值) 因此我可以提供其他自动化测试和质量保证。 即HTML验证和可访问性质量检查。

是否有Java调用或其他一些命令行工具可以为每个组件生成html代码段或页面。 调用时可以将其合并到构建过程中 mvn全新安装-PautoInstallPackage

我曾考虑过使用硒生成页面,但我怀疑这种方法很慢且容易出错。

感谢您的帮助

迈克

1 个答案:

答案 0 :(得分:0)

您可以使用SlingRequestProcessor在服务器端获取渲染的HTML。

来自@nateyolles blog post

获取Apache Sling中资源的HTML标记。

@SlingServlet(paths={"/bin/foo"})
public class SlingResourceResolutionServlet extends SlingSafeMethodsServlet {

    /** Service to process requests through Sling */
    @Reference
    private SlingRequestProcessor requestProcessor;

    @Override
    protected void doGet(SlingHttpServletRequest request, SlingHttpServletResponse response) throws ServletException, IOException {

        /* The resource path to resolve. Use any selectors or extension. */
        String requestPath = "/content/myapp/us/en/index/jcr:content/myparsys/mycomponent_f93d.html";

        /* 
         * Create a fake request and fake response. The response adds a method to make the HTML accessible.
         * You need the following three files from Apache Sling:
         *
         * https://github.com/apache/sling/blob/trunk/testing/junit/scriptable/src/main/java/org/apache/sling/junit/scriptable/HttpRequest.java
         * https://github.com/apache/sling/blob/trunk/testing/junit/scriptable/src/main/java/org/apache/sling/junit/scriptable/HttpResponse.java
         * https://github.com/apache/sling/blob/trunk/testing/junit/scriptable/src/main/java/org/apache/sling/junit/scriptable/TestServletOutputStream.java
         */
        final HttpRequest req = new HttpRequest(requestPath);
        final HttpResponse resp = new HttpResponse();

        /* Process request through Sling */
        requestProcessor.processRequest(req, resp, request.getResourceResolver());
        String html = resp.getContent();
    }

获取AEM中资源的HTML标记。

@SlingServlet(paths={"/bin/foo"})
public class AemResourceResolutionServlet extends SlingSafeMethodsServlet {

    /** Service to create HTTP Servlet requests and responses */
    @Reference
    private RequestResponseFactory requestResponseFactory;

    /** Service to process requests through Sling */
    @Reference
    private SlingRequestProcessor requestProcessor;

    @Override
    protected void doGet(SlingHttpServletRequest request, SlingHttpServletResponse response) throws ServletException, IOException {

        /* The resource path to resolve. Use any selectors or extension. */
        String requestPath = "/content/myapp/us/en/index/jcr:content/myparsys/mycomponent_f93d.html";

        /* Setup request */
        HttpServletRequest req = requestResponseFactory.createRequest("GET", requestPath);
        WCMMode.DISABLED.toRequest(req);

        /* Setup response */
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        HttpServletResponse resp = requestResponseFactory.createResponse(out);

        /* Process request through Sling */
        requestProcessor.processRequest(req, resp, request.getResourceResolver());
        String html = out.toString();
    }
}