Search in sources :

Example 1 with ReactiveDataDriverContextVariable

use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive02Test 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("reactive02", null, ctx1, "reactive02-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 2 with ReactiveDataDriverContextVariable

use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive02Test 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("reactive02", null, ctx1, "reactive02-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 3 with ReactiveDataDriverContextVariable

use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive03Test 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("reactive03", null, ctx1, "reactive03-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 4 with ReactiveDataDriverContextVariable

use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive03Test 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("reactive03", null, ctx1, "reactive03-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 5 with ReactiveDataDriverContextVariable

use of org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable in project thymeleaf-tests by thymeleaf.

the class Spring5Reactive04Test 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("reactive04", null, ctx1, "reactive04-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)130 Context (org.thymeleaf.context.Context)130 ReactiveDataDriverContextVariable (org.thymeleaf.spring5.context.webflux.ReactiveDataDriverContextVariable)130 Album (org.thymeleaf.spring5.reactive.data.Album)130