use of jakarta.nosql.tck.entities.AppointmentBook in project jnosql-diana by eclipse.
the class DefaultDocumentEntityConverterTest method shouldConvertToListEmbeddable.
@Test
public void shouldConvertToListEmbeddable() {
AppointmentBook appointmentBook = new AppointmentBook("ids");
appointmentBook.add(Contact.builder().withType(ContactType.EMAIL).withName("Ada").withInformation("ada@lovelace.com").build());
appointmentBook.add(Contact.builder().withType(ContactType.MOBILE).withName("Ada").withInformation("11 1231231 123").build());
appointmentBook.add(Contact.builder().withType(ContactType.PHONE).withName("Ada").withInformation("12 123 1231 123123").build());
DocumentEntity entity = converter.toDocument(appointmentBook);
Document contacts = entity.find("contacts").get();
assertEquals("ids", appointmentBook.getId());
List<List<Document>> documents = (List<List<Document>>) contacts.get();
assertEquals(3L, documents.stream().flatMap(Collection::stream).filter(c -> c.getName().equals("contact_name")).count());
}
use of jakarta.nosql.tck.entities.AppointmentBook 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.AppointmentBook 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());
}
use of jakarta.nosql.tck.entities.AppointmentBook in project jnosql-diana by eclipse.
the class DefaultColumnEntityConverterTest method shouldConvertToListEmbeddable.
@Test
public void shouldConvertToListEmbeddable() {
AppointmentBook appointmentBook = new AppointmentBook("ids");
appointmentBook.add(Contact.builder().withType(ContactType.EMAIL).withName("Ada").withInformation("ada@lovelace.com").build());
appointmentBook.add(Contact.builder().withType(ContactType.MOBILE).withName("Ada").withInformation("11 1231231 123").build());
appointmentBook.add(Contact.builder().withType(ContactType.PHONE).withName("Ada").withInformation("12 123 1231 123123").build());
ColumnEntity entity = converter.toColumn(appointmentBook);
Column contacts = entity.find("contacts").get();
assertEquals("ids", appointmentBook.getId());
List<List<Column>> columns = (List<List<Column>>) contacts.get();
assertEquals(3L, columns.stream().flatMap(Collection::stream).filter(c -> c.getName().equals("contact_name")).count());
}
Aggregations