Search in sources :

Example 26 with Template

use of org.beetl.core.Template in project beetl2.0 by javamonkey.

the class HtmlTagTest method testNS.

@Test
public void testNS() throws Exception {
    Template t = gt.getTemplate("/tag/html2_template.html");
    this.bind(t, "list", User.getTestUsers());
    String str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/html2_expected.html"), str);
    t = gt.getTemplate("/tag/html2_template.html");
    this.bind(t, "list", User.getTestUsers());
    str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/html2_expected.html"), str);
}
Also used : GroupTemplate(org.beetl.core.GroupTemplate) Template(org.beetl.core.Template) Test(org.testng.annotations.Test)

Example 27 with Template

use of org.beetl.core.Template in project beetl2.0 by javamonkey.

the class HtmlTagTest method testMutilTagInSamePage.

@Test
public void testMutilTagInSamePage() throws Exception {
    Template t = gt.getTemplate("/tag/html3_template.html");
    this.bind(t, "list", User.getTestUsers());
    String str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/html3_expected.html"), str);
    t = gt.getTemplate("/tag/html3_template.html");
    this.bind(t, "list", User.getTestUsers());
    str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/html3_expected.html"), str);
}
Also used : GroupTemplate(org.beetl.core.GroupTemplate) Template(org.beetl.core.Template) Test(org.testng.annotations.Test)

Example 28 with Template

use of org.beetl.core.Template in project beetl2.0 by javamonkey.

the class HtmlTagTest method testCallMutipleTag.

@Test
public void testCallMutipleTag() throws Exception {
    Template t = gt.getTemplate("/tag/html7_template.html");
    String str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/html7_expected.html"), str);
    t = gt.getTemplate("/tag/html7_template.html");
    str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/html7_expected.html"), str);
}
Also used : GroupTemplate(org.beetl.core.GroupTemplate) Template(org.beetl.core.Template) Test(org.testng.annotations.Test)

Example 29 with Template

use of org.beetl.core.Template in project beetl2.0 by javamonkey.

the class HtmlVarBinddingTagTest method testTagSeq.

@Test
public void testTagSeq() throws Exception {
    // 测试按照顺序绑定
    gt.registerTag("tagseqbinding", VarBindingSeqSampleTag.class);
    // todo 会多出一个空行
    Template t = gt.getTemplate("/tag/binding/tagseqbinding_template.html");
    String str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/binding/tagseqbinding_expected.html"), str);
    t = gt.getTemplate("/tag/binding/tagseqbinding_template.html");
    str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/binding/tagseqbinding_expected.html"), str);
}
Also used : Template(org.beetl.core.Template) Test(org.testng.annotations.Test)

Example 30 with Template

use of org.beetl.core.Template in project beetl2.0 by javamonkey.

the class HtmlVarBinddingTagTest method testBindingByAttribute.

@Test
public void testBindingByAttribute() throws Exception {
    // 测试通过特殊属性绑定
    gt.registerTag("tagseqbinding", VarBindingSeqSampleTag.class);
    // todo 会多出一个空行
    Template t = gt.getTemplate("/tag/binding/tagAttr_template.html");
    String str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/binding/tagAttr_expected.html"), str);
    t = gt.getTemplate("/tag/binding/tagAttr_template.html");
    str = t.render();
    AssertJUnit.assertEquals(this.getFileContent("/tag/binding/tagAttr_expected.html"), str);
}
Also used : Template(org.beetl.core.Template) Test(org.testng.annotations.Test)

Aggregations

Template (org.beetl.core.Template)122 Test (org.testng.annotations.Test)96 GroupTemplate (org.beetl.core.GroupTemplate)41 Map (java.util.Map)15 User (org.beetl.core.User)14 HashMap (java.util.HashMap)13 Configuration (org.beetl.core.Configuration)13 FileResourceLoader (org.beetl.core.resource.FileResourceLoader)6 StringTemplateResourceLoader (org.beetl.core.resource.StringTemplateResourceLoader)6 Context (org.beetl.core.Context)5 JSONObject (com.alibaba.fastjson.JSONObject)4 List (java.util.List)4 ClasspathResourceLoader (org.beetl.core.resource.ClasspathResourceLoader)4 VirtualAttributeEval (org.beetl.core.VirtualAttributeEval)3 HttpServletRequest (javax.servlet.http.HttpServletRequest)2 HttpServletResponse (javax.servlet.http.HttpServletResponse)2 BodyContent (org.beetl.core.BodyContent)2 BeetlException (org.beetl.core.exception.BeetlException)2 WebRender (org.beetl.ext.web.WebRender)2 JsonNode (com.fasterxml.jackson.databind.JsonNode)1