Search in sources :

Example 46 with TemplateEngine

use of io.vertx.ext.web.common.template.TemplateEngine in project vertx-web by vert-x3.

the class PebbleTemplateTest method testTemplateHandlerOnFileSystem.

@Test
public void testTemplateHandlerOnFileSystem(TestContext should) {
    TemplateEngine engine = PebbleTemplateEngine.create(vertx);
    final JsonObject context = new JsonObject().put("foo", "badger").put("bar", "fox").put("context", new JsonObject().put("path", "/test-pebble-template3.peb"));
    engine.render(context, "src/test/filesystemtemplates/test-pebble-template3.peb", should.asyncAssertSuccess(render -> {
        should.assertEquals("Hello badger and foxRequest path is /test-pebble-template3.peb", normalizeCRLF(render.toString()));
    }));
}
Also used : TestContext(io.vertx.ext.unit.TestContext) PrintWriter(java.io.PrintWriter) BeforeClass(org.junit.BeforeClass) FileSystemOptions(io.vertx.core.file.FileSystemOptions) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) Vertx(io.vertx.core.Vertx) RunWith(org.junit.runner.RunWith) VertxOptions(io.vertx.core.VertxOptions) Test(org.junit.Test) IOException(java.io.IOException) HashMap(java.util.HashMap) VertxUnitRunner(io.vertx.ext.unit.junit.VertxUnitRunner) File(java.io.File) ArrayList(java.util.ArrayList) TestExtension(io.vertx.ext.web.templ.extension.TestExtension) JsonArray(io.vertx.core.json.JsonArray) PebbleVertxLoader(io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader) PebbleEngine(com.mitchellbosecke.pebble.PebbleEngine) Locale(java.util.Locale) JsonObject(io.vertx.core.json.JsonObject) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) JsonObject(io.vertx.core.json.JsonObject) Test(org.junit.Test)

Example 47 with TemplateEngine

use of io.vertx.ext.web.common.template.TemplateEngine in project vertx-web by vert-x3.

the class PebbleTemplateTest method acceptLanguageHeaderShouldBeUsedWhenSet.

@Test
public void acceptLanguageHeaderShouldBeUsedWhenSet(TestContext should) {
    Locale.setDefault(Locale.US);
    final TemplateEngine engine = PebbleTemplateEngine.create(vertx);
    engine.render(new JsonObject().put("lang", "de-DE"), "src/test/filesystemtemplates/test-pebble-template-i18n.peb", should.asyncAssertSuccess(render2 -> {
        should.assertEquals("Hallo", normalizeCRLF(render2.toString()));
    }));
}
Also used : TestContext(io.vertx.ext.unit.TestContext) PrintWriter(java.io.PrintWriter) BeforeClass(org.junit.BeforeClass) FileSystemOptions(io.vertx.core.file.FileSystemOptions) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) Vertx(io.vertx.core.Vertx) RunWith(org.junit.runner.RunWith) VertxOptions(io.vertx.core.VertxOptions) Test(org.junit.Test) IOException(java.io.IOException) HashMap(java.util.HashMap) VertxUnitRunner(io.vertx.ext.unit.junit.VertxUnitRunner) File(java.io.File) ArrayList(java.util.ArrayList) TestExtension(io.vertx.ext.web.templ.extension.TestExtension) JsonArray(io.vertx.core.json.JsonArray) PebbleVertxLoader(io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader) PebbleEngine(com.mitchellbosecke.pebble.PebbleEngine) Locale(java.util.Locale) JsonObject(io.vertx.core.json.JsonObject) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) JsonObject(io.vertx.core.json.JsonObject) Test(org.junit.Test)

Example 48 with TemplateEngine

use of io.vertx.ext.web.common.template.TemplateEngine in project vertx-web by vert-x3.

the class PebbleTemplateTest method testTemplateHandlerNoExtension.

@Test
public void testTemplateHandlerNoExtension(TestContext should) {
    TemplateEngine engine = PebbleTemplateEngine.create(vertx);
    final JsonObject context = new JsonObject().put("foo", "badger").put("bar", "fox").put("context", new JsonObject().put("path", "/test-pebble-template2.peb"));
    engine.render(context, "somedir/test-pebble-template2", should.asyncAssertSuccess(render -> {
        should.assertEquals("Hello badger and foxRequest path is /test-pebble-template2.peb", normalizeCRLF(render.toString()));
    }));
}
Also used : TestContext(io.vertx.ext.unit.TestContext) PrintWriter(java.io.PrintWriter) BeforeClass(org.junit.BeforeClass) FileSystemOptions(io.vertx.core.file.FileSystemOptions) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) Vertx(io.vertx.core.Vertx) RunWith(org.junit.runner.RunWith) VertxOptions(io.vertx.core.VertxOptions) Test(org.junit.Test) IOException(java.io.IOException) HashMap(java.util.HashMap) VertxUnitRunner(io.vertx.ext.unit.junit.VertxUnitRunner) File(java.io.File) ArrayList(java.util.ArrayList) TestExtension(io.vertx.ext.web.templ.extension.TestExtension) JsonArray(io.vertx.core.json.JsonArray) PebbleVertxLoader(io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader) PebbleEngine(com.mitchellbosecke.pebble.PebbleEngine) Locale(java.util.Locale) JsonObject(io.vertx.core.json.JsonObject) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) JsonObject(io.vertx.core.json.JsonObject) Test(org.junit.Test)

Example 49 with TemplateEngine

use of io.vertx.ext.web.common.template.TemplateEngine in project vertx-web by vert-x3.

the class PebbleTemplateTest method customBuilderShouldRender.

@Test
public void customBuilderShouldRender(TestContext should) {
    final TemplateEngine engine = PebbleTemplateEngine.create(vertx, new PebbleEngine.Builder().extension(new TestExtension()).loader(new PebbleVertxLoader(vertx)).build());
    final JsonObject context = new JsonObject().put("foo", "badger").put("bar", "fox").put("context", new JsonObject().put("path", "/test-pebble-template5.peb"));
    engine.render(context, "src/test/filesystemtemplates/test-pebble-template5.peb", should.asyncAssertSuccess(render -> {
        should.assertEquals("Hello badger and foxString is TESTRequest path is /test-pebble-template5.peb", normalizeCRLF(render.toString()));
    }));
}
Also used : TestContext(io.vertx.ext.unit.TestContext) PrintWriter(java.io.PrintWriter) BeforeClass(org.junit.BeforeClass) FileSystemOptions(io.vertx.core.file.FileSystemOptions) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) Vertx(io.vertx.core.Vertx) RunWith(org.junit.runner.RunWith) VertxOptions(io.vertx.core.VertxOptions) Test(org.junit.Test) IOException(java.io.IOException) HashMap(java.util.HashMap) VertxUnitRunner(io.vertx.ext.unit.junit.VertxUnitRunner) File(java.io.File) ArrayList(java.util.ArrayList) TestExtension(io.vertx.ext.web.templ.extension.TestExtension) JsonArray(io.vertx.core.json.JsonArray) PebbleVertxLoader(io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader) PebbleEngine(com.mitchellbosecke.pebble.PebbleEngine) Locale(java.util.Locale) JsonObject(io.vertx.core.json.JsonObject) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) PebbleVertxLoader(io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader) JsonObject(io.vertx.core.json.JsonObject) TestExtension(io.vertx.ext.web.templ.extension.TestExtension) Test(org.junit.Test)

Example 50 with TemplateEngine

use of io.vertx.ext.web.common.template.TemplateEngine in project vertx-web by vert-x3.

the class PebbleTemplateTest method testTemplateBigAndComplex.

@Test
public void testTemplateBigAndComplex(TestContext should) {
    TemplateEngine engine = PebbleTemplateEngine.create(vertx);
    String bigTemplateExpected = "<html>\n" + "<head>\n" + "    <meta charset=\"utf-8\">\n" + "    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n" + "    <title> Home </title>\n" + "    <meta content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\" name=\"viewport\">\n" + "    <link rel=\"stylesheet\"\n" + "          href=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/bootstrap/css/bootstrap.min.css\">\n" + "    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css\">\n" + "    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css\">\n" + "    <link rel=\"stylesheet\"\n" + "          href=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/plugins/jvectormap/jquery-jvectormap-1.2.2.css\">\n" + "    <link rel=\"stylesheet\"\n" + "          href=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/dist/css/AdminLTE.min.css\">\n" + "    <link rel=\"stylesheet\"\n" + "          href=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/dist/css/skins/_all-skins.min.css\">\n" + "    <script src=\"https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js\"></script>\n" + "    <script src=\"https://oss.maxcdn.com/respond/1.4.2/respond.min.js\"></script>\n" + "</head>\n" + "<body class=\"hold-transition skin-blue sidebar-mini\">\n" + "<div id=\"content\">\n" + "    <div class=\"wrapper\">\n" + "            <header class=\"main-header\">\n" + "        <a href=\"\" class=\"logo\">\n" + "            <span class=\"logo-mini\"><b>A</b>LT</span>\n" + "            <span class=\"logo-lg\"><b>Admin</b>LTE</span>\n" + "        </a>\n" + "        <nav class=\"navbar navbar-static-top\">\n" + "            <a href=\"#\" class=\"sidebar-toggle\" data-toggle=\"offcanvas\" role=\"button\">\n" + "                <span class=\"sr-only\">Toggle navigation</span>\n" + "                <span class=\"icon-bar\"></span>\n" + "                <span class=\"icon-bar\"></span>\n" + "                <span class=\"icon-bar\"></span>\n" + "            </a>\n" + "\n" + "            <div class=\"navbar-custom-menu\">\n" + "                <ul class=\"nav navbar-nav\">\n" + "                    <li class=\"dropdown messages-menu\">\n" + "                        <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n" + "                            <i class=\"fa fa-envelope-o\"></i>\n" + "                            <span class=\"label label-success\">4</span>\n" + "                        </a>\n" + "                        <ul class=\"dropdown-menu\">\n" + "                            <li class=\"header\">You have 4 messages</li>\n" + "                            <li>\n" + "                                <ul class=\"menu\">\n" + "                                    <a href=\"#\">\n" + "                                        <div class=\"pull-left\">\n" + "                                            <img src=\"\" class=\"img-circle\" alt=\"User Image\">\n" + "                                        </div>\n" + "                                        <h4>\n" + "                                            Support Team\n" + "                                            <small><i class=\"fa fa-clock-o\"></i> 5 mins</small>\n" + "                                        </h4>\n" + "                                        <p>Why not buy a new awesome theme?</p>\n" + "                                    </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <div class=\"pull-left\">\n" + "                                                <img src=\"\" class=\"img-circle\" alt=\"User Image\">\n" + "                                            </div>\n" + "                                            <h4>\n" + "                                                AdminLTE Design Team\n" + "                                                <small><i class=\"fa fa-clock-o\"></i> 2 hours</small>\n" + "                                            </h4>\n" + "                                            <p>Why not buy a new awesome theme?</p>\n" + "                                        </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <div class=\"pull-left\">\n" + "                                                <img src=\"\" class=\"img-circle\" alt=\"User Image\">\n" + "                                            </div>\n" + "                                            <h4>\n" + "                                                Developers\n" + "                                                <small><i class=\"fa fa-clock-o\"></i> Today</small>\n" + "                                            </h4>\n" + "                                            <p>Why not buy a new awesome theme?</p>\n" + "                                        </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <div class=\"pull-left\">\n" + "                                                <img src=\"\" class=\"img-circle\" alt=\"User Image\">\n" + "                                            </div>\n" + "                                            <h4>\n" + "                                                Sales Department\n" + "                                                <small><i class=\"fa fa-clock-o\"></i> Yesterday</small>\n" + "                                            </h4>\n" + "                                            <p>Why not buy a new awesome theme?</p>\n" + "                                        </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <div class=\"pull-left\">\n" + "                                                <img src=\"\" class=\"img-circle\" alt=\"User Image\">\n" + "                                            </div>\n" + "                                            <h4>\n" + "                                                Reviewers\n" + "                                                <small><i class=\"fa fa-clock-o\"></i> 2 days</small>\n" + "                                            </h4>\n" + "                                            <p>Why not buy a new awesome theme?</p>\n" + "                                        </a>\n" + "                                    </li>\n" + "                                </ul>\n" + "                            </li>\n" + "                            <li class=\"footer\"><a href=\"#\">See All Messages</a></li>\n" + "                        </ul>\n" + "                    </li>\n" + "                    <li class=\"dropdown notifications-menu\">\n" + "                        <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n" + "                            <i class=\"fa fa-bell-o\"></i>\n" + "                            <span class=\"label label-warning\">10</span>\n" + "                        </a>\n" + "                        <ul class=\"dropdown-menu\">\n" + "                            <li class=\"header\">You have 10 notifications</li>\n" + "                            <li>\n" + "                                <ul class=\"menu\">\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <i class=\"fa fa-users text-aqua\"></i> 5 new members joined today\n" + "                                        </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <i class=\"fa fa-warning text-yellow\"></i> Very long description here that\n" + "                                            may not fit into the\n" + "                                            page and may cause design problems\n" + "                                        </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <i class=\"fa fa-users text-red\"></i> 5 new members joined\n" + "                                        </a>\n" + "                                    </li>\n" + "\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <i class=\"fa fa-shopping-cart text-green\"></i> 25 sales made\n" + "                                        </a>\n" + "                                    </li>\n" + "                                    <li>\n" + "                                        <a href=\"#\">\n" + "                                            <i class=\"fa fa-user text-red\"></i> You changed your username\n" + "                                        </a>\n" + "                                    </li>\n" + "                                </ul>\n" + "                            </li>\n" + "                            <li class=\"footer\"><a href=\"#\">View all</a></li>\n" + "                        </ul>\n" + "                    </li>\n" + "                    <li class=\"dropdown tasks-menu\">\n" + "                        <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n" + "                            <i class=\"fa fa-flag-o\"></i>\n" + "                            <span class=\"label label-danger\">9</span>\n" + "                        </a>\n" + "                        <ul class=\"dropdown-menu\">\n" + "                            <li class=\"header\">You have 9 tasks</li>\n" + "                            <li>\n" + "                                <ul class=\"menu\">\n" + "                                    <a href=\"#\">\n" + "                                        <h3>\n" + "                                            Design some buttons\n" + "                                            <small class=\"pull-right\">20%</small>\n" + "                                        </h3>\n" + "                                        <div class=\"progress xs\">\n" + "                                            <div class=\"progress-bar progress-bar-aqua\" style=\"width: 20%\"\n" + "                                                 role=\"progressbar\" aria-valuenow=\"20\" aria-valuemin=\"0\"\n" + "                                                 aria-valuemax=\"100\">\n" + "                                                <span class=\"sr-only\">20% Complete</span>\n" + "                                            </div>\n" + "                                        </div>\n" + "                                    </a>\n" + "                                    </li>\n" + "                                    <a href=\"#\">\n" + "                                        <h3>\n" + "                                            Create a nice theme\n" + "                                            <small class=\"pull-right\">40%</small>\n" + "                                        </h3>\n" + "                                        <div class=\"progress xs\">\n" + "                                            <div class=\"progress-bar progress-bar-green\" style=\"width: 40%\"\n" + "                                                 role=\"progressbar\" aria-valuenow=\"20\" aria-valuemin=\"0\"\n" + "                                                 aria-valuemax=\"100\">\n" + "                                                <span class=\"sr-only\">40% Complete</span>\n" + "                                            </div>\n" + "                                        </div>\n" + "                                    </a>\n" + "                                    </li>\n" + "                                    <a href=\"#\">\n" + "                                        <h3>\n" + "                                            Some task I need to do\n" + "                                            <small class=\"pull-right\">60%</small>\n" + "                                        </h3>\n" + "                                        <div class=\"progress xs\">\n" + "                                            <div class=\"progress-bar progress-bar-red\" style=\"width: 60%\"\n" + "                                                 role=\"progressbar\" aria-valuenow=\"20\" aria-valuemin=\"0\"\n" + "                                                 aria-valuemax=\"100\">\n" + "                                                <span class=\"sr-only\">60% Complete</span>\n" + "                                            </div>\n" + "                                        </div>\n" + "                                    </a>\n" + "                                    </li>\n" + "                                    <a href=\"#\">\n" + "                                        <h3>\n" + "                                            Make beautiful transitions\n" + "                                            <small class=\"pull-right\">80%</small>\n" + "                                        </h3>\n" + "                                        <div class=\"progress xs\">\n" + "                                            <div class=\"progress-bar progress-bar-yellow\" style=\"width: 80%\"\n" + "                                                 role=\"progressbar\" aria-valuenow=\"20\" aria-valuemin=\"0\"\n" + "                                                 aria-valuemax=\"100\">\n" + "                                                <span class=\"sr-only\">80% Complete</span>\n" + "                                            </div>\n" + "                                        </div>\n" + "                                    </a>\n" + "                                    </li>\n" + "                                </ul>\n" + "                            </li>\n" + "                            <li class=\"footer\">\n" + "                                <a href=\"#\">View all tasks</a>\n" + "                            </li>\n" + "                        </ul>\n" + "                    </li>\n" + "                </ul>\n" + "            </div>\n" + "        </nav>\n" + "    </header>\n" + "    </div>\n" + "</div>\n" + "<div id=\"footer\">\n" + "            Copyright 2014\n" + "    </div>\n" + "\n" + "<script src=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/plugins/jQuery/jquery-2.2.3.min.js\"></script>\n" + "<script src=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/bootstrap/js/bootstrap.min.js\"></script>\n" + "<script src=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/plugins/fastclick/fastclick.js\"></script>\n" + "<script src=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/dist/js/app.min.js\"></script>\n" + "<script src=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/plugins/sparkline/jquery.sparkline.min.js\"></script>\n" + "<script src=\"http://cdn.jsdelivr.net/webjars/org.webjars.bower/adminlte/2.3.8/plugins/slimScroll/jquery.slimscroll.min.js\"></script>\n" + "\n" + "</body>\n" + "</html>";
    final JsonObject context = new JsonObject().put("foo", "badger").put("bar", "fox");
    engine.render(context, "src/test/filesystemtemplates/test-pebble-template4.peb", should.asyncAssertSuccess(render -> {
        should.assertEquals(bigTemplateExpected, normalizeCRLF(render.toString()));
    }));
}
Also used : TestContext(io.vertx.ext.unit.TestContext) PrintWriter(java.io.PrintWriter) BeforeClass(org.junit.BeforeClass) FileSystemOptions(io.vertx.core.file.FileSystemOptions) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) Vertx(io.vertx.core.Vertx) RunWith(org.junit.runner.RunWith) VertxOptions(io.vertx.core.VertxOptions) Test(org.junit.Test) IOException(java.io.IOException) HashMap(java.util.HashMap) VertxUnitRunner(io.vertx.ext.unit.junit.VertxUnitRunner) File(java.io.File) ArrayList(java.util.ArrayList) TestExtension(io.vertx.ext.web.templ.extension.TestExtension) JsonArray(io.vertx.core.json.JsonArray) PebbleVertxLoader(io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader) PebbleEngine(com.mitchellbosecke.pebble.PebbleEngine) Locale(java.util.Locale) JsonObject(io.vertx.core.json.JsonObject) PebbleTemplateEngine(io.vertx.ext.web.templ.pebble.PebbleTemplateEngine) TemplateEngine(io.vertx.ext.web.common.template.TemplateEngine) JsonObject(io.vertx.core.json.JsonObject) Test(org.junit.Test)

Aggregations

TemplateEngine (io.vertx.ext.web.common.template.TemplateEngine)75 Test (org.junit.Test)74 JsonObject (io.vertx.core.json.JsonObject)70 TestContext (io.vertx.ext.unit.TestContext)57 VertxUnitRunner (io.vertx.ext.unit.junit.VertxUnitRunner)57 RunWith (org.junit.runner.RunWith)57 File (java.io.File)53 IOException (java.io.IOException)53 PrintWriter (java.io.PrintWriter)53 Vertx (io.vertx.core.Vertx)52 VertxOptions (io.vertx.core.VertxOptions)52 FileSystemOptions (io.vertx.core.file.FileSystemOptions)52 BeforeClass (org.junit.BeforeClass)52 JsonArray (io.vertx.core.json.JsonArray)16 PebbleTemplateEngine (io.vertx.ext.web.templ.pebble.PebbleTemplateEngine)13 PebbleEngine (com.mitchellbosecke.pebble.PebbleEngine)11 TestExtension (io.vertx.ext.web.templ.extension.TestExtension)11 PebbleVertxLoader (io.vertx.ext.web.templ.pebble.impl.PebbleVertxLoader)11 ArrayList (java.util.ArrayList)11 Assert.assertNotNull (org.junit.Assert.assertNotNull)10