/* * 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.artemis.tests.integration.amqp; import java.util.concurrent.TimeUnit; import javax.jms.Connection; import javax.jms.MessageConsumer; import javax.jms.MessageProducer; import javax.jms.Session; import javax.jms.TemporaryQueue; import javax.jms.TemporaryTopic; import javax.jms.TextMessage; import org.apache.activemq.artemis.core.server.Queue; import org.apache.activemq.artemis.tests.util.Wait; import org.junit.Test; public class JMSTemporaryDestinationTest extends JMSClientTestSupport { @Test(timeout = 60000) public void testCreateTemporaryQueue() throws Throwable { Connection connection = createConnection(); try { Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); TemporaryQueue queue = session.createTemporaryQueue(); System.out.println("queue:" + queue.getQueueName()); MessageProducer producer = session.createProducer(queue); TextMessage message = session.createTextMessage(); message.setText("Message temporary"); producer.send(message); MessageConsumer consumer = session.createConsumer(queue); connection.start(); message = (TextMessage) consumer.receive(5000); assertNotNull(message); } finally { connection.close(); } } @Test(timeout = 30000) public void testDeleteTemporaryQueue() throws Exception { Connection connection = createConnection(); try { Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); final javax.jms.Queue queue = session.createTemporaryQueue(); assertNotNull(queue); assertTrue(queue instanceof TemporaryQueue); Queue queueView = getProxyToQueue(queue.getQueueName()); assertNotNull(queueView); TemporaryQueue tempQueue = (TemporaryQueue) queue; tempQueue.delete(); assertTrue("Temp Queue should be deleted.", Wait.waitFor(new Wait.Condition() { @Override public boolean isSatisfied() throws Exception { return getProxyToQueue(queue.getQueueName()) == null; } }, TimeUnit.SECONDS.toMillis(30), TimeUnit.MILLISECONDS.toMillis(50))); } finally { connection.close(); } } @Test(timeout = 60000) public void testCreateTemporaryTopic() throws Throwable { Connection connection = createConnection(); Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); TemporaryTopic topic = session.createTemporaryTopic(); System.out.println("topic:" + topic.getTopicName()); MessageConsumer consumer = session.createConsumer(topic); MessageProducer producer = session.createProducer(topic); TextMessage message = session.createTextMessage(); message.setText("Message temporary"); producer.send(message); connection.start(); message = (TextMessage) consumer.receive(5000); assertNotNull(message); } @Test(timeout = 30000) public void testDeleteTemporaryTopic() throws Exception { Connection connection = createConnection(); try { Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); final javax.jms.Topic topic = session.createTemporaryTopic(); assertNotNull(topic); assertTrue(topic instanceof TemporaryTopic); Queue queueView = getProxyToQueue(topic.getTopicName()); assertNotNull(queueView); TemporaryTopic tempTopic = (TemporaryTopic) topic; tempTopic.delete(); assertTrue("Temp Queue should be deleted.", Wait.waitFor(new Wait.Condition() { @Override public boolean isSatisfied() throws Exception { return getProxyToQueue(topic.getTopicName()) == null; } }, TimeUnit.SECONDS.toMillis(30), TimeUnit.MILLISECONDS.toMillis(50))); } finally { connection.close(); } } }