use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class LinkBuilderTest method testLinkBuilderSpringWithECFactory01.
@Test
public void testLinkBuilderSpringWithECFactory01() throws Exception {
final Context ctx = new Context();
ctx.setVariable("one", "This is one");
final TemplateEngine templateEngine = new SpringTemplateEngine();
templateEngine.setTemplateResolver(new StringTemplateResolver());
templateEngine.setLinkBuilder(new TestLinkBuilder());
templateEngine.setEngineContextFactory(new TestEngineContextFactory());
final String result = templateEngine.process("<a th:href='@{/something}'>", ctx);
final String expected = "<a href='[ENGINE: /fromthebuilder/something]'>";
Assert.assertEquals(expected, result);
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive01Test method testList.
@Test
public void testList() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", albums);
testTemplate("reactive01", null, ctx1, "reactive01-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive02Test method testDataDriven04.
@Test
public void testDataDriven04() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 100000));
testTemplate("reactive02", null, ctx1, "reactive02-02");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive02Test method testEmpty.
@Test
public void testEmpty() throws Exception {
final Context ctx1 = new Context();
testTemplate("reactive02", null, ctx1, "reactive02-01");
}
use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive02Test 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("reactive02", null, ctx1, "reactive02-02");
}
Aggregations