use of jakarta.nosql.tck.entities.Contact in project jnosql-diana by eclipse.
the class DefaultDocumentEntityConverterTest method shouldConvertFromListEmbeddable.
@Test
public void shouldConvertFromListEmbeddable() {
DocumentEntity entity = DocumentEntity.of("AppointmentBook");
entity.add(Document.of("_id", "ids"));
List<List<Document>> documents = new ArrayList<>();
documents.add(asList(Document.of("contact_name", "Ada"), Document.of("type", ContactType.EMAIL), Document.of("information", "ada@lovelace.com")));
documents.add(asList(Document.of("contact_name", "Ada"), Document.of("type", ContactType.MOBILE), Document.of("information", "11 1231231 123")));
documents.add(asList(Document.of("contact_name", "Ada"), Document.of("type", ContactType.PHONE), Document.of("information", "phone")));
entity.add(Document.of("contacts", documents));
AppointmentBook appointmentBook = converter.toEntity(entity);
List<Contact> contacts = appointmentBook.getContacts();
assertEquals("ids", appointmentBook.getId());
assertEquals("Ada", contacts.stream().map(Contact::getName).distinct().findFirst().get());
}
use of jakarta.nosql.tck.entities.Contact in project jnosql-diana by eclipse.
the class DefaultColumnEntityConverterTest method shouldConvertFromListEmbeddable.
@Test
public void shouldConvertFromListEmbeddable() {
ColumnEntity entity = ColumnEntity.of("AppointmentBook");
entity.add(Column.of("_id", "ids"));
List<List<Column>> columns = new ArrayList<>();
columns.add(asList(Column.of("contact_name", "Ada"), Column.of("type", ContactType.EMAIL), Column.of("information", "ada@lovelace.com")));
columns.add(asList(Column.of("contact_name", "Ada"), Column.of("type", ContactType.MOBILE), Column.of("information", "11 1231231 123")));
columns.add(asList(Column.of("contact_name", "Ada"), Column.of("type", ContactType.PHONE), Column.of("information", "phone")));
entity.add(Column.of("contacts", columns));
AppointmentBook appointmentBook = converter.toEntity(entity);
List<Contact> contacts = appointmentBook.getContacts();
assertEquals("ids", appointmentBook.getId());
assertEquals("Ada", contacts.stream().map(Contact::getName).distinct().findFirst().get());
}
Aggregations