You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2019/09/26 15:20:07 UTC

[activemq] branch master updated: no jira - fix test to aligh with implementation limitations of deprecated leveldb store

This is an automated email from the ASF dual-hosted git repository.

gtully pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/master by this push:
     new 1ab6793  no jira - fix test to aligh with implementation limitations of deprecated leveldb store
1ab6793 is described below

commit 1ab6793c854233618bfebc0d47a3a32aa5adea96
Author: gtully <ga...@gmail.com>
AuthorDate: Thu Sep 26 16:19:37 2019 +0100

    no jira - fix test to aligh with implementation limitations of deprecated leveldb store
---
 .../activemq/leveldb/LevelDBXARecoveryBrokerTest.java   | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/leveldb/LevelDBXARecoveryBrokerTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/leveldb/LevelDBXARecoveryBrokerTest.java
index 82cd7e4..77264c5 100644
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/leveldb/LevelDBXARecoveryBrokerTest.java
+++ b/activemq-unit-tests/src/test/java/org/apache/activemq/leveldb/LevelDBXARecoveryBrokerTest.java
@@ -65,4 +65,21 @@ public class LevelDBXARecoveryBrokerTest extends XARecoveryBrokerTest {
         broker.setPersistenceAdapter(store);
     }
 
+    public void testQueuePersistentPreparedAcksAvailableAfterRestartAndRollback() throws Exception {
+        // super.testQueuePersistentPreparedAcksAvailableAfterRestartAndRollback();
+    }
+    public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception {
+        // super.testQueuePersistentUncommittedAcksLostOnRestart();
+    }
+    public void testQueuePersistentPreparedAcksNotLostOnRestart() throws Exception {
+        // pending acks are not tracked in leveldb
+    }
+    public void testQueuePersistentPreparedAcksAvailableAfterRollback() throws Exception {
+        // pending acks are not tracked in leveldb
+    }
+    public void testTopicPersistentPreparedAcksUnavailableTillRollback() throws Exception {
+    }
+    public void testTopicPersistentPreparedAcksNotLostOnRestartForNSubs() throws Exception {
+    }
+
 }