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/07/19 19:19:48 UTC

[49/50] [abbrv] tinkerpop git commit: TINKERPOP-1716 Opened up some more remoting tests.

TINKERPOP-1716 Opened up some more remoting tests.

Had to OptOut a few tests due to TINKERPOP-1679


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

Branch: refs/heads/TINKERPOP-1716
Commit: 63882a08a0ab9efc81964395eeede635748f8703
Parents: 986beaf
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Jul 19 15:13:38 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Jul 19 15:13:38 2017 -0400

----------------------------------------------------------------------
 .../gremlin/process/remote/RemoteGraph.java         | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/63882a08/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
index 9516ea5..9cae88d 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
@@ -89,10 +89,6 @@ import java.util.Iterator;
         method = "*",
         reason = "RemoteGraph does not support EventStrategy at this time - some of its members are not serializable")
 @Graph.OptOut(
-        test = "org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration.SubgraphStrategyProcessTest",
-        method = "*",
-        reason = "RemoteGraph does not support SubgraphStrategy at this time")
-@Graph.OptOut(
         test = "org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgramTest",
         method = "*",
         reason = "RemoteGraph does not support direct Graph.compute() access")
@@ -116,6 +112,18 @@ import java.util.Iterator;
         test = "org.apache.tinkerpop.gremlin.process.traversal.TraversalInterruptionComputerTest",
         method = "*",
         reason = "The interruption model in the test can't guarantee interruption at the right time with RemoteGraph.")
+@Graph.OptOut(
+        test = "org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration.PartitionStrategyProcessTest",
+        method = "shouldAppendPartitionToEdge",
+        reason = "Test uses detached side-effects which aren't currently supported with remoting - TINKERPOP-1679")
+@Graph.OptOut(
+        test = "org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration.PartitionStrategyProcessTest",
+        method = "shouldThrowExceptionOnEInDifferentPartition",
+        reason = "Test uses detached side-effects which aren't currently supported with remoting - TINKERPOP-1679")
+@Graph.OptOut(
+        test = "org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration.PartitionStrategyProcessTest",
+        method = "shouldWriteToMultiplePartitions",
+        reason = "Test uses detached side-effects which aren't currently supported with remoting - TINKERPOP-1679")
 @Deprecated
 public class RemoteGraph implements Graph {