Search in sources :

Example 6 with Context

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);
}
Also used : Context(org.thymeleaf.context.Context) SpringTemplateEngine(org.thymeleaf.spring5.SpringTemplateEngine) TemplateEngine(org.thymeleaf.TemplateEngine) SpringTemplateEngine(org.thymeleaf.spring5.SpringTemplateEngine) StringTemplateResolver(org.thymeleaf.templateresolver.StringTemplateResolver) Test(org.junit.Test)

Example 7 with Context

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");
}
Also used : Context(org.thymeleaf.context.Context) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Example 8 with Context

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");
}
Also used : Context(org.thymeleaf.context.Context) ReactiveDataDriverContextVariable(org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Example 9 with Context

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");
}
Also used : Context(org.thymeleaf.context.Context) Test(org.junit.Test)

Example 10 with Context

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");
}
Also used : Context(org.thymeleaf.context.Context) ReactiveDataDriverContextVariable(org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Aggregations

Context (org.thymeleaf.context.Context)243 Test (org.junit.Test)179 Album (org.thymeleaf.spring5.reactive.data.Album)141 ReactiveDataDriverContextVariable (org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable)130 TemplateEngine (org.thymeleaf.TemplateEngine)30 Locale (java.util.Locale)24 Async (org.springframework.scheduling.annotation.Async)21 ClassLoaderTemplateResolver (org.thymeleaf.templateresolver.ClassLoaderTemplateResolver)13 SpringTemplateEngine (org.thymeleaf.spring5.SpringTemplateEngine)11 MockServletContext (org.springframework.mock.web.MockServletContext)10 RequestContext (org.springframework.web.servlet.support.RequestContext)10 Test (org.junit.jupiter.api.Test)9 WebContext (org.thymeleaf.context.WebContext)9 MessagingException (javax.mail.MessagingException)8 StringTemplateResolver (org.thymeleaf.templateresolver.StringTemplateResolver)7 DefaultTemplateResolver (org.thymeleaf.templateresolver.DefaultTemplateResolver)6 ServletContext (jakarta.servlet.ServletContext)5 ArrayList (java.util.ArrayList)5 MimeMessage (javax.mail.internet.MimeMessage)5 MimeMessageHelper (org.springframework.mail.javamail.MimeMessageHelper)5