/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.management.cli; import org.jboss.as.test.integration.management.base.AbstractCliTestBase; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import org.jboss.arquillian.junit.Arquillian; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; /** * * @author Dominik Pospisil <dpospisi@redhat.com> */ @RunWith(Arquillian.class) public class JmsTestCase extends AbstractCliTestBase { @BeforeClass public static void before() throws Exception { AbstractCliTestBase.initCLI(); } @AfterClass public static void after() throws Exception { AbstractCliTestBase.closeCLI(); } @Test public void testAddRemoveJmsQueue() throws Exception { testAddJmsQueue(); testRemoveJmsQueue(); } @Test public void testAddRemoveJmsTopic() throws Exception { testAddJmsTopic(); testRemoveJmsTopic(); } private void testAddJmsQueue() throws Exception { String queueName = "testJmsQueue"; // check the queue is not registered cli.sendLine("cd /subsystem=messaging-activemq/server=default/jms-queue"); cli.sendLine("ls"); String ls = cli.readOutput(); assertFalse(ls.contains(queueName)); // create queue cli.sendLine(String.format("jms-queue add --queue-address=%s --entries=%s", queueName, queueName)); // check it is listed cli.sendLine("cd /subsystem=messaging-activemq/server=default/jms-queue"); cli.sendLine("ls"); ls = cli.readOutput(); assertTrue(ls.contains(queueName)); } private void testRemoveJmsQueue() throws Exception { String queueName = "testJmsQueue"; // remove the queue cli.sendLine("jms-queue remove --queue-address=" + queueName); // check it is listed cli.sendLine("cd /subsystem=messaging-activemq/server=default/jms-queue"); cli.sendLine("ls"); String ls = cli.readOutput(); assertFalse(ls.contains(queueName)); } private void testAddJmsTopic() throws Exception { // check the queue is not registered cli.sendLine("cd /subsystem=messaging-activemq/server=default/jms-topic"); cli.sendLine("ls"); String ls = cli.readOutput(); Assert.assertNull(ls); // create topic cli.sendLine("jms-topic add --topic-address=testJmsTopic --entries=testJmsTopic"); // check it is listed cli.sendLine("cd /subsystem=messaging-activemq/server=default/jms-topic"); cli.sendLine("ls"); ls = cli.readOutput(); assertTrue(ls.contains("testJmsTopic")); } private void testRemoveJmsTopic() throws Exception { // create queue cli.sendLine("jms-topic remove --topic-address=testJmsTopic"); // check it is listed cli.sendLine("cd /subsystem=messaging-activemq/server=default/jms-topic"); cli.sendLine("ls"); String ls = cli.readOutput(); Assert.assertNull(ls); } }