use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana by eclipse.
the class DefaultSelectQueryBuilderTest method shouldSelectStart.
@Test
public void shouldSelectStart() {
String documentCollection = "documentCollection";
DocumentQuery query = select().from(documentCollection).start(10).build();
assertTrue(query.getDocuments().isEmpty());
assertFalse(query.getCondition().isPresent());
assertEquals(documentCollection, query.getDocumentCollection());
assertEquals(10L, query.getFirstResult());
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana by eclipse.
the class DefaultSelectQueryBuilderTest method shouldSelectWhereNameOr.
@Test
public void shouldSelectWhereNameOr() {
String documentCollection = "documentCollection";
String name = "Ada Lovelace";
DocumentQuery query = select().from(documentCollection).where("name").eq(name).or("age").gt(10).build();
DocumentCondition condition = query.getCondition().get();
Document document = condition.getDocument();
List<DocumentCondition> conditions = document.get(new TypeReference<List<DocumentCondition>>() {
});
assertEquals(Condition.OR, condition.getCondition());
assertThat(conditions, Matchers.containsInAnyOrder(eq(Document.of("name", name)), DocumentCondition.gt(Document.of("age", 10))));
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana by eclipse.
the class DefaultSelectQueryBuilderTest method shouldSelectWhereNameNot.
@Test
public void shouldSelectWhereNameNot() {
String documentCollection = "documentCollection";
String name = "Ada Lovelace";
DocumentQuery query = select().from(documentCollection).where("name").not().eq(name).build();
DocumentCondition condition = query.getCondition().get();
Document column = condition.getDocument();
DocumentCondition negate = column.get(DocumentCondition.class);
assertTrue(query.getDocuments().isEmpty());
assertEquals(documentCollection, query.getDocumentCollection());
assertEquals(Condition.NOT, condition.getCondition());
assertEquals(Condition.EQUALS, negate.getCondition());
assertEquals("name", negate.getDocument().getName());
assertEquals(name, negate.getDocument().get());
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana by eclipse.
the class DefaultSelectQueryBuilderTest method shouldSelect.
@Test
public void shouldSelect() {
String documentCollection = "documentCollection";
DocumentQuery query = select().from(documentCollection).build();
assertTrue(query.getDocuments().isEmpty());
assertFalse(query.getCondition().isPresent());
assertEquals(documentCollection, query.getDocumentCollection());
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana by eclipse.
the class DefaultSelectQueryBuilderTest method shouldSelectOrderAsc.
@Test
public void shouldSelectOrderAsc() {
String documentCollection = "documentCollection";
DocumentQuery query = select().from(documentCollection).orderBy("name").asc().build();
assertTrue(query.getDocuments().isEmpty());
assertFalse(query.getCondition().isPresent());
assertEquals(documentCollection, query.getDocumentCollection());
assertThat(query.getSorts(), contains(Sort.of("name", ASC)));
}
Aggregations