use of jakarta.nosql.mapping.Pagination in project jnosql-diana by eclipse.
the class DocumentPageTest method shouldExecutePagination.
@Test
public void shouldExecutePagination() {
Pagination pagination = Pagination.page(1).size(1);
DocumentQueryPagination query = DocumentQueryPagination.of(select().from("person").build(), pagination);
Page<Person> page = subject.select(query);
verify(managerMock).select(query);
assertNotNull(page);
assertEquals(pagination, page.getPagination());
}
use of jakarta.nosql.mapping.Pagination in project jnosql-diana by eclipse.
the class DynamicReturnPaginationTest method shouldReturnQueue.
@Test
public void shouldReturnQueue() throws NoSuchMethodException {
Method method = getMethod(PersonRepository.class, "getQueue");
Supplier<Stream<?>> stream = Stream::empty;
Supplier<Optional<?>> singleResult = DynamicReturn.toSingleResult(method).apply(stream);
Pagination pagination = getPagination();
when(streamPagination.apply(pagination)).thenReturn(Stream.of(new Person("Ada")));
DynamicReturn<?> dynamicReturn = DynamicReturn.builder().withClassSource(Person.class).withMethodSource(method).withResult(stream).withSingleResult(singleResult).withPagination(pagination).withStreamPagination(streamPagination).withSingleResultPagination(singlePagination).withPage(page).build();
Object execute = dynamicReturn.execute();
Assertions.assertTrue(execute instanceof Queue);
Queue<Person> persons = (Queue) execute;
Assertions.assertFalse(persons.isEmpty());
Assertions.assertEquals(new Person("Ada"), persons.iterator().next());
Mockito.verify(singlePagination, Mockito.never()).apply(pagination);
Mockito.verify(streamPagination).apply(pagination);
}
use of jakarta.nosql.mapping.Pagination in project jnosql-diana by eclipse.
the class DynamicReturnPaginationTest method shouldReturnNavigableSet.
@Test
public void shouldReturnNavigableSet() throws NoSuchMethodException {
Method method = getMethod(PersonRepository.class, "getNavigableSet");
Supplier<Stream<?>> stream = Stream::empty;
Supplier<Optional<?>> singleResult = DynamicReturn.toSingleResult(method).apply(stream);
Pagination pagination = getPagination();
when(streamPagination.apply(pagination)).thenReturn(Stream.of(new Person("Ada")));
DynamicReturn<?> dynamicReturn = DynamicReturn.builder().withClassSource(Person.class).withMethodSource(method).withResult(stream).withSingleResult(singleResult).withPagination(pagination).withStreamPagination(streamPagination).withSingleResultPagination(singlePagination).withPage(page).build();
Object execute = dynamicReturn.execute();
Assertions.assertTrue(execute instanceof NavigableSet);
NavigableSet<Person> persons = (NavigableSet) execute;
Assertions.assertFalse(persons.isEmpty());
Assertions.assertEquals(new Person("Ada"), persons.iterator().next());
Mockito.verify(singlePagination, Mockito.never()).apply(pagination);
Mockito.verify(streamPagination).apply(pagination);
}
use of jakarta.nosql.mapping.Pagination in project jnosql-diana by eclipse.
the class DynamicReturnPaginationTest method shouldReturnOptional.
@Test
public void shouldReturnOptional() throws NoSuchMethodException {
Method method = getMethod(PersonRepository.class, "getOptional");
Supplier<Stream<?>> stream = Stream::empty;
Supplier<Optional<?>> singleResult = DynamicReturn.toSingleResult(method).apply(stream);
Pagination pagination = getPagination();
when(singlePagination.apply(pagination)).thenReturn(Optional.of(new Person("Ada")));
DynamicReturn<?> dynamicReturn = DynamicReturn.builder().withClassSource(Person.class).withMethodSource(method).withResult(stream).withSingleResult(singleResult).withPagination(pagination).withStreamPagination(streamPagination).withSingleResultPagination(singlePagination).withPage(page).build();
Object execute = dynamicReturn.execute();
Assertions.assertTrue(execute instanceof Optional);
Optional<Person> optional = (Optional) execute;
Assertions.assertTrue(optional.isPresent());
Assertions.assertEquals(new Person("Ada"), optional.get());
Mockito.verify(singlePagination).apply(pagination);
Mockito.verify(streamPagination, Mockito.never()).apply(pagination);
}
use of jakarta.nosql.mapping.Pagination in project jnosql-diana by eclipse.
the class DynamicReturnPaginationTest method shouldReturnNull.
@Test
public void shouldReturnNull() throws NoSuchMethodException {
Method method = getMethod(PersonRepository.class, "getInstance");
Supplier<Stream<?>> stream = Stream::empty;
Supplier<Optional<?>> singleResult = DynamicReturn.toSingleResult(method).apply(stream);
Pagination pagination = getPagination();
when(singlePagination.apply(pagination)).thenReturn(Optional.empty());
DynamicReturn<?> dynamicReturn = DynamicReturn.builder().withClassSource(Person.class).withMethodSource(method).withResult(stream).withSingleResult(singleResult).withPagination(pagination).withStreamPagination(streamPagination).withSingleResultPagination(singlePagination).withPage(page).build();
Object execute = dynamicReturn.execute();
Assertions.assertNull(execute);
Mockito.verify(singlePagination).apply(pagination);
Mockito.verify(streamPagination, Mockito.never()).apply(pagination);
}
Aggregations