diff options
| author | Keith Wall <kwall@apache.org> | 2012-03-30 13:44:25 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2012-03-30 13:44:25 +0000 |
| commit | 38d1f36fe4238a887f867350adaa56489e53e0e6 (patch) | |
| tree | 1a5504424a30e6fce56e89123c6036bed002d05b /qpid/java/systests/src | |
| parent | da8070494a06d0b6c37127eb0a3439e394bddd31 (diff) | |
| download | qpid-python-38d1f36fe4238a887f867350adaa56489e53e0e6.tar.gz | |
QPID-3917: Refactor VirtualHost/MessageStore implementations to be ready for BDB-HA
Applied patch from Andrew MacBean <andymacbean@gmail.com> and myself.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1307416 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
7 files changed, 80 insertions, 781 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/logging/DerbyMessageStoreLoggingTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/logging/DerbyMessageStoreLoggingTest.java deleted file mode 100644 index e32edff692..0000000000 --- a/qpid/java/systests/src/main/java/org/apache/qpid/server/logging/DerbyMessageStoreLoggingTest.java +++ /dev/null @@ -1,573 +0,0 @@ -/* - * - * 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.qpid.server.logging; - -import org.apache.qpid.server.configuration.ServerConfiguration; -import org.apache.qpid.server.logging.subjects.AbstractTestLogSubject; - -import javax.jms.Connection; -import javax.jms.Queue; -import javax.jms.Session; -import java.io.File; -import java.util.List; - -/** - * The MessageStore test suite validates that the follow log messages as - * specified in the Functional Specification. - * - * This suite of tests validate that the MessageStore messages occur correctly - * and according to the following format: - * - * MST-1001 : Created : <name> - * MST-1003 : Closed - * - * NOTE: Only for Persistent Stores - * MST-1002 : Store location : <path> - * MST-1004 : Recovery Start [: <queue.name>] - * MST-1005 : Recovered <count> messages for queue <queue.name> - * MST-1006 : Recovery Complete [: <queue.name>] - */ -public class DerbyMessageStoreLoggingTest extends MemoryMessageStoreLoggingTest -{ - - @Override - public void setUp() throws Exception - { - super.setUp(); - // MemoryMessageStoreLoggingTest setUp itself does not call super.setUp - //We call super.setUp but this will not start the broker as that is - //part of the test case. - - // Load the default configuration file to get the list of defined vhosts - ServerConfiguration configuration = new ServerConfiguration(new File(_configFile.getParent() + "/config.xml")); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - // Make them all persistent i.e. Use DerbyMessageStore and - // test that it logs correctly. - for (String vhost : vhosts) - { - makeVirtualHostPersistent(vhost); - } - } - - /** - * Description: - * Persistent MessageStores will require space on disk to persist the data. - * This value will be logged on startup after the MessageStore has been - * created. - * Input: - * Default configuration - * Output: - * - * <date> MST-1002 : Store location : <path> - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. This must occur after MST-1001 - */ - public void testMessageStoreStoreLocation() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - startBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1002"); - - assertEquals("Each vhost did not close its store.", vhosts.size(), results.size()); - - for (int index = 0; index < results.size(); index++) - { - String result = getLogMessage(results, index);; - - // getSlize will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // To get the store class used in the configuration we need to know - // the virtualhost name, found above. AND - // the index that the virtualhost is within the configuration. - // we can retrive that from the vhosts list previously extracted. - String fullStoreName = configuration.getConfig().getString("virtualhosts.virtualhost(" + vhosts.indexOf(vhostName) + ")." + vhostName + ".store.class"); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertTrue("MST-1002 does not contain a store path" + getMessageString(result), - getMessageString(result).length() > 0); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - } - } - - /** - * Description: - * Persistent message stores may have state on disk that they must recover - * during startup. As the MessageStore starts up it will report that it is - * about to start the recovery process by logging MST-1004. This message - * will always be logged for persistent MessageStores. If there is no data - * to recover then there will be no subsequent recovery messages. - * Input: - * Default persistent configuration - * Output: - * <date> MST-1004 : Recovery Start - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. The MessageStore must have first logged a creation event. - */ - public void testMessageStoreRecoveryStart() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - startBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1004"); - - assertTrue("Each vhost did not close its store.", vhosts.size() <= results.size()); - - for (int index = 0; index < results.size(); index++) - { - String result = getLogMessage(results, index);; - - if (getMessageString(result).contains("Recovery Start :")) - { - //Don't test queue start recoveries - continue; - } - - // getSlize will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // To get the store class used in the configuration we need to know - // the virtualhost name, found above. AND - // the index that the virtualhost is within the configuration. - // we can retrive that from the vhosts list previously extracted. - String fullStoreName = configuration.getConfig().getString("virtualhosts.virtualhost(" + vhosts.indexOf(vhostName) + ")." + vhostName + ".store.class"); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertEquals("MST-1004 does have expected message", "Recovery Start", - getMessageString(result)); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - } - } - - /** - * Description: - * Once all persistent queues have been recovered and the MessageStore has completed all recovery it must logged that the recovery process has completed. - * Input: - * Default persistent configuration - * Output: - * - * <date> MST-1006 : Recovery Complete - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. This is the last message from the MessageStore during startup. - * 3. This must be proceeded by a MST-1006 Recovery Start. - */ - public void testMessageStoreRecoveryComplete() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - startBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1006"); - - assertTrue("Each vhost did not close its store.", vhosts.size() <= results.size()); - - for (int index = 0; index < results.size(); index++) - { - String result = getLogMessage(results, index); - - if (getMessageString(result).contains("Recovery Complete :")) - { - //Don't test queue start recoveries - continue; - } - - // getSlize will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // To get the store class used in the configuration we need to know - // the virtualhost name, found above. AND - // the index that the virtualhost is within the configuration. - // we can retrive that from the vhosts list previously extracted. - String fullStoreName = configuration.getConfig().getString("virtualhosts.virtualhost(" + vhosts.indexOf(vhostName) + ")." + vhostName + ".store.class"); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertEquals("MST-1006 does have expected message", "Recovery Complete", - getMessageString(result)); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - } - } - - /** - * Description: - * A persistent MessageStore may have data to recover from disk. The message store will use MST-1004 to report the start of recovery for a specific queue that it has previously persisted. - * Input: - * Default persistent configuration - * Output: - * - * <date> MST-1004 : Recovery Start : <queue.name> - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. This must occur after the recovery start MST-1004 has been logged. - */ - public void testMessageStoreQueueRecoveryStart() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - startBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1004 : Recovery Start :"); - - // We are only looking for the default queue defined in local host being - // recovered. If other tests have made queues in test then we want to - // exclude them here. - results = filterResultsByVirtualHost(results, "/localhost"); - - assertEquals("Recovered test queue not found.", 1, results.size()); - - String result = getLogMessage(results, 0); - - // getSlize will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // To get the store class used in the configuration we need to know - // the virtualhost name, found above. AND - // the index that the virtualhost is within the configuration. - // we can retrive that from the vhosts list previously extracted. - String fullStoreName = configuration.getConfig().getString("virtualhosts.virtualhost(" + vhosts.indexOf(vhostName) + ")." + vhostName + ".store.class"); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertTrue("MST-1006 does end with queue 'test-queue':" + getMessageString(result), - getMessageString(result).endsWith("test-queue")); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - - } - - /** - * Description: - * After the queue has been recovered the store will log that recovery has been completed. The MessageStore must not report further status about the recovery of this queue after this message. In addition every MST-1004 queue recovery start message must be matched with a MST-1006 recovery complete. - * Input: - * Default persistent configuration - * Output: - * - * <date> MST-1006 : Recovery Complete : <queue.name> - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. This must occur after the queue recovery start MST-1004 has been logged. - * 3. The queue.name is non-empty - * 4. The queue.name correlates with a previous recovery start - */ - public void testMessageStoreQueueRecoveryComplete() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - startBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1006 : Recovery Complete :"); - - // We are only looking for the default queue defined in local host being - // recovered. If other tests have made queues in test then we want to - // exclude them here. - results = filterResultsByVirtualHost(results, "/localhost"); - - assertEquals("Recovered test queue not found.", 1, results.size()); - - String result = getLogMessage(results, 0); - - // getSlize will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // To get the store class used in the configuration we need to know - // the virtualhost name, found above. AND - // the index that the virtualhost is within the configuration. - // we can retrive that from the vhosts list previously extracted. - String fullStoreName = configuration.getConfig().getString("virtualhosts.virtualhost(" + vhosts.indexOf(vhostName) + ")." + vhostName + ".store.class"); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertTrue("MST-1006 does end with queue 'test-queue':" + getMessageString(result), - getMessageString(result).endsWith("test-queue")); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - - results = findMatches("MST-1004 : Recovery Start : test-queue"); - - assertEquals("MST-1004 for test-queue not found", 1, results.size()); - } - - /** - * Description: - * A persistent queue must be persisted so that on recovery it can be restored independently of any messages that may be stored on it. This test verifies that the MessageStore will log that it has recovered 0 messages for persistent queues that do not have any messages. - * Input: - * - * 1. Default persistent configuration - * 2. Persistent queue with no messages enqueued - * Output: - * - * <date> MST-1005 : Recovered 0 messages for queue <queue.name> - * - * Validation Steps: - * 3. The MST ID is correct - * 4. This must occur after the queue recovery start MST-1004 has been logged. - * 5. The count is 0 - * 6. 'messages' is correctly printed - * 7. The queue.name is non-empty - */ - public void testMessageStoreQueueRecoveryCountEmpty() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - String queueName = getTestQueueName(); - - startBroker(); - Connection connetion = getConnection(); - Session session = connetion.createSession(false, Session.AUTO_ACKNOWLEDGE); - Queue queue = session.createQueue("direct://amq.direct/" + queueName + "/" + queueName + "?durable='true'"); - - session.createConsumer(queue).close(); - - // Stop the broker so that we can test recovery - stopBroker(); - - int COUNT = 0; - testDurableRecoveryCount(COUNT, queueName); - } - - /** - * Description: - * On recovery all the persistent messages that are stored on disk must be returned to the queue. MST-1005 will report the number of messages that have been recovered from disk. - * Input: - * - * 1. Default persistent configuration - * 2. Persistent queue with multiple messages enqueued - * Output: - * - * <date> MST-1005 : Recovered <count> messages for queue <queue.name> - * - * Validation Steps: - * 3. The MST ID is correct - * 4. This must occur after the queue recovery start MST-1004 has been logged. - * 5. The count is > 1 - * 6. 'messages' is correctly printed - * 7. The queue.name is non-empty - */ - public void testMessageStoreQueueRecoveryCountPlural() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - String queueName = getTestQueueName(); - - int COUNT = 10; - - testDurableRecoveryCount(COUNT, queueName); - } - - /** - * Send a set number of messages to a new durable queue, as specified. Then - * restart the broker and validate that they are restored. - * - * @param COUNT - the count to send - * @param queueName - the new queue name - * @throws Exception - if a problem occured. - */ - private void testDurableRecoveryCount(int COUNT, String queueName) throws Exception - { - startBroker(); - Connection connetion = getConnection(); - Session session = connetion.createSession(false, Session.AUTO_ACKNOWLEDGE); - Queue queue = session.createQueue("direct://amq.direct/" + queueName + "/" + queueName + "?durable='true'"); - - session.createConsumer(queue).close(); - - sendMessage(session, queue, COUNT); - try - { - connetion.close(); - - stopBroker(); - - // Clear our monitor - _monitor.markDiscardPoint(); - - startBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = configuration.getConfig().getList("virtualhosts.virtualhost.name"); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1004 : Recovery Start : " + queueName); - - assertEquals("Recovered test queue not found.", 1, results.size()); - - String result = getLogMessage(results, 0); - - validateMessageID("MST-1004", result); - - assertTrue("MST-1004 does end with queue '" + queueName + "':" + getMessageString(result), - getMessageString(result).endsWith(queueName)); - - results = waitAndFindMatches("MST-1005"); - - assertTrue("Insufficient MST-1005 logged.", results.size()>0); - - result = null; - - // If the first message is not our queue the second one will be - for(String resultEntry : results) - { - // Look for first match and set that to result - if (resultEntry.contains(queueName)) - { - result = getLog(resultEntry); - break; - } - } - - assertNotNull("MST-1005 entry for queue:" + queueName + ". Not found", result); - - // getSlize will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // To get the store class used in the configuration we need to know - // the virtualhost name, found above. AND - // the index that the virtualhost is within the configuration. - // we can retrive that from the vhosts list previously extracted. - String fullStoreName = configuration.getConfig().getString("virtualhosts.virtualhost(" + vhosts.indexOf(vhostName) + ")." + vhostName + ".store.class"); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertTrue("MST-1005 does end with queue 'test-queue':" + getMessageString(result), - getMessageString(result).endsWith(queueName)); - - assertTrue("MST-1005 does end show correct count:" + getMessageString(result), - getMessageString(result).contains("Recovered " + COUNT + " messages")); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - } - finally - { - //Ensure we attempt to drain the queue. - assertEquals("Unable to drain queue", COUNT, drainQueue(queue)); - } - } - -} diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/logging/MemoryMessageStoreLoggingTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/logging/MemoryMessageStoreLoggingTest.java deleted file mode 100644 index e6e1196cc6..0000000000 --- a/qpid/java/systests/src/main/java/org/apache/qpid/server/logging/MemoryMessageStoreLoggingTest.java +++ /dev/null @@ -1,186 +0,0 @@ -/* -* -* 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.qpid.server.logging; - -import org.apache.qpid.server.configuration.ServerConfiguration; -import org.apache.qpid.server.logging.subjects.AbstractTestLogSubject; -import org.apache.qpid.util.LogMonitor; - -import java.util.Arrays; -import java.util.List; - -/** - * The MessageStore test suite validates that the follow log messages as - * specified in the Functional Specification. - * - * This suite of tests validate that the MessageStore messages occur correctly - * and according to the following format: - * - * MST-1001 : Created : <name> - * MST-1003 : Closed - * - * NOTE: Only for Persistent Stores - * MST-1002 : Store location : <path> - * MST-1004 : Recovery Start [: <queue.name>] - * MST-1005 : Recovered <count> messages for queue <queue.name> - * MST-1006 : Recovery Complete [: <queue.name>] - */ -public class MemoryMessageStoreLoggingTest extends AbstractTestLogging -{ - protected static final String MESSAGES_STORE_PREFIX = "MST-"; - - public void setUp() throws Exception - { - //We explicitly do not call super.setUp as starting up the broker is - //part of the test case. - // So we have to make the new Log Monitor here - - _monitor = new LogMonitor(_outputFile); - } - - /** - * Description: - * During Virtualhost startup a MessageStore will be created. The first MST - * message that must be logged is the MST-1001 MessageStore creation. - * Input: - * Default configuration - * Output: - * <date> MST-1001 : Created : <name> - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. The <name> is the correct MessageStore type as specified in the Default configuration - * - * @throws Exception caused by broker startup - */ - public void testMessageStoreCreation() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - super.setUp(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - String log = getLogMessage(results, 0); - //1 - assertEquals("MST-1001 is not the first MST message", "MST-1001", getMessageID(fromMessage(log))); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1001"); - - // Load VirtualHost list from file. - List<String> vhosts = Arrays.asList(getServerConfig().getVirtualHosts()); - - assertEquals("Each vhost did not create a store.", vhosts.size(), results.size()); - - for (int index = 0; index < results.size(); index++) - { - String result = getLogMessage(results, index); - - // getSlice will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // Get the store class used in the configuration for the virtualhost. - String fullStoreName = getServerConfig().getVirtualHostConfig(vhostName).getMessageStoreClass(); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertTrue("MST-1001 does not contains correct store name:" - + storeName + ":" + result, getMessageString(result).endsWith(storeName)); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - } - } - - /** - * Description: - * During shutdown the MessageStore will also cleanly close. When this has - * completed a MST-1003 closed message will be logged. No further messages - * from this MessageStore will be logged after this message. - * - * Input: - * Default configuration - * Output: - * <date> MST-1003 : Closed - * - * Validation Steps: - * - * 1. The MST ID is correct - * 2. This is teh last log message from this MessageStore - * - * @throws Exception caused by broker startup - */ - public void testMessageStoreClose() throws Exception - { - assertLoggingNotYetOccured(MESSAGES_STORE_PREFIX); - - super.setUp(); - - //Stop the broker so we get the close messages. - stopBroker(); - - List<String> results = waitAndFindMatches(MESSAGES_STORE_PREFIX); - - // Validation - - assertTrue("MST messages not logged", results.size() > 0); - - // Load VirtualHost list from file. - ServerConfiguration configuration = new ServerConfiguration(_configFile); - configuration.initialise(); - List<String> vhosts = Arrays.asList(configuration.getVirtualHosts()); - - //Validate each vhost logs a creation - results = waitAndFindMatches("MST-1003"); - - assertEquals("Each vhost did not close its store.", vhosts.size(), results.size()); - - for (int index = 0; index < results.size(); index++) - { - String result = getLogMessage(results, index); - - // getSlice will return extract the vhost from vh(/test) -> '/test' - // so remove the '/' to get the name - String vhostName = AbstractTestLogSubject.getSlice("vh", result).substring(1); - - // Get the store class used in the configuration for the virtualhost. - String fullStoreName = configuration.getVirtualHostConfig(vhostName).getMessageStoreClass(); - - // Get the Simple class name from the expected class name of o.a.q.s.s.MMS - String storeName = fullStoreName.substring(fullStoreName.lastIndexOf(".") + 1); - - assertEquals("MST-1003 does not close:", - "Closed", getMessageString(result)); - - assertEquals("The store name does not match expected value", - storeName, AbstractTestLogSubject.getSlice("ms", fromSubject(result))); - } - } - -} diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java index c3b006f371..2de8b7cdb7 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStore.java @@ -29,7 +29,6 @@ import org.apache.qpid.framing.FieldTable; import org.apache.qpid.server.exchange.Exchange; import org.apache.qpid.server.federation.Bridge; import org.apache.qpid.server.federation.BrokerLink; -import org.apache.qpid.server.logging.LogSubject; import org.apache.qpid.server.message.EnqueableMessage; import org.apache.qpid.server.message.ServerMessage; import org.apache.qpid.server.queue.AMQQueue; @@ -55,11 +54,8 @@ public class SlowMessageStore implements MessageStore public void configureConfigStore(String name, ConfigurationRecoveryHandler recoveryHandler, - Configuration config, - LogSubject logSubject) throws Exception + Configuration config) throws Exception { - //To change body of implemented methods use File | Settings | File Templates. - _logger.info("Starting SlowMessageStore on Virtualhost:" + name); Configuration delays = config.subset(DELAYS); @@ -74,7 +70,7 @@ public class SlowMessageStore implements MessageStore if (messageStoreClass != null) { - Class clazz = Class.forName(messageStoreClass); + Class<?> clazz = Class.forName(messageStoreClass); Object o = clazz.newInstance(); @@ -89,13 +85,14 @@ public class SlowMessageStore implements MessageStore _durableConfigurationStore = (DurableConfigurationStore)o; } } - _durableConfigurationStore.configureConfigStore(name, recoveryHandler, config, logSubject); + _durableConfigurationStore.configureConfigStore(name, recoveryHandler, config); } private void configureDelays(Configuration config) { - Iterator delays = config.getKeys(); + @SuppressWarnings("unchecked") + Iterator<String> delays = config.getKeys(); while (delays.hasNext()) { @@ -162,9 +159,9 @@ public class SlowMessageStore implements MessageStore public void configureMessageStore(String name, MessageStoreRecoveryHandler messageRecoveryHandler, TransactionLogRecoveryHandler tlogRecoveryHandler, - Configuration config, LogSubject logSubject) throws Exception + Configuration config) throws Exception { - _realStore.configureMessageStore(name, messageRecoveryHandler, tlogRecoveryHandler, config, logSubject); + _realStore.configureMessageStore(name, messageRecoveryHandler, tlogRecoveryHandler, config); } public void close() throws Exception @@ -353,4 +350,22 @@ public class SlowMessageStore implements MessageStore _durableConfigurationStore.deleteBridge(bridge); doPostDelay("deleteBridge"); } + + @Override + public void activate() throws Exception + { + _realStore.activate(); + } + + @Override + public void addEventListener(EventListener eventListener, Event event) + { + throw new UnsupportedOperationException(); + } + + @Override + public MessageStore getUnderlyingStore() + { + return _realStore.getUnderlyingStore(); + } } diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStoreFactory.java b/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStoreFactory.java new file mode 100644 index 0000000000..840362485e --- /dev/null +++ b/qpid/java/systests/src/main/java/org/apache/qpid/server/store/SlowMessageStoreFactory.java @@ -0,0 +1,40 @@ +/* + * 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.qpid.server.store; + +import org.apache.qpid.server.logging.LogSubject; +import org.apache.qpid.server.store.decorators.EventDecorator; + +public class SlowMessageStoreFactory implements MessageStoreFactory +{ + + @Override + public MessageStore createMessageStore(LogSubject logSubject) + { + return new EventDecorator(new SlowMessageStore()); + } + + @Override + public String getStoreClassName() + { + return SlowMessageStore.class.getSimpleName(); + } + +} diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java index ee81e7c372..91f5cb7770 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/timeouts/SyncWaitDelayTest.java @@ -54,7 +54,7 @@ public class SyncWaitDelayTest extends QpidBrokerTestCase public void setUp() throws Exception { - setConfigurationProperty("virtualhosts.virtualhost." + VIRTUALHOST+".store.class", "org.apache.qpid.server.store.SlowMessageStore"); + setConfigurationProperty("virtualhosts.virtualhost." + VIRTUALHOST+".store.factoryclass", "org.apache.qpid.server.store.SlowMessageStoreFactory"); setConfigurationProperty("virtualhosts.virtualhost." + VIRTUALHOST+".store.delays.commitTran.post", String.valueOf(POST_COMMIT_DELAY)); setConfigurationProperty("management.enabled", "false"); diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/JMXTestUtils.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/JMXTestUtils.java index 2b7c3f2664..d9c259c389 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/JMXTestUtils.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/JMXTestUtils.java @@ -329,7 +329,11 @@ public class JMXTestUtils public boolean isManagedObjectExist(String query) { return !queryObjects(query).isEmpty(); + } + public int getNumberOfObjects(String query) + { + return queryObjects(query).size(); } public <T> T getManagedObject(Class<T> managedClass, ObjectName objectName) @@ -430,8 +434,7 @@ public class JMXTestUtils } /** - * Returns the Set of ObjectNames returned by the broker for the given query, - * or null if there is problem while performing the query. + * Returns the Set of ObjectNames returned by the broker for the given query. */ private Set<ObjectName> queryObjects(String query) { @@ -441,8 +444,7 @@ public class JMXTestUtils } catch (Exception e) { - e.printStackTrace(); - return null; + throw new RuntimeException("Error using query: " + query, e); } } } diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidBrokerTestCase.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidBrokerTestCase.java index e2c107817a..c070fb4de0 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidBrokerTestCase.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidBrokerTestCase.java @@ -35,7 +35,8 @@ import org.apache.qpid.server.BrokerOptions; import org.apache.qpid.server.ProtocolExclusion; import org.apache.qpid.server.configuration.ServerConfiguration; import org.apache.qpid.server.protocol.AmqpProtocolVersion; -import org.apache.qpid.server.store.DerbyMessageStore; +import org.apache.qpid.server.store.MessageStoreConstants; +import org.apache.qpid.server.store.derby.DerbyMessageStoreFactory; import org.apache.qpid.url.URLSyntaxException; import org.apache.qpid.util.FileUtils; import org.apache.qpid.util.LogMonitor; @@ -704,22 +705,22 @@ public class QpidBrokerTestCase extends QpidTestCase protected void makeVirtualHostPersistent(String virtualhost) throws ConfigurationException, IOException { - Class<?> storeClass = null; + Class<?> storeFactoryClass = null; try { // Try and lookup the BDB class - storeClass = Class.forName("org.apache.qpid.server.store.berkeleydb.BDBMessageStore"); + storeFactoryClass = Class.forName("org.apache.qpid.server.store.berkeleydb.BDBMessageStoreFactory"); } catch (ClassNotFoundException e) { // No BDB store, we'll use Derby instead. - storeClass = DerbyMessageStore.class; + storeFactoryClass = DerbyMessageStoreFactory.class; } - setConfigurationProperty("virtualhosts.virtualhost." + virtualhost + ".store.class", - storeClass.getName()); - setConfigurationProperty("virtualhosts.virtualhost." + virtualhost + ".store." + DerbyMessageStore.ENVIRONMENT_PATH_PROPERTY, + setConfigurationProperty("virtualhosts.virtualhost." + virtualhost + ".store.factoryclass", + storeFactoryClass.getName()); + setConfigurationProperty("virtualhosts.virtualhost." + virtualhost + ".store." + MessageStoreConstants.ENVIRONMENT_PATH_PROPERTY, "${QPID_WORK}/" + virtualhost); } |
