blob: ca3dff70f60f0108ba71f794d304ba112f14f473 [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.language.grammar;
import org.antlr.v4.runtime.CharStreams;
import org.antlr.v4.runtime.CommonTokenStream;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
import org.apache.tinkerpop.gremlin.structure.util.empty.EmptyGraph;
import org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceVertex;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class StructureElementVisitorTest {
private static final GraphTraversalSource g = EmptyGraph.instance().traversal();
@Test
public void shouldParseVertex() {
assertEquals(g.addE("knows").from(new ReferenceVertex(2, "person")), eval("g.addE('knows').from(new Vertex(2, 'person'))"));
assertEquals(g.addE("knows").to(new ReferenceVertex("1", "person")), eval("g.addE('knows').to(new Vertex('1', 'person'))"));
assertEquals(g.addE("knows").from(new ReferenceVertex(2, "person")), eval("g.addE('knows').from(new ReferenceVertex(2, 'person'))"));
assertEquals(g.addE("knows").to(new ReferenceVertex("1", "person")), eval("g.addE('knows').to(new ReferenceVertex('1', 'person'))"));
}
private static Object eval(final String query) {
final GremlinLexer lexer = new GremlinLexer(CharStreams.fromString(query));
final GremlinParser parser = new GremlinParser(new CommonTokenStream(lexer));
final GremlinAntlrToJava antlrToLanguage = new GremlinAntlrToJava();
return antlrToLanguage.visit(parser.queryList());
}
}