use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-artemis by eclipse.
the class DocumentQueryParserTest method shouldFindByNameAndAAgeBetween.
@Test
public void shouldFindByNameAndAAgeBetween() {
DocumentQuery query = parser.parse("findByNameAndAgeBetween", new Object[] { "name", 10, 11 }, classRepresentation, converters);
assertEquals("Person", query.getDocumentCollection());
DocumentCondition condition = query.getCondition().get();
assertEquals(Condition.AND, condition.getCondition());
List<DocumentCondition> conditions = condition.getDocument().get(new TypeReference<List<DocumentCondition>>() {
});
DocumentCondition condition1 = conditions.get(0);
assertEquals(Condition.EQUALS, condition1.getCondition());
assertEquals(Document.of("name", "name"), condition1.getDocument());
DocumentCondition condition2 = conditions.get(1);
assertEquals(Condition.BETWEEN, condition2.getCondition());
assertEquals(Document.of("age", Arrays.asList(10, 11)), condition2.getDocument());
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-artemis by eclipse.
the class DocumentRepositoryProxyTest method shouldFindByAgeLessEqual.
@Test
public void shouldFindByAgeLessEqual() {
Person ada = Person.builder().withAge(20).withName("Ada").build();
when(template.select(any(DocumentQuery.class))).thenReturn(singletonList(ada));
personRepository.findByAgeLessThan(33);
ArgumentCaptor<DocumentQuery> captor = ArgumentCaptor.forClass(DocumentQuery.class);
verify(template).select(captor.capture());
DocumentQuery query = captor.getValue();
DocumentCondition condition = query.getCondition().get();
assertEquals("Person", query.getDocumentCollection());
assertEquals(LESSER_THAN, condition.getCondition());
assertEquals(Document.of("age", 33), condition.getDocument());
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-artemis by eclipse.
the class DocumentRepositoryProxyTest method shouldFindByAgeANDName.
@Test
public void shouldFindByAgeANDName() {
Person ada = Person.builder().withAge(20).withName("Ada").build();
when(template.select(Mockito.any(DocumentQuery.class))).thenReturn(singletonList(ada));
Set<Person> persons = personRepository.findByAgeAndName(20, "name");
ArgumentCaptor<DocumentQuery> captor = ArgumentCaptor.forClass(DocumentQuery.class);
verify(template).select(captor.capture());
assertThat(persons, Matchers.contains(ada));
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-artemis by eclipse.
the class DocumentRepositoryProxyTest method shouldExecuteQuery.
@Test
public void shouldExecuteQuery() {
ArgumentCaptor<DocumentQuery> captor = ArgumentCaptor.forClass(DocumentQuery.class);
Person ada = Person.builder().withAge(20).withName("Ada").build();
when(template.singleResult(Mockito.any(DocumentQuery.class))).thenReturn(Optional.of(ada));
DocumentQuery query = select().from("Person").where("name").eq("Ada").build();
Person person = personRepository.query(query);
verify(template).singleResult(captor.capture());
assertEquals(ada, person);
assertEquals(query, captor.getValue());
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-artemis by eclipse.
the class DocumentRepositoryProxyTest method shouldFindByAgeBetween.
@Test
public void shouldFindByAgeBetween() {
Person ada = Person.builder().withAge(20).withName("Ada").build();
when(template.select(any(DocumentQuery.class))).thenReturn(singletonList(ada));
personRepository.findByAgeBetween(10, 15);
ArgumentCaptor<DocumentQuery> captor = ArgumentCaptor.forClass(DocumentQuery.class);
verify(template).select(captor.capture());
DocumentQuery query = captor.getValue();
DocumentCondition condition = query.getCondition().get();
assertEquals("Person", query.getDocumentCollection());
assertEquals(BETWEEN, condition.getCondition());
assertEquals(Document.of("age", Arrays.asList(10, 15)), condition.getDocument());
}
Aggregations