diff options
author | Martin Ritchie <ritchiem@apache.org> | 2008-09-03 16:30:06 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2008-09-03 16:30:06 +0000 |
commit | d5de45b05ceb2ed210ab510938f0619d3c5d2337 (patch) | |
tree | b2d67a3c2c2253fc88e6fe63afbb994842d9655b | |
parent | 03e2a3ab68f35e70967659b248709612b3a09a87 (diff) | |
download | qpid-python-d5de45b05ceb2ed210ab510938f0619d3c5d2337.tar.gz |
QPID-1266 : Actually added the test.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@691668 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/java/broker/src/test/java/org/apache/qpid/server/queue/SimpleAMQQueueThreadPoolTest.java | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/SimpleAMQQueueThreadPoolTest.java b/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/SimpleAMQQueueThreadPoolTest.java new file mode 100644 index 0000000000..106ed8c941 --- /dev/null +++ b/qpid/java/broker/src/test/java/org/apache/qpid/server/queue/SimpleAMQQueueThreadPoolTest.java @@ -0,0 +1,63 @@ +/* + * + * 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.queue; + +import junit.framework.TestCase; +import org.apache.qpid.framing.AMQShortString; +import org.apache.qpid.pool.ReferenceCountingExecutorService; +import org.apache.qpid.server.virtualhost.VirtualHost; + +import org.apache.qpid.server.registry.ApplicationRegistry; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class SimpleAMQQueueThreadPoolTest extends TestCase +{ + private static final Logger _logger = LoggerFactory.getLogger(VirtualHost.class); + + public void test() + { + VirtualHost test = ApplicationRegistry.getInstance(1).getVirtualHostRegistry().getVirtualHost("test"); + + try + { + SimpleAMQQueue queue = (SimpleAMQQueue) AMQQueueFactory.createAMQQueueImpl(new AMQShortString("test"), false, + new AMQShortString("owner"), + false, test, null); + + assertTrue("Creation did not start Pool.", !ReferenceCountingExecutorService.getInstance().getPool().isShutdown()); + + queue.stop(); + + assertEquals("References still exist", 0, ReferenceCountingExecutorService.getInstance().getReferenceCount()); + + assertTrue("Stop did not clean up.", ReferenceCountingExecutorService.getInstance().getPool().isShutdown()); + + } + catch (Exception e) + { + e.printStackTrace(); + fail(e.getCause() == null ? e.getMessage() : e.getCause().getMessage()); + } + + ApplicationRegistry.remove(1); + } +} |