blob: 1926aa82121ffbf27fb9aab4d14bc79193f4b0b2 [file] [log] [blame]
/*
* 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.process.traversal.step.map;
import org.apache.tinkerpop.gremlin.LoadGraphWith;
import org.apache.tinkerpop.gremlin.process.AbstractGremlinProcessTest;
import org.apache.tinkerpop.gremlin.process.GremlinProcessRunner;
import org.apache.tinkerpop.gremlin.process.traversal.Traversal;
import org.apache.tinkerpop.gremlin.structure.Edge;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static org.apache.tinkerpop.gremlin.LoadGraphWith.GraphData.MODERN;
import static org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.__.both;
import static org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.__.hasId;
import static org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.__.outE;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.fail;
/**
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
@RunWith(GremlinProcessRunner.class)
public abstract class UnfoldTest extends AbstractGremlinProcessTest {
public abstract Traversal<Vertex, Edge> get_g_V_localXoutE_foldX_unfold();
public abstract Traversal<Vertex, String> get_g_V_valueMap_unfold_mapXkeyX();
public abstract Traversal<Vertex, String> get_g_VX1X_repeatXboth_simplePathX_untilXhasIdX6XX_path_byXnameX_unfold(final Object v1Id, final Object v6Id);
@Test
@LoadGraphWith(MODERN)
public void g_V_localXoutE_foldX_unfold() {
final Traversal<Vertex, Edge> traversal = get_g_V_localXoutE_foldX_unfold();
printTraversalForm(traversal);
int counter = 0;
final Set<Edge> edges = new HashSet<>();
while (traversal.hasNext()) {
counter++;
edges.add(traversal.next());
}
assertEquals(6, counter);
assertEquals(6, edges.size());
assertFalse(traversal.hasNext());
}
@Test
@LoadGraphWith(MODERN)
public void g_V_valueMap_unfold_mapXkeyX() {
final Traversal<Vertex, String> traversal = get_g_V_valueMap_unfold_mapXkeyX();
printTraversalForm(traversal);
int counter = 0;
int ageCounter = 0;
int nameCounter = 0;
int langCounter = 0;
while (traversal.hasNext()) {
counter++;
final String key = traversal.next();
if (key.equals("name"))
nameCounter++;
else if (key.equals("age"))
ageCounter++;
else if (key.equals("lang"))
langCounter++;
else
fail("The provided key is not known: " + key);
}
assertEquals(12, counter);
assertEquals(4, ageCounter);
assertEquals(2, langCounter);
assertEquals(6, nameCounter);
assertEquals(counter, ageCounter + langCounter + nameCounter);
assertFalse(traversal.hasNext());
}
@Test
@LoadGraphWith(MODERN)
public void g_VX1X_repeatXboth_simplePathX_untilXhasIdX6XX_path_byXnameX_unfold() {
final Traversal<Vertex, String> traversal = get_g_VX1X_repeatXboth_simplePathX_untilXhasIdX6XX_path_byXnameX_unfold(
convertToVertexId("marko"), convertToVertexId("peter"));
printTraversalForm(traversal);
checkResults(Arrays.asList("marko", "lop", "peter", "marko", "josh", "lop", "peter"), traversal);
}
public static class Traversals extends UnfoldTest {
@Override
public Traversal<Vertex, Edge> get_g_V_localXoutE_foldX_unfold() {
return g.V().local(outE().fold()).unfold();
}
@Override
public Traversal<Vertex, String> get_g_V_valueMap_unfold_mapXkeyX() {
return g.V().valueMap().<Map.Entry<String, List>>unfold().map(m -> m.get().getKey());
}
@Override
public Traversal<Vertex, String> get_g_VX1X_repeatXboth_simplePathX_untilXhasIdX6XX_path_byXnameX_unfold(Object v1Id, Object v6Id) {
return g.V(v1Id).repeat(both().simplePath()).until(hasId(v6Id)).path().by("name").unfold();
}
}
}