use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive06Test 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("reactive06", null, ctx1, "reactive06-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive06Test 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("reactive06", null, ctx1, "reactive06-02");
}
use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.
the class Spring5Reactive07Test method testFullFormBean.
@Test
public void testFullFormBean() throws Exception {
final Album album = new Album(100, "Whatever");
final Map<String, Object> model = new HashMap<String, Object>();
model.put("album", album);
final ISpringWebFluxContext context = ReactiveTestUtils.buildReactiveContext(model);
testTemplate("reactive07", null, context, "reactive07-02");
}
use of org.thymeleaf.spring5.reactive.data.Album 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.reactive.data.Album 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");
}
Aggregations