AMQ-5266 - fix leak in transaction context - completions were not cleared on close/commit

This commit is contained in:
gtully 2015-07-17 12:30:52 +01:00
parent b9b27b968b
commit 7c116631b5
2 changed files with 88 additions and 0 deletions

View File

@ -162,6 +162,7 @@ public class TransactionContext {
for (Runnable completion: completions) {
completion.run();
}
completions.clear();
}
}
}

View File

@ -0,0 +1,87 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.store.jdbc;
import java.util.concurrent.atomic.AtomicInteger;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class TransactionContextTest {
org.apache.activemq.store.jdbc.TransactionContext underTest;
static JDBCPersistenceAdapter jdbcPersistenceAdapter;
@BeforeClass
public static void init() throws Exception {
jdbcPersistenceAdapter = new JDBCPersistenceAdapter();
}
@AfterClass
public static void tearDown() throws Exception {
jdbcPersistenceAdapter.stop();
}
@Before
public void setup() throws Exception {
underTest = new TransactionContext(jdbcPersistenceAdapter);
}
@Test
public void testCompletionCalledOnceOnCommmit() throws Exception {
final AtomicInteger called = new AtomicInteger();
underTest.begin();
underTest.onCompletion(new Runnable() {
@Override
public void run() {
called.incrementAndGet();
}
});
underTest.commit();
assertEquals(1, called.get());
underTest.begin();
underTest.commit();
assertEquals(1, called.get());
}
@Test
public void testCompletionCalledOnceOnClose() throws Exception {
underTest.getConnection();
final AtomicInteger called = new AtomicInteger();
underTest.onCompletion(new Runnable() {
@Override
public void run() {
called.incrementAndGet();
}
});
underTest.close();
assertEquals(1, called.get());
underTest.getConnection();
underTest.close();
assertEquals(1, called.get());
}
}