TINKERPOP-1784 Added and() feature tests

Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b5359c37
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/b5359c37
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/b5359c37

Branch: refs/heads/TINKERPOP-1784
Commit: b5359c3712d1be2fb8b6e62e7594daa8e3c1abe3
Parents: 4fefba3
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Oct 24 10:14:09 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Nov 2 13:37:24 2017 -0400

----------------------------------------------------------------------
 gremlin-test/features/filter/And.feature | 65 +++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/b5359c37/gremlin-test/features/filter/And.feature
----------------------------------------------------------------------
diff --git a/gremlin-test/features/filter/And.feature 
b/gremlin-test/features/filter/And.feature
new file mode 100644
index 0000000..c47ec6e
--- /dev/null
+++ b/gremlin-test/features/filter/And.feature
@@ -0,0 +1,65 @@
+# 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.
+
+Feature: Step - and()
+
+  Scenario: g_V_andXhasXage_gt_27X__outE_count_gte_2X_name
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().and(__.has("age", P.gt(27)), 
__.outE().count().is(P.gte(2))).values("name")
+      """
+    When iterated to list
+    Then the result should be unordered
+      | marko |
+      | josh |
+
+  Scenario: g_V_andXoutE__hasXlabel_personX_and_hasXage_gte_32XX_name
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().and(__.outE(), __.has(T.label, "person").and().has("age", 
P.gte(32))).values("name")
+      """
+    When iterated to list
+    Then the result should be unordered
+      | josh |
+      | peter  |
+
+  Scenario: g_V_asXaX_outXknowsX_and_outXcreatedX_inXcreatedX_asXaX_name
+    Given the modern graph
+    And the traversal of
+      """
+      
g.V().as("a").out("knows").and().out("created").in("created").as("a").values("name")
+      """
+    When iterated to list
+    Then the result should be unordered
+      | v[marko] |
+
+  Scenario: g_V_asXaX_andXselectXaX_selectXaXX
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().as("a").and(__.select("a"), __.select("a"))
+      """
+    When iterated to list
+    Then the result should be unordered
+      | v[marko] |
+      | v[vadas] |
+      | v[lop] |
+      | v[josh] |
+      | v[ripple] |
+      | v[peter]  |
\ No newline at end of file

Reply via email to