diff --git a/janusgraph-berkeleyje/src/test/java/org/janusgraph/graphdb/berkeleyje/BerkeleyGraphTest.java b/janusgraph-berkeleyje/src/test/java/org/janusgraph/graphdb/berkeleyje/BerkeleyGraphTest.java index 17a4f6408d..8f91e09d8d 100644 --- a/janusgraph-berkeleyje/src/test/java/org/janusgraph/graphdb/berkeleyje/BerkeleyGraphTest.java +++ b/janusgraph-berkeleyje/src/test/java/org/janusgraph/graphdb/berkeleyje/BerkeleyGraphTest.java @@ -68,6 +68,7 @@ public WriteConfiguration getConfiguration() { } @Override + @Test public void testClearStorage() throws Exception { tearDown(); config.set(ConfigElement.getPath(GraphDatabaseConfiguration.DROP_ON_CLEAR), true); @@ -86,6 +87,8 @@ public void testVertexCentricQuerySmall() { } @Override + @Test + @Disabled("#4153: Tests fails with NPE for some reason") public void testConsistencyEnforcement() { // Check that getConfiguration() explicitly set serializable isolation // This could be enforced with a JUnit assertion instead of a Precondition, @@ -96,27 +99,34 @@ public void testConsistencyEnforcement() { super.testConsistencyEnforcement(); } - // BerkeleyJE support only hour discrete TTL, we try speed up internal - // clock but tests so flaky. See BerkeleyStorageSetup @Override - public void testEdgeTTLTiming() throws Exception { + @Test + @Disabled("BerkeleyJE support only hour discrete TTL, we try speed up internal clock but tests so flaky. See BerkeleyStorageSetup") + public void testEdgeTTLTiming() { } @Override - public void testEdgeTTLWithTransactions() throws Exception { + @Test + @Disabled + public void testEdgeTTLWithTransactions() { } @Override - public void testUnsettingTTL() throws InterruptedException { + @Test + @Disabled + public void testUnsettingTTL() { } @Override - public void testVertexTTLWithCompositeIndex() throws Exception { + @Test + @Disabled + public void testVertexTTLWithCompositeIndex() { } @Override + @Test + @Disabled("TODO: Figure out why this is failing in BerkeleyDB!!") public void testConcurrentConsistencyEnforcement() { - //Do nothing TODO: Figure out why this is failing in BerkeleyDB!! } @Disabled("Unable to run on GitHub Actions.")