Search in sources :

Example 61 with Album

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

the class Spring5Reactive13Test method testDataDrivenOne03.

@Test
public void testDataDrivenOne03() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    ctx1.setVariable("albums", new ReactiveDataDriverContextVariable(Flux.fromIterable(albums).take(1), 3, "pref"));
    testTemplate("reactive13", null, ctx1, "reactive13-03", true);
}
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 62 with Album

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

the class Spring5Reactive13Test method testDataDrivenEmpty02.

@Test
public void testDataDrivenEmpty02() throws Exception {
    final List<Album> albums = AlbumRepository.findAllAlbums();
    final Context ctx1 = new Context();
    try {
        testTemplate("reactive13", null, ctx1, "reactive13-01", true);
        Assert.assertTrue(false);
    } catch (final TemplateProcessingException e) {
        // When there is no data-driver variable, an exception should be thrown
        Assert.assertTrue(true);
    }
}
Also used : Context(org.thymeleaf.context.Context) Album(org.thymeleaf.spring5.reactive.data.Album) TemplateProcessingException(org.thymeleaf.exceptions.TemplateProcessingException) Test(org.junit.Test)

Example 63 with Album

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

the class Spring5Reactive13Test 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, "pref"));
    testTemplate("reactive13", null, ctx1, "reactive13-04", true);
}
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 64 with Album

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

the class Spring5Reactive13Test 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, "pref"));
    testTemplate("reactive13", null, ctx1, "reactive13-02", true);
}
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 65 with Album

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

the class Spring5Reactive13Test 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, "pref"));
    testTemplate("reactive13", null, ctx1, "reactive13-02", true);
}
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