use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive12Test 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("reactive12", null, ctx1, "reactive12-03", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive12Test 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("reactive12", null, ctx1, "reactive12-03", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive12Test method testDataDrivenLarge08.
@Test
public void testDataDrivenLarge08() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums), Integer.MAX_VALUE));
testTemplate("reactive12", null, ctx1, "reactive12-02", true);
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive12Test method testDataDrivenEmpty02.
@Test
public void testDataDrivenEmpty02() throws Exception {
final List<Album> albums = AlbumRepository.findAllAlbums();
final Context ctx1 = new Context();
try {
testTemplate("reactive12", null, ctx1, "reactive12-01", true);
Assert.assertTrue(false);
} catch (final TemplateProcessingException e) {
// When there is no data-driver variable, an exception should be thrown
Assert.assertTrue(true);
}
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive13Test 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, "pref"));
testTemplate("reactive13", null, ctx1, "reactive13-03", true);
}
Aggregations