Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit b62e790

Browse files
rashtaoarcanefoam
authored andcommitted
test fixes
1 parent 74db202 commit b62e790

File tree

1 file changed

+20
-31
lines changed

1 file changed

+20
-31
lines changed

src/main/java/com/arangodb/tinkerpop/gremlin/structure/ArangoDBGraph.java

Lines changed: 20 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,18 @@
149149
test = "org.apache.tinkerpop.gremlin.structure.GraphTest",
150150
method = "shouldRemoveEdges",
151151
reason = "Test creates edges with random labels, which does not work with our schema-based approach.")
152+
@Graph.OptOut(
153+
test = "org.apache.tinkerpop.gremlin.structure.util.detached.DetachedVertexTest",
154+
method = "shouldNotEvaluateToEqualDifferentId",
155+
reason = "Test creates vertex with no labels in schema-based approach")
156+
@Graph.OptOut(
157+
test = "org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceVertexTest",
158+
method = "shouldNotEvaluateToEqualDifferentId",
159+
reason = "Test creates vertex with no labels in schema-based approach")
160+
@Graph.OptOut(
161+
test = "org.apache.tinkerpop.gremlin.structure.util.detached.DetachedGraphTest",
162+
method = "testAttachableCreateMethod",
163+
reason = "test creates id without label prefix")
152164
// FIXME, OptOut failing tests
153165
@Graph.OptOut(
154166
test = "org.apache.tinkerpop.gremlin.structure.GraphTest",
@@ -162,61 +174,38 @@
162174
test = "org.apache.tinkerpop.gremlin.structure.VertexPropertyTest$VertexPropertyAddition",
163175
method = "shouldAllowIdAssignment",
164176
reason = "FIXME")
165-
@Graph.OptOut(
166-
test = "org.apache.tinkerpop.gremlin.structure.util.detached.DetachedVertexTest",
167-
method = "shouldNotEvaluateToEqualDifferentId",
168-
reason = "Test creates vertex with no labels in schema-based approach"
169-
)
170-
@Graph.OptOut(
171-
test = "org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceVertexTest",
172-
method = "shouldNotEvaluateToEqualDifferentId",
173-
reason = "Test creates vertex with no labels in schema-based approach"
174-
)
175-
@Graph.OptOut(
176-
test = "org.apache.tinkerpop.gremlin.structure.util.detached.DetachedGraphTest",
177-
method = "testAttachableCreateMethod",
178-
reason = "test creates id without label prefix"
179-
)
180177
@Graph.OptOut(
181178
test = "org.apache.tinkerpop.gremlin.structure.SerializationTest$GryoV3d0Test",
182179
method = "shouldSerializeTree",
183-
reason = "FIXME"
184-
)
180+
reason = "FIXME")
185181
@Graph.OptOut(
186182
test = "org.apache.tinkerpop.gremlin.structure.SerializationTest$GryoV1d0Test",
187183
method = "shouldSerializeTree",
188-
reason = "FIXME"
189-
)
184+
reason = "FIXME")
190185
@Graph.OptOut(
191186
test = "org.apache.tinkerpop.gremlin.structure.VertexTest$BasicVertexTest",
192187
method = "shouldEvaluateEquivalentVertexHashCodeWithSuppliedIds",
193-
reason = "FIXME"
194-
)
188+
reason = "FIXME")
195189
@Graph.OptOut(
196190
test = "org.apache.tinkerpop.gremlin.structure.VertexTest$BasicVertexTest",
197191
method = "shouldEvaluateVerticesEquivalentWithSuppliedIdsViaTraversal",
198-
reason = "FIXME"
199-
)
192+
reason = "FIXME")
200193
@Graph.OptOut(
201194
test = "org.apache.tinkerpop.gremlin.structure.util.star.StarGraphTest",
202195
method = "shouldAttachWithCreateMethod",
203-
reason = "FIXME"
204-
)
196+
reason = "FIXME")
205197
@Graph.OptOut(
206198
test = "org.apache.tinkerpop.gremlin.structure.util.star.StarGraphTest",
207199
method = "shouldCopyFromGraphAToGraphB",
208-
reason = "FIXME"
209-
)
200+
reason = "FIXME")
210201
@Graph.OptOut(
211202
test = "org.apache.tinkerpop.gremlin.structure.VertexTest$BasicVertexTest",
212203
method = "shouldEvaluateVerticesEquivalentWithSuppliedIdsViaIterators",
213-
reason = "FIXME"
214-
)
204+
reason = "FIXME")
215205
@Graph.OptOut(
216206
test = "org.apache.tinkerpop.gremlin.structure.VertexTest$AddEdgeTest",
217207
method = "shouldAddEdgeWithUserSuppliedStringId",
218-
reason = "FIXME"
219-
)
208+
reason = "FIXME")
220209
public class ArangoDBGraph implements Graph {
221210

222211
/**

0 commit comments

Comments
 (0)