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