/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.tinkerpop.gremlin.server; import org.apache.tinkerpop.gremlin.driver.Client; import org.apache.tinkerpop.gremlin.driver.Cluster; import org.apache.tinkerpop.gremlin.driver.MessageSerializer; import org.apache.tinkerpop.gremlin.driver.Result; import org.apache.tinkerpop.gremlin.driver.ResultSet; import org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0; import org.apache.tinkerpop.gremlin.driver.ser.Serializers; import org.apache.tinkerpop.gremlin.jsr223.ScriptFileGremlinPlugin; import org.apache.tinkerpop.gremlin.process.traversal.Path; import org.apache.tinkerpop.gremlin.process.traversal.Traverser; import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource; import org.apache.tinkerpop.gremlin.structure.Edge; import org.apache.tinkerpop.gremlin.structure.Graph; import org.apache.tinkerpop.gremlin.structure.Property; import org.apache.tinkerpop.gremlin.structure.Vertex; import org.apache.tinkerpop.gremlin.structure.VertexProperty; import org.apache.tinkerpop.gremlin.structure.io.IoTest; import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedEdge; import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedPath; import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedProperty; import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedVertex; import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedVertexProperty; import org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceVertex; import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph; import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerIoRegistry; import org.apache.tinkerpop.gremlin.util.iterator.IteratorUtils; import org.hamcrest.CoreMatchers; import org.junit.After; import org.junit.Before; import org.junit.Test; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import static org.hamcrest.CoreMatchers.anyOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.IsInstanceOf.instanceOf; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.junit.Assert.fail; /** * @author Stephen Mallette (http://stephen.genoprime.com) */ public class GremlinResultSetIntegrateTest extends AbstractGremlinServerIntegrationTest { private Cluster cluster; private Client client; @Override public Settings overrideSettings(final Settings settings) { final Map<String,Object> m = new HashMap<>(); m.put("files", Collections.singletonList("scripts/generate-modern.groovy")); settings.scriptEngines.get("gremlin-groovy").plugins.put(ScriptFileGremlinPlugin.class.getName(), m); return settings; } @Before public void beforeTest() { final MessageSerializer serializer = new GryoMessageSerializerV1d0(); final Map<String,Object> c = new HashMap<>(); c.put("ioRegistries", Collections.singletonList(TinkerIoRegistry.class.getName())); c.put("custom", Collections.singletonList("groovy.json.JsonBuilder;org.apache.tinkerpop.gremlin.driver.ser.JsonBuilderGryoSerializer")); serializer.configure(c, null); cluster = TestClientFactory.build().serializer(serializer).create(); client = cluster.connect(); } @After public void afterTest() { cluster.close(); } @Test public void shouldHandleVertexResultFromTraversalBulked() throws Exception { final Graph graph = TinkerGraph.open(); final GraphTraversalSource g = graph.traversal(); final Client aliased = client.alias("g"); final ResultSet resultSetUnrolled = aliased.submit(g.V().both().barrier().both().barrier()); final List<Result> results = resultSetUnrolled.all().get(); assertThat(results.get(0).getObject(), CoreMatchers.instanceOf(Traverser.class)); assertEquals(6, results.size()); } @Test public void shouldHandleNullResult() throws Exception { final ResultSet results = client.submit("g.V().drop().iterate();null"); assertNull(results.all().get().get(0).getObject()); } @Test public void shouldHandleVoidResult() throws Exception { final ResultSet results = client.submit("g.V().drop().iterate()"); assertEquals(0, results.all().get().size()); } @Test public void shouldHandleEmptyResult() throws Exception { final ResultSet results = client.submit("g.V(100,1000,1000)"); assertEquals(0, results.all().get().size()); } @Test public void shouldHandleVertexResult() throws Exception { final ResultSet results = client.submit("g.V(1).next()"); final Vertex v = results.all().get().get(0).getVertex(); assertThat(v, instanceOf(DetachedVertex.class)); assertEquals("marko", v.properties("name").next().value()); v.properties().forEachRemaining(p -> { if (p.key().equals("name")) assertEquals("marko", p.value()); else if (p.key().equals("age")) assertEquals(29, p.value()); else fail("Should not have any other keys besides 'name' and 'age'"); }); } @Test public void shouldHandleVertexResultWithLiteSerialization() throws Exception { final Cluster cluster = TestClientFactory.build().serializer(Serializers.GRYO_LITE_V1D0).create(); final Client clientLite = cluster.connect(); final ResultSet results = clientLite.submit("g.V(1).next()"); final Vertex v = results.all().get().get(0).getVertex(); assertThat(v, instanceOf(ReferenceVertex.class)); assertEquals(1L, v.id()); assertEquals("", v.label()); assertEquals(0, IteratorUtils.count(v.properties())); } @Test public void shouldHandleVertexPropertyResult() throws Exception { final ResultSet results = client.submit("g.V().properties('name').next()"); final VertexProperty<String> v = results.all().get().get(0).getVertexProperty(); assertThat(v, instanceOf(DetachedVertexProperty.class)); } @Test public void shouldHandleEdgeResult() throws Exception { final ResultSet results = client.submit("g.E().next()"); final Edge e = results.all().get().get(0).getEdge(); assertThat(e, instanceOf(DetachedEdge.class)); } @Test public void shouldHandlePropertyResult() throws Exception { final ResultSet results = client.submit("g.E().properties('weight').next()"); final Property<Double> p = results.all().get().get(0).getProperty(); assertThat(p, instanceOf(DetachedProperty.class)); } @Test public void shouldHandlePathResult() throws Exception { final ResultSet results = client.submit("g.V().out().path()"); final Path p = results.all().get().get(0).getPath(); assertThat(p, instanceOf(DetachedPath.class)); } @Test public void shouldHandleTinkerGraphResult() throws Exception { final ResultSet results = client.submit("graph"); final Graph graph = results.all().get().get(0).get(TinkerGraph.class); // test is "lossy for id" because TinkerGraph is configured by default to use the ANY id manager // and doesn't coerce to specific types - which is how it is on the server as well so we can expect // some id shiftiness IoTest.assertModernGraph(graph, true, true); } @Test public void shouldHandleMapIteratedResult() throws Exception { final ResultSet results = client.submit("g.V().groupCount().by(bothE().count())"); final List<Result> resultList = results.all().get(); final Map m = resultList.get(0).get(HashMap.class); assertEquals(2, m.size()); assertEquals(3L, m.get(1L)); assertEquals(3L, m.get(3L)); } @Test public void shouldHandleMapObjectResult() throws Exception { final ResultSet results = client.submit("g.V().groupCount().by(bothE().count()).next()"); final List<Result> resultList = results.all().get(); assertEquals(2, resultList.size()); final Map.Entry firstEntry = resultList.get(0).get(HashMap.Entry.class); final Map.Entry secondEntry = resultList.get(1).get(HashMap.Entry.class); assertThat(firstEntry.getKey(), anyOf(is(3L), is(1L))); assertThat(firstEntry.getValue(), is(3L)); assertThat(secondEntry.getKey(), anyOf(is(3L), is(1L))); assertThat(secondEntry.getValue(), is(3L)); } }