AMQ-2439: Adding test cases for JDBC too.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@821115 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2009-10-02 17:59:38 +00:00
parent 4e1d383555
commit bfed2c0e00
3 changed files with 65 additions and 7 deletions

View File

@ -833,9 +833,7 @@ public class MessageDatabase {
} else {
// If the message ID as indexed, then the broker asked us to store a DUP
// message. Bad BOY! Don't do it, and log a warning.
LOG.warn("Duplicate message add attempt rejected. Message id: "+command.getMessageId()+", on: "+command.getDestination());
LOG.warn("Duplicate message add attempt rejected. Message id: "+command.getMessageId());
// TODO: consider just rolling back the tx.
sd.messageIdIndex.put(tx, command.getMessageId(), previous);
}

View File

@ -54,15 +54,21 @@ abstract public class PersistenceAdapterTestSupport extends TestCase {
MessageStore ms = pa.createQueueMessageStore(new ActiveMQQueue("TEST"));
ConnectionContext context = new ConnectionContext();
ActiveMQTextMessage message = new ActiveMQTextMessage();
message.setText("test");
message.setMessageId(new MessageId("ID:localhost-56913-1254499826208-0:0:1:1:1"));
ConnectionContext context = new ConnectionContext();
MessageId messageId = new MessageId("ID:localhost-56913-1254499826208-0:0:1:1:1");
messageId.setBrokerSequenceId(1);
message.setMessageId(messageId);
ms.addMessage(context, message);
// here comes the dup...
message = new ActiveMQTextMessage();
message.setText("test");
messageId = new MessageId("ID:localhost-56913-1254499826208-0:0:1:1:1");
messageId.setBrokerSequenceId(2);
message.setMessageId(messageId);
ms.addMessage(context, message);
final AtomicInteger recovered = new AtomicInteger();
@ -85,7 +91,6 @@ abstract public class PersistenceAdapterTestSupport extends TestCase {
return true;
}
});
assertEquals(1, recovered.get());
}

View File

@ -0,0 +1,55 @@
/**
* 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.io.IOException;
import junit.framework.AssertionFailedError;
import org.apache.activemq.store.PersistenceAdapter;
import org.apache.activemq.store.PersistenceAdapterTestSupport;
import org.apache.derby.jdbc.EmbeddedDataSource;
/**
*
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
*/
public class JDBCPersistenceAdapterTest extends PersistenceAdapterTestSupport {
protected PersistenceAdapter createPersistenceAdapter(boolean delete) throws IOException {
JDBCPersistenceAdapter jdbc = new JDBCPersistenceAdapter();
EmbeddedDataSource dataSource = new EmbeddedDataSource();
dataSource.setDatabaseName("derbyDb");
dataSource.setCreateDatabase("create");
jdbc.setDataSource(dataSource);
if( delete ) {
jdbc.deleteAllMessages();
}
return jdbc;
}
@Override
public void testStoreCanHandleDupMessages() throws Exception {
try {
super.testStoreCanHandleDupMessages();
fail("We expect this test to fail as it would be too expensive to add additional " +
"unique constraints in the JDBC implementation to detect the duplicate messages.");
} catch (AssertionFailedError expected) {
}
}
}