use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class TemplateEngineTest method testDefaultTemplateResolver05.
@Test
public void testDefaultTemplateResolver05() {
final TemplateEngine templateEngine = new TemplateEngine();
final Context context = new Context();
context.setLocale(Locale.ENGLISH);
context.setVariable("one", "this value");
final StringTemplateResolver stringTemplateResolver = new StringTemplateResolver();
stringTemplateResolver.setResolvablePatterns(Collections.singleton("<div*"));
templateEngine.addTemplateResolver(stringTemplateResolver);
final DefaultTemplateResolver defaultTemplateResolver = new DefaultTemplateResolver();
defaultTemplateResolver.setTemplate("<p>inserted!</p>");
templateEngine.addTemplateResolver(defaultTemplateResolver);
templateEngine.initialize();
Assert.assertEquals("<div>some text <p><p>inserted!</p></p> other text</div>", templateEngine.process("<div>some text <p th:insert=\"nonexisting\">...</p> other text</div>", context));
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive05Test method testEmpty.
@Test
public void testEmpty() throws Exception {
final Context ctx1 = new Context();
testTemplate("reactive05", null, ctx1, "reactive05-01");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive05Test method testDataDriven01.
@Test
public void testDataDriven01() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 1));
testTemplate("reactive05", null, ctx1, "reactive05-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive06Test method testDataDriven03.
@Test
public void testDataDriven03() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 100));
testTemplate("reactive06", null, ctx1, "reactive06-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive08Test method testList.
@Test
public void testList() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", albums);
testTemplate("reactive08", Collections.singleton("#main"), ctx1, "reactive08-02");
}
Aggregations