use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive08Test method testDataDriven01.
@Test
public void testDataDriven01() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 1));
testTemplate("reactive08", Collections.singleton("#main"), ctx1, "reactive08-02");
}
use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive08Test method testDataDriven02.
@Test
public void testDataDriven02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 10));
testTemplate("reactive08", Collections.singleton("#main"), ctx1, "reactive08-02");
}
use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test 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));
testTemplate("reactive10", null, ctx1, "reactive10-01");
}
use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenLarge05.
@Test
public void testDataDrivenLarge05() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 11));
testTemplate("reactive10", null, ctx1, "reactive10-02");
}
use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test 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));
testTemplate("reactive10", null, ctx1, "reactive10-04");
}
Aggregations