You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2017/10/24 17:51:52 UTC

[1/2] tinkerpop git commit: TINKERPOP-1784 Added feature tests for min()

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1784 074dade9a -> 0db78cbca


TINKERPOP-1784 Added feature tests for min()


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

Branch: refs/heads/TINKERPOP-1784
Commit: 74cfba43a0329ff60fff11e78c47a73c699cd8c1
Parents: 074dade
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Oct 24 13:36:36 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue Oct 24 13:36:36 2017 -0400

----------------------------------------------------------------------
 gremlin-test/features/map/Min.feature | 48 ++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/74cfba43/gremlin-test/features/map/Min.feature
----------------------------------------------------------------------
diff --git a/gremlin-test/features/map/Min.feature b/gremlin-test/features/map/Min.feature
new file mode 100644
index 0000000..48ceeb9
--- /dev/null
+++ b/gremlin-test/features/map/Min.feature
@@ -0,0 +1,48 @@
+# 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 - min()
+
+  Scenario: g_V_age_min
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().values("age").min()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[27] |
+
+  Scenario: g_V_repeatXbothX_timesX5X_age_min
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().repeat(__.both()).times(5).values("age").min()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[27] |
+
+  Scenario: get_g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_minX
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().hasLabel("software").group().by("name").by(__.bothE().values("weight").min())
+      """
+    When iterated to list
+    Then the result should be unordered
+      | m[{"ripple":1.0,"lop":0.2}] |


[2/2] tinkerpop git commit: TINKERPOP-1784 Added feature tests for max()

Posted by sp...@apache.org.
TINKERPOP-1784 Added feature tests for max()


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

Branch: refs/heads/TINKERPOP-1784
Commit: 0db78cbca27896c2d91b590fe22e5d5e1dd55d8d
Parents: 74cfba4
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Oct 24 13:51:30 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue Oct 24 13:51:30 2017 -0400

----------------------------------------------------------------------
 gremlin-test/features/map/Max.feature | 48 ++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/0db78cbc/gremlin-test/features/map/Max.feature
----------------------------------------------------------------------
diff --git a/gremlin-test/features/map/Max.feature b/gremlin-test/features/map/Max.feature
new file mode 100644
index 0000000..c36177d
--- /dev/null
+++ b/gremlin-test/features/map/Max.feature
@@ -0,0 +1,48 @@
+# 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 - max()
+
+  Scenario: g_V_age_max
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().values("age").max()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[35] |
+
+  Scenario: g_V_repeatXbothX_timesX5X_age_max
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().repeat(__.both()).times(5).values("age").max()
+      """
+    When iterated to list
+    Then the result should be unordered
+      | d[35] |
+
+  Scenario: get_g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_maxX
+    Given the modern graph
+    And the traversal of
+      """
+      g.V().hasLabel("software").group().by("name").by(__.bothE().values("weight").max())
+      """
+    When iterated to list
+    Then the result should be unordered
+      | m[{"ripple":1.0,"lop":0.4}] |