Search in sources :

Example 16 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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");
}
Also used : Context(org.thymeleaf.context.Context) ReactiveDataDriverContextVariable(org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Example 17 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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");
}
Also used : Context(org.thymeleaf.context.Context) ReactiveDataDriverContextVariable(org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Example 18 with Album

use of org.thymeleaf.spring5.reactive.data.Album in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive09Test method testEmptyNameFormBean.

@Test
public void testEmptyNameFormBean() throws Exception {
    final Album album = new Album(1, null);
    final Map<String, Object> model = new HashMap<String, Object>();
    model.put("album", album);
    final ISpringWebFluxContext context = ReactiveTestUtils.buildReactiveContext(model, new TestingRequestDataValueProcessor());
    testTemplate("reactive09", null, context, "reactive09-01");
}
Also used : HashMap(java.util.HashMap) Album(org.thymeleaf.spring5.reactive.data.Album) ISpringWebFluxContext(org.thymeleaf.spring5.context.webflux.ISpringWebFluxContext) Test(org.junit.Test)

Example 19 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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");
}
Also used : Context(org.thymeleaf.context.Context) ReactiveDataDriverContextVariable(org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Example 20 with Album

use of org.thymeleaf.spring5.reactive.data.Album 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");
}
Also used : Context(org.thymeleaf.context.Context) ReactiveDataDriverContextVariable(org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable) Album(org.thymeleaf.spring5.reactive.data.Album) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)145 Album (org.thymeleaf.spring5.reactive.data.Album)145 Context (org.thymeleaf.context.Context)141 ReactiveDataDriverContextVariable (org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable)130 HashMap (java.util.HashMap)4 ISpringWebFluxContext (org.thymeleaf.spring5.context.webflux.ISpringWebFluxContext)4 TemplateProcessingException (org.thymeleaf.exceptions.TemplateProcessingException)3