Search in sources :

Example 66 with Album

use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive13Test 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, "pref"));
    testTemplate("reactive13", null, ctx1, "reactive13-03", true);
}
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 67 with Album

use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive13Test method testDataDrivenEmpty01.

@Test
public void testDataDrivenEmpty01() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(0), 1, "pref"));
    testTemplate("reactive13", null, ctx1, "reactive13-01", true);
}
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 68 with Album

use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive13Test method testDataDrivenTwo07.

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

use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive13Test method testDataDrivenTwo03.

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

use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive13Test method testDataDrivenOne06.

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