From commits-return-29628-archive-asf-public=cust-asf.ponee.io@tinkerpop.apache.org Fri Jun 1 14:05:37 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 73F0318063A for ; Fri, 1 Jun 2018 14:05:32 +0200 (CEST) Received: (qmail 94871 invoked by uid 500); 1 Jun 2018 12:05: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 94415 invoked by uid 99); 1 Jun 2018 12:05: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; Fri, 01 Jun 2018 12:05:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DB23CE1198; Fri, 1 Jun 2018 12:05:30 +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: Fri, 01 Jun 2018 12:06:11 -0000 Message-Id: <05ebd7b3698b44568824b8c2dceec615@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [42/50] tinkerpop git commit: TINKERPOP-1968 Open up a formerly ignored test TINKERPOP-1968 Open up a formerly ignored test Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/8ff76ac5 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/8ff76ac5 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/8ff76ac5 Branch: refs/heads/TINKERPOP-1967 Commit: 8ff76ac5b62781982a40d42f12132adddeb16184 Parents: d7d4652 Author: Stephen Mallette Authored: Mon May 21 08:32:03 2018 -0400 Committer: Stephen Mallette Committed: Thu May 31 16:19:43 2018 -0400 ---------------------------------------------------------------------- gremlin-test/features/map/Vertex.feature | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/8ff76ac5/gremlin-test/features/map/Vertex.feature ---------------------------------------------------------------------- diff --git a/gremlin-test/features/map/Vertex.feature b/gremlin-test/features/map/Vertex.feature index 8642693..3f2a63b 100644 --- a/gremlin-test/features/map/Vertex.feature +++ b/gremlin-test/features/map/Vertex.feature @@ -449,12 +449,25 @@ Feature: Step - V(), E(), out(), in(), both(), inE(), outE(), bothE() | v[vadas] | | v[josh] | + # this test deviates from the setup of the java test, but the intent is the same. the java test drops lop and then + # tries to query it as part of the group of ids. here, rather than drop, we simply use an id that doesn't exist + # which is simulated by an edge identifier. Scenario: g_VX1_2_3_4X_name - Given an unsupported test - Then nothing should happen because + Given the modern graph + And using the parameter v1Id defined as "v[marko].id" + And using the parameter v2Id defined as "v[vadas].id" + And using the parameter v3Id defined as "e[marko-knows->josh].id" + And using the parameter v4Id defined as "v[josh].id" + And the traversal of """ - the test manipulates a static dataset which is not supported by the language of the feature files" + g.V(v1Id, v2Id, v3Id, v4Id).values("name") """ + When iterated to list + Then the result should be unordered + | result | + | marko | + | vadas | + | josh | Scenario: g_V_hasLabelXpersonX_V_hasLabelXsoftwareX_name Given the modern graph