Search in sources :

Example 1 with StandardTextInliner

use of org.thymeleaf.standard.inline.StandardTextInliner in project thymeleaf-tests by thymeleaf.

the class WebEngineContextTest method test06.

@Test
public void test06() {
    final IEngineConfiguration configuration = TestTemplateEngineConfigurationBuilder.build();
    final TemplateData templateData1 = TestTemplateDataConfigurationBuilder.build("test01", TemplateMode.HTML);
    final Map<String, Object> requestAttributes = new LinkedHashMap<String, Object>();
    final Map<String, Object[]> requestParameters = new LinkedHashMap<String, Object[]>();
    final HttpServletRequest mockRequest = TestMockServletUtil.createHttpServletRequest("WebVariablesMap", null, requestAttributes, requestParameters, LOCALE);
    final HttpServletResponse mockResponse = TestMockServletUtil.createHttpServletResponse();
    final Map<String, Object> servletContextAttributes = new LinkedHashMap<String, Object>();
    final ServletContext mockServletContext = TestMockServletUtil.createServletContext(servletContextAttributes);
    final WebEngineContext vm = new WebEngineContext(configuration, templateData1, null, mockRequest, mockResponse, mockServletContext, LOCALE, null);
    vm.setVariable("one", "a value");
    Assert.assertEquals("{0:{one=a value}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=a value}(test01)", vm.toString());
    vm.setVariable("one", "two values");
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
    vm.increaseLevel();
    vm.setVariable("one", "hello");
    Assert.assertEquals("{1:{one=hello},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello}(test01)", vm.toString());
    vm.setVariable("two", "twello");
    Assert.assertEquals("{1:{one=hello, two=twello},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello, two=twello}(test01)", vm.toString());
    vm.decreaseLevel();
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
    vm.increaseLevel();
    vm.setVariable("two", "twellor");
    vm.setInliner(new StandardTextInliner(configuration));
    Assert.assertEquals("{1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values, two=twellor}[StandardTextInliner](test01)", vm.toString());
    vm.increaseLevel();
    vm.setVariable("three", "twelloree");
    Assert.assertEquals("{2:{three=twelloree},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[2]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values, two=twellor, three=twelloree}[StandardTextInliner](test01)", vm.toString());
    vm.setVariable("one", "atwe");
    Assert.assertEquals("{2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[2]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}[StandardTextInliner](test01)", vm.toString());
    vm.increaseLevel();
    vm.increaseLevel();
    vm.increaseLevel();
    Assert.assertEquals("{2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[5]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}[StandardTextInliner](test01)", vm.toString());
    vm.setVariable("four", "lotwss");
    Assert.assertEquals("{5:{four=lotwss},2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[5]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree, four=lotwss}[StandardTextInliner](test01)", vm.toString());
    vm.setVariable("two", "itwiii");
    Assert.assertEquals("{5:{four=lotwss, two=itwiii},2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[5]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=itwiii, three=twelloree, four=lotwss}[StandardTextInliner](test01)", vm.toString());
    vm.decreaseLevel();
    Assert.assertEquals("{2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[4]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}[StandardTextInliner](test01)", vm.toString());
    vm.decreaseLevel();
    Assert.assertEquals("{2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[3]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}[StandardTextInliner](test01)", vm.toString());
    vm.decreaseLevel();
    Assert.assertEquals("{2:{three=twelloree, one=atwe},1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[2]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}[StandardTextInliner](test01)", vm.toString());
    vm.decreaseLevel();
    Assert.assertEquals("{1:{two=twellor}[StandardTextInliner],0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values, two=twellor}[StandardTextInliner](test01)", vm.toString());
    vm.decreaseLevel();
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) StandardTextInliner(org.thymeleaf.standard.inline.StandardTextInliner) IEngineConfiguration(org.thymeleaf.IEngineConfiguration) WebEngineContext(org.thymeleaf.context.WebEngineContext) HttpServletResponse(javax.servlet.http.HttpServletResponse) ServletContext(javax.servlet.ServletContext) LinkedHashMap(java.util.LinkedHashMap) Test(org.junit.Test)

Example 2 with StandardTextInliner

use of org.thymeleaf.standard.inline.StandardTextInliner in project thymeleaf-tests by thymeleaf.

the class EngineContextTest method test05.

@Test
public void test05() {
    final IEngineConfiguration configuration = TestTemplateEngineConfigurationBuilder.build();
    final TemplateData templateData1 = TestTemplateDataConfigurationBuilder.build("test01", TemplateMode.HTML);
    final EngineContext vm = new EngineContext(configuration, templateData1, null, LOCALE, null);
    vm.setVariable("one", "a value");
    Assert.assertEquals("{0:{one=a value}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=a value}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.setVariable("one", "two values");
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.removeVariable("one");
    Assert.assertEquals("{0:{}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{}(test01)", vm.toString());
    Assert.assertEquals(Collections.emptySet(), vm.getVariableNames());
    vm.setVariable("one", "two values");
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.increaseLevel();
    vm.setVariable("one", "hello");
    Assert.assertEquals("{1:{one=hello},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.removeVariable("one");
    Assert.assertEquals("{1:{one=(*removed*)},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{}(test01)", vm.toString());
    Assert.assertEquals(Collections.emptySet(), vm.getVariableNames());
    vm.setVariable("one", "hello");
    Assert.assertEquals("{1:{one=hello},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.removeVariable("two");
    Assert.assertEquals("{1:{one=hello},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.setVariable("two", "twello");
    vm.setInliner(new StandardTextInliner(configuration));
    Assert.assertEquals("{1:{one=hello, two=twello}[StandardTextInliner],0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello, two=twello}[StandardTextInliner](test01)", vm.toString());
    Assert.assertEquals(createSet("one", "two"), vm.getVariableNames());
    vm.removeVariable("two");
    Assert.assertEquals("{1:{one=hello}[StandardTextInliner],0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=hello}[StandardTextInliner](test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.removeVariable("one");
    Assert.assertEquals("{1:{one=(*removed*)}[StandardTextInliner],0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{}[StandardTextInliner](test01)", vm.toString());
    Assert.assertEquals(Collections.emptySet(), vm.getVariableNames());
    vm.decreaseLevel();
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
    vm.increaseLevel();
    vm.setVariable("two", "twellor");
    Assert.assertEquals("{1:{two=twellor},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values, two=twellor}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "two"), vm.getVariableNames());
    vm.increaseLevel();
    vm.setVariable("three", "twelloree");
    Assert.assertEquals("{2:{three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[2]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values, two=twellor, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three", "two"), vm.getVariableNames());
    vm.setVariable("one", "atwe");
    Assert.assertEquals("{2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[2]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three", "two"), vm.getVariableNames());
    vm.increaseLevel();
    vm.removeVariable("two");
    Assert.assertEquals("{3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[3]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three"), vm.getVariableNames());
    vm.increaseLevel();
    vm.removeVariable("two");
    Assert.assertEquals("{3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[4]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three"), vm.getVariableNames());
    vm.increaseLevel();
    Assert.assertEquals("{3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[5]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three"), vm.getVariableNames());
    vm.setVariable("four", "lotwss");
    Assert.assertEquals("{5:{four=lotwss},3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[5]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree, four=lotwss}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three", "four"), vm.getVariableNames());
    vm.setVariable("two", "itwiii");
    Assert.assertEquals("{5:{four=lotwss, two=itwiii},3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[5]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree, four=lotwss, two=itwiii}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three", "four", "two"), vm.getVariableNames());
    vm.decreaseLevel();
    Assert.assertEquals("{3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[4]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three"), vm.getVariableNames());
    vm.decreaseLevel();
    Assert.assertEquals("{3:{two=(*removed*)},2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[3]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three"), vm.getVariableNames());
    vm.decreaseLevel();
    Assert.assertEquals("{2:{one=atwe, three=twelloree},1:{two=twellor},0:{one=two values}(test01)}[2]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=atwe, two=twellor, three=twelloree}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "three", "two"), vm.getVariableNames());
    vm.decreaseLevel();
    Assert.assertEquals("{1:{two=twellor},0:{one=two values}(test01)}[1]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values, two=twellor}(test01)", vm.toString());
    Assert.assertEquals(createSet("one", "two"), vm.getVariableNames());
    vm.decreaseLevel();
    Assert.assertEquals("{0:{one=two values}(test01)}[0]", vm.getStringRepresentationByLevel());
    Assert.assertEquals("{one=two values}(test01)", vm.toString());
    Assert.assertEquals(createSet("one"), vm.getVariableNames());
}
Also used : StandardTextInliner(org.thymeleaf.standard.inline.StandardTextInliner) IEngineConfiguration(org.thymeleaf.IEngineConfiguration) EngineContext(org.thymeleaf.context.EngineContext) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)2 IEngineConfiguration (org.thymeleaf.IEngineConfiguration)2 StandardTextInliner (org.thymeleaf.standard.inline.StandardTextInliner)2 LinkedHashMap (java.util.LinkedHashMap)1 ServletContext (javax.servlet.ServletContext)1 HttpServletRequest (javax.servlet.http.HttpServletRequest)1 HttpServletResponse (javax.servlet.http.HttpServletResponse)1 EngineContext (org.thymeleaf.context.EngineContext)1 WebEngineContext (org.thymeleaf.context.WebEngineContext)1