Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0ECFF200D68 for ; Wed, 22 Nov 2017 19:48:34 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0D58D160C14; Wed, 22 Nov 2017 18:48:34 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 550B5160C20 for ; Wed, 22 Nov 2017 19:48:32 +0100 (CET) Received: (qmail 62160 invoked by uid 500); 22 Nov 2017 18:48:31 -0000 Mailing-List: contact commits-help@tinkerpop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.apache.org Delivered-To: mailing list commits@tinkerpop.apache.org Received: (qmail 62046 invoked by uid 99); 22 Nov 2017 18:48:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Nov 2017 18:48:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 30BE3F5F8C; Wed, 22 Nov 2017 18:48:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: spmallette@apache.org To: commits@tinkerpop.apache.org Date: Wed, 22 Nov 2017 18:48:51 -0000 Message-Id: <45c092851b554c308ba6e6ac8c1ff58d@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [22/50] tinkerpop git commit: TINKERPOP-1784 Added feature tests for max() archived-at: Wed, 22 Nov 2017 18:48:34 -0000 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/5478e5dd Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/5478e5dd Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/5478e5dd Branch: refs/heads/tp32 Commit: 5478e5ddca1c228a4df48310a4373dca97192c61 Parents: d55e058 Author: Stephen Mallette Authored: Tue Oct 24 13:51:30 2017 -0400 Committer: Stephen Mallette Committed: Tue Nov 21 15:52:52 2017 -0500 ---------------------------------------------------------------------- gremlin-test/features/map/Max.feature | 48 ++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/5478e5dd/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}] |