use of org.neo4j.driver.internal.InternalRecord in project neo4j by neo4j.
the class TableOutputFormatterTest method prettyPrintDuration.
@Test
public void prettyPrintDuration() {
// given
List<String> keys = asList("d");
Value duration = new DurationValue(new InternalIsoDuration(1, 2, 3, 4));
Record record = new InternalRecord(keys, new Value[] { duration });
// when
String actual = verbosePrinter.format(new ListBoltResult(asList(record), mock(ResultSummary.class)));
// then
assertThat(actual, containsString("| P1M2DT3.000000004S |"));
}
use of org.neo4j.driver.internal.InternalRecord in project neo4j by neo4j.
the class TableOutputFormatterTest method prettyPrintNode.
@Test
public void prettyPrintNode() {
// given
List<String> labels = asList("label1", "label2");
Map<String, Value> propertiesAsMap = new HashMap<>();
propertiesAsMap.put("prop1", Values.value("prop1_value"));
propertiesAsMap.put("prop2", Values.value("prop2_value"));
List<String> keys = asList("col1", "col2");
Value value = new NodeValue(new InternalNode(1, labels, propertiesAsMap));
Record record = new InternalRecord(keys, new Value[] { value });
// when
String actual = verbosePrinter.format(new ListBoltResult(asList(record), mock(ResultSummary.class)));
// then
assertThat(actual, containsString("| (:label1:label2 {prop2: \"prop2_value\", prop1: \"prop1_value\"}) |"));
}
Aggregations