当前位置: 首页>>代码示例>>Java>>正文


Java JtwigTemplate.inlineTemplate方法代码示例

本文整理汇总了Java中org.jtwig.JtwigTemplate.inlineTemplate方法的典型用法代码示例。如果您正苦于以下问题:Java JtwigTemplate.inlineTemplate方法的具体用法?Java JtwigTemplate.inlineTemplate怎么用?Java JtwigTemplate.inlineTemplate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jtwig.JtwigTemplate的用法示例。


在下文中一共展示了JtwigTemplate.inlineTemplate方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: elseIfConditionWithoutEndCode

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void elseIfConditionWithoutEndCode() throws Exception {
    JtwigTemplate jtwigTemplate = JtwigTemplate.inlineTemplate("{% if (true) %}{% elseif (true) ko{% endif %}");
    expectedException.expect(ParseException.class);
    expectedException.expectMessage(containsString("If condition code island not closed"));
    jtwigTemplate.render(newModel());
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:8,代码来源:IfConditionTest.java

示例2: nonExistingWithoutNames

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void nonExistingWithoutNames() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate("{{ callMeBaby('test', 1) }}");

    expectedException.expect(CalculationException.class);
    expectedException.expectMessage(containsString("Unable to resolve function 'callMeBaby' with arguments [test, 1]"));

    template.render(JtwigModel.newModel());
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:10,代码来源:NonExistingFunctionTest.java

示例3: nullPointerException

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void nullPointerException() throws Exception {
    JtwigTemplate jtwigTemplate = JtwigTemplate.inlineTemplate("{% if test.value.internal %}KO{% else %}OK{% endif %}");

    String result1 = jtwigTemplate.render(JtwigModel.newModel().with("test", new TestBean(null)));
    String result2 = jtwigTemplate.render(JtwigModel.newModel().with("test", new TestBean(null)));

    assertThat(result1, is("OK"));
    assertThat(result2, is("OK")); // testing cache
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:11,代码来源:Issue328Test.java

示例4: cachingPropertyResolutionWithDistinctModels

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void cachingPropertyResolutionWithDistinctModels () {
    JtwigTemplate template = JtwigTemplate.inlineTemplate("{{ value.key }}");

    String result1 = template.render(JtwigModel.newModel().with("value", new SubModelA()));
    String result2 = template.render(JtwigModel.newModel().with("value", new SubModelB()));

    assertThat(result1, is("A"));
    assertThat(result2, is("B"));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:11,代码来源:Issue336Test.java

示例5: invalidForWithoutVariable

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void invalidForWithoutVariable() throws Exception {
    JtwigTemplate jtwigTemplate = JtwigTemplate.inlineTemplate("{% for in list %}{{k}}={{v}} {% endfor %}");
    expectedException.expect(ParseException.class);
    expectedException.expectMessage(containsString("Expecting a variable name in for loop"));

    jtwigTemplate.render(newModel());
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:ForTest.java

示例6: includingFirstAvailableOfFallbacks

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void includingFirstAvailableOfFallbacks() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate("{% include ['memory:b', 'memory:a'] %}", configuration()
            .resources().resourceLoaders().add(new TypedResourceLoader(MEMORY, InMemoryResourceLoader
                    .builder()
                    .withResource("a", "{{ 'a' }}")
                    .withResource("b", "{{ 'b' }}")
                    .build())).and().and()
            .build()
    );

    String result = template.render(newModel());

    assertThat(result, is("b"));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:16,代码来源:IncludeTest.java

示例7: simpleFlush

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void simpleFlush() throws Exception {
    OutputStream outputStream = mock(OutputStream.class);

    JtwigTemplate result = JtwigTemplate.inlineTemplate("{% flush %}");
    result.render(JtwigModel.newModel(), outputStream);

    verify(outputStream).flush();
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:10,代码来源:FlushNodeTest.java

示例8: simpleIfSharedContext

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void simpleIfSharedContext() throws Exception {
    JtwigTemplate jtwigTemplate = JtwigTemplate.inlineTemplate("{% set a = 2 %}{% if (true) %}{% set a = 1 %}{% endif %}{{ a }}");

    String result = jtwigTemplate.render(newModel());

    assertThat(result, is("1"));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:IfConditionTest.java

示例9: includeShouldExportModelAndExtraData

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void includeShouldExportModelAndExtraData() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate("{% include 'memory:a' with { joao: 'Melo' } %}", configuration()
            .resources().resourceLoaders().add(new TypedResourceLoader(MEMORY, InMemoryResourceLoader.builder()
                    .withResource("a", "{{ name }} {{ joao }}")
                    .build())).and().and()
            .build()
    );

    String result = template.render(newModel().with("name", "Hello"));

    assertThat(result, is("Hello Melo"));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:14,代码来源:IncludeTest.java

示例10: outputWithStripLeftWhiteSpace

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void outputWithStripLeftWhiteSpace() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate(" {{- variable }} ");

    String result = template.render(newModel().with("variable", "hello"));

    assertThat(result, is("hello "));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:OutputTest.java

示例11: output

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void output() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate(" {{ variable }} ");

    String result = template.render(newModel().with("variable", "hello"));

    assertThat(result, is(" hello "));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:OutputTest.java

示例12: outputWithStripBothWhiteSpace

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void outputWithStripBothWhiteSpace() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate(" {{- variable -}} ");

    String result = template.render(newModel().with("variable", "hello"));

    assertThat(result, is("hello"));
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:OutputTest.java

示例13: ifConditionIncorrectElseIf

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void ifConditionIncorrectElseIf() throws Exception {
    // For the time being we will use this, but we might want to improve our messages and try to check the if syntax
    JtwigTemplate jtwigTemplate = JtwigTemplate.inlineTemplate("{% if (false) %}ko{% else if (true) %}ok{% endif %}");
    expectedException.expect(ParseException.class);
    expectedException.expectMessage(containsString("Expecting ending of else block"));
    jtwigTemplate.render(newModel());
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:IfConditionTest.java

示例14: blockMissingEndTag

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void blockMissingEndTag() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate("{% block one %}hello");
    expectedException.expect(ParseException.class);
    expectedException.expectMessage(containsString("Missing endblock tag"));

    template.render(newModel());
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:BlockTest.java

示例15: blockDifferentNames

import org.jtwig.JtwigTemplate; //导入方法依赖的package包/类
@Test
public void blockDifferentNames() throws Exception {
    JtwigTemplate template = JtwigTemplate.inlineTemplate("{% block one %}hello{% endblock name %}");
    expectedException.expect(ParseException.class);
    expectedException.expectMessage(containsString("Expecting block 'one' to end with the same identifier but found 'name' instead"));

    template.render(newModel());
}
 
开发者ID:jtwig,项目名称:jtwig-core,代码行数:9,代码来源:BlockTest.java


注:本文中的org.jtwig.JtwigTemplate.inlineTemplate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。