Search in sources :

Example 41 with Context

use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive10Test method testDataDrivenOne01.

@Test
public void testDataDrivenOne01() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 1));
    testTemplate("reactive10", null, ctx1, "reactive10-03");
}
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 42 with Context

use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive10Test method testDataDrivenTwo02.

@Test
public void testDataDrivenTwo02() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(2), 2));
    testTemplate("reactive10", null, ctx1, "reactive10-04");
}
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 43 with Context

use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive10Test method testDataDrivenOne08.

@Test
public void testDataDrivenOne08() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), Integer.MAX_VALUE));
    testTemplate("reactive10", null, ctx1, "reactive10-03");
}
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 44 with Context

use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive10Test method testDataDrivenOne02.

@Test
public void testDataDrivenOne02() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 2));
    testTemplate("reactive10", null, ctx1, "reactive10-03");
}
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 45 with Context

use of org.thymeleaf.context.Context in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive10Test method testDataDrivenOne07.

@Test
public void testDataDrivenOne07() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 1024));
    testTemplate("reactive10", null, ctx1, "reactive10-03");
}
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