Merge branch 'TINKERPOP-1784' into tp32
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/78a1095b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/78a1095b Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/78a1095b Branch: refs/heads/master Commit: 78a1095bc768c5aa623182b5368ff5a404884673 Parents: 0f27197 2819dba Author: Stephen Mallette <[email protected]> Authored: Wed Nov 22 08:12:45 2017 -0500 Committer: Stephen Mallette <[email protected]> Committed: Wed Nov 22 08:12:45 2017 -0500 ---------------------------------------------------------------------- CHANGELOG.asciidoc | 2 + .../Driver/Remote/DriverRemoteConnection.cs | 16 +- .../GraphTraversalTests.cs | 8 +- .../RemoteConnectionFactory.cs | 8 +- gremlin-dotnet/test/pom.xml | 6 +- gremlin-python/pom.xml | 21 +- .../src/main/jython/radish/feature_steps.py | 230 +++++++++ .../src/main/jython/radish/terrain.py | 114 +++++ gremlin-python/src/main/jython/setup.py | 4 +- .../remote/gremlin-server-integration.yaml | 7 +- .../server/gremlin-server-integration.yaml | 7 +- .../server/gremlin-server-performance.yaml | 7 +- .../src/test/scripts/generate-all.groovy | 40 ++ .../src/test/scripts/test-server-start.groovy | 24 +- .../test/scripts/tinkergraph-empty.properties | 20 + gremlin-test/features/branch/Branch.feature | 92 ++++ gremlin-test/features/branch/Choose.feature | 124 +++++ gremlin-test/features/branch/Local.feature | 183 +++++++ gremlin-test/features/branch/Optional.feature | 81 ++++ gremlin-test/features/branch/Repeat.feature | 230 +++++++++ gremlin-test/features/branch/Union.feature | 140 ++++++ gremlin-test/features/filter/And.feature | 69 +++ gremlin-test/features/filter/Coin.feature | 43 ++ gremlin-test/features/filter/CyclicPath.feature | 52 ++ gremlin-test/features/filter/Dedup.feature | 237 +++++++++ gremlin-test/features/filter/Drop.feature | 63 +++ gremlin-test/features/filter/Filter.feature | 111 +++++ gremlin-test/features/filter/Has.feature | 45 ++ gremlin-test/features/filter/Is.feature | 75 +++ gremlin-test/features/filter/Or.feature | 62 +++ gremlin-test/features/filter/Range.feature | 228 +++++++++ gremlin-test/features/filter/Sample.feature | 75 +++ gremlin-test/features/filter/SimplePath.feature | 72 +++ gremlin-test/features/filter/Tail.feature | 166 +++++++ gremlin-test/features/filter/Where.feature | 105 ++++ gremlin-test/features/map/AddEdge.feature | 307 ++++++++++++ gremlin-test/features/map/AddVertex.feature | 147 ++++++ gremlin-test/features/map/Coalesce.feature | 78 +++ gremlin-test/features/map/Constant.feature | 52 ++ gremlin-test/features/map/Count.feature | 125 +++++ gremlin-test/features/map/FlatMap.feature | 35 ++ gremlin-test/features/map/Fold.feature | 57 +++ gremlin-test/features/map/Graph.feature | 109 +++++ gremlin-test/features/map/Loops.feature | 68 +++ gremlin-test/features/map/Map.feature | 108 +++++ gremlin-test/features/map/Match.feature | 80 ++++ gremlin-test/features/map/Max.feature | 51 ++ gremlin-test/features/map/Mean.feature | 40 ++ gremlin-test/features/map/Min.feature | 51 ++ gremlin-test/features/map/Order.feature | 132 ++++++ gremlin-test/features/map/Path.feature | 105 ++++ gremlin-test/features/map/Project.feature | 55 +++ gremlin-test/features/map/Properties.feature | 68 +++ gremlin-test/features/map/Select.feature | 324 +++++++++++++ gremlin-test/features/map/Sum.feature | 40 ++ gremlin-test/features/map/Unfold.feature | 76 +++ gremlin-test/features/map/ValueMap.feature | 62 +++ gremlin-test/features/map/Vertex.feature | 475 +++++++++++++++++++ .../features/sideEffect/Aggregate.feature | 80 ++++ gremlin-test/features/sideEffect/Group.feature | 244 ++++++++++ .../features/sideEffect/GroupCount.feature | 187 ++++++++ gremlin-test/features/sideEffect/Inject.feature | 51 ++ gremlin-test/features/sideEffect/Sack.feature | 71 +++ .../features/sideEffect/SideEffectCap.feature | 38 ++ gremlin-test/features/sideEffect/Store.feature | 87 ++++ .../traversal/step/branch/OptionalTest.java | 4 +- .../step/sideEffect/GroupCountTest.java | 2 +- .../gremlin/process/FeatureCoverageTest.java | 131 +++++ 68 files changed, 6270 insertions(+), 37 deletions(-) ----------------------------------------------------------------------
