use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive08Test 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("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 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("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 testDataDrivenLarge03.
@Test
public void testDataDrivenLarge03() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 3));
testTemplate("reactive10", null, ctx1, "reactive10-02");
}
use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenLarge07.
@Test
public void testDataDrivenLarge07() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), 1024));
testTemplate("reactive10", null, ctx1, "reactive10-02");
}
use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive10Test method testDataDrivenTwo06.
@Test
public void testDataDrivenTwo06() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(2), 137));
testTemplate("reactive10", null, ctx1, "reactive10-04");
}
Aggregations