Search in sources :

Example 26 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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 27 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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 28 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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 29 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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 30 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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

Test (org.junit.Test)145 Album (org.thymeleaf.spring5.reactive.data.Album)145 Context (org.thymeleaf.context.Context)141 ReactiveDataDriverContextVariable (org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable)130 HashMap (java.util.HashMap)4 ISpringWebFluxContext (org.thymeleaf.spring5.context.webflux.ISpringWebFluxContext)4 TemplateProcessingException (org.thymeleaf.exceptions.TemplateProcessingException)3