[jboss-cvs] JBossAS SVN: r61264 - trunk/testsuite/src/main/org/jboss/test/jbossmq/perf.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Mar 11 03:40:22 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-03-11 03:40:21 -0400 (Sun, 11 Mar 2007)
New Revision: 61264

Removed:
   trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/InvocationLayerStressTest.java
   trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/UIL2InvocationLayerStressTestCase.java
Modified:
   trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/JBossMQPerfStressTestCase.java
   trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/SendReplyPerfStressTestCase.java
Log:
Drop obsolete mq specific tests and add missing super.setUp calls

Deleted: trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/InvocationLayerStressTest.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/InvocationLayerStressTest.java	2007-03-11 07:32:18 UTC (rev 61263)
+++ trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/InvocationLayerStressTest.java	2007-03-11 07:40:21 UTC (rev 61264)
@@ -1,206 +0,0 @@
-/*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt 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.test.jbossmq.perf;
-
-import javax.jms.DeliveryMode;
-import javax.jms.Message;
-import javax.jms.Queue;
-import javax.jms.QueueConnection;
-import javax.jms.QueueConnectionFactory;
-import javax.jms.QueueReceiver;
-import javax.jms.QueueSender;
-import javax.jms.QueueSession;
-import javax.jms.Session;
-import javax.jms.TopicConnection;
-import javax.jms.TopicConnectionFactory;
-import javax.management.ObjectName;
-import javax.naming.Context;
-import javax.naming.InitialContext;
-
-import org.jboss.logging.Logger;
-import org.jboss.test.JBossTestCase;
-
-import EDU.oswego.cs.dl.util.concurrent.Semaphore;
-
-/**
- * JBossMQPerfStressTestCase.java Some simple tests of JBossMQ
- *
- * @author    <a href="mailto:hiram.chirino at jboss.org">Hiram Chirino</a>
- * @version   $Revision$
- */
-
-public class InvocationLayerStressTest extends JBossTestCase
-{
-   Context context;
-   QueueConnection queueConnection;
-   TopicConnection topicConnection;
-   static final int WORKER_COUNT = Integer.parseInt(System.getProperty("jbosstest.threadcount", "10"));
-   static final int MESSAGE_COUNT = Integer.parseInt(System.getProperty("jbosstest.iterationcount", "500"));
-   Semaphore exitSemaphore;
-
-   /**
-    * Constructor for the JBossMQPerfStressTestCase object
-    *
-    * @param name           Description of Parameter
-    * @exception Exception  Description of Exception
-    */
-   public InvocationLayerStressTest(String name) throws Exception
-   {
-      super(name);
-   }
-
-
-   public void createQueue(String name)
-   {
-      try
-      {
-         ObjectName objn = new ObjectName("jboss.mq:service=DestinationManager");
-         getServer().invoke(objn, "createQueue", new Object[]{name, name}, new String[]{String.class.getName(), String.class.getName()});
-      }
-      catch (Exception e)
-      {
-         e.printStackTrace();
-      }
-   }
-
-   public void createTopic(String name)
-   {
-      try
-      {
-         ObjectName objn = new ObjectName("jboss.mq:service=DestinationManager");
-         getServer().invoke(objn, "createTopic", new Object[]{name, name}, new String[]{String.class.getName(), String.class.getName()});
-      }
-      catch (Exception e)
-      {
-         e.printStackTrace();
-      }
-   }
-
-   public void deleteQueue(String name)
-   {
-      try
-      {
-         ObjectName objn = new ObjectName("jboss.mq:service=DestinationManager");
-         getServer().invoke(objn, "destroyQueue", new Object[]{name}, new String[]{String.class.getName()});
-      }
-      catch (Exception e)
-      {
-         e.printStackTrace();
-      }
-   }
-
-   public void deleteTopic(String name)
-   {
-      try
-      {
-         ObjectName objn = new ObjectName("jboss.mq:service=DestinationManager");
-         getServer().invoke(objn, "destroyTopic", new Object[]{name}, new String[]{String.class.getName()});
-      }
-      catch (Exception e)
-      {
-         e.printStackTrace();
-      }
-   }
-
-   protected void connect(String queueLoc, String topicLoc) throws Exception
-   {
-      context = new InitialContext();
-      QueueConnectionFactory queueFactory = (QueueConnectionFactory) context.lookup(queueLoc);
-      queueConnection = queueFactory.createQueueConnection();
-
-      TopicConnectionFactory topicFactory = (TopicConnectionFactory) context.lookup(topicLoc);
-      topicConnection = topicFactory.createTopicConnection();
-   }
-
-   protected void disconnect() throws Exception
-   {
-      queueConnection.close();
-      topicConnection.close();
-   }
-
-
-   class QueueWorker extends Thread
-   {
-      String queueName;
-      Throwable exception;
-      Object signal = new Object();
-      Logger log = Logger.getLogger(QueueWorker.class);
-
-      QueueWorker(String queueName, String ilType)
-      {
-         super(queueName);
-         this.queueName = queueName;
-         this.log = Logger.getLogger("QueueWorker."+queueName+"."+ilType);
-      }
-
-      public void run()
-      {
-         log.info("QueueWorker Running: " + queueName);
-
-         try
-         {
-            work();
-         }
-         catch (Throwable e)
-         {
-            exception = e;
-            log.error("Exception:", e);
-         }
-
-         // Signal the main thread that we are done.
-         log.debug("Notifying main thread: ");
-         exitSemaphore.release();
-
-         log.info("QueueWorker Done: " + queueName);
-      }
-
-      void work() throws Exception
-      {
-         createQueue(queueName);
-         QueueSession session = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
-         Queue queue = (Queue) context.lookup(queueName);
-
-         // Send the messages
-         QueueSender sender = session.createSender(queue);
-         sender.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
-         Message message = session.createTextMessage("Test Message");
-         for (int i = 0; i < MESSAGE_COUNT; i++)
-         {
-            sender.send(message);
-            log.debug("Sent message " + i + " to queue :" + queueName);
-         }
-
-         // Receive the messages
-         QueueReceiver receiver = session.createReceiver(queue);
-         for (int i = 0; i < MESSAGE_COUNT; i++)
-         {
-            message = receiver.receive(5000);
-            log.debug("Received message " + i + " from queue :" + queueName);
-            if( message == null )
-               fail("Received of msg timedout");
-         }
-         session.close();
-         deleteQueue(queueName);
-      }
-
-   }
-}

Modified: trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/JBossMQPerfStressTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/JBossMQPerfStressTestCase.java	2007-03-11 07:32:18 UTC (rev 61263)
+++ trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/JBossMQPerfStressTestCase.java	2007-03-11 07:40:21 UTC (rev 61264)
@@ -706,6 +706,7 @@
     */
    protected void setUp() throws Exception
    {
+      super.setUp();
       if (context == null)
       {
 

Modified: trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/SendReplyPerfStressTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/SendReplyPerfStressTestCase.java	2007-03-11 07:32:18 UTC (rev 61263)
+++ trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/SendReplyPerfStressTestCase.java	2007-03-11 07:40:21 UTC (rev 61264)
@@ -282,6 +282,7 @@
 
    protected void setUp() throws Exception
    {
+      super.setUp();
       getLog().info("Starting test: " + getName());
 
       context = getInitialContext();

Deleted: trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/UIL2InvocationLayerStressTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/UIL2InvocationLayerStressTestCase.java	2007-03-11 07:32:18 UTC (rev 61263)
+++ trunk/testsuite/src/main/org/jboss/test/jbossmq/perf/UIL2InvocationLayerStressTestCase.java	2007-03-11 07:40:21 UTC (rev 61264)
@@ -1,95 +0,0 @@
-/*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt 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.test.jbossmq.perf;
-
-import junit.textui.TestRunner;
-import EDU.oswego.cs.dl.util.concurrent.Semaphore;
-
-/**
- * JBossMQPerfStressTestCase.java Some simple tests of JBossMQ
- *
- * @author    <a href="mailto:hiram.chirino at jboss.org">Hiram Chirino</a>
- * @version   $Revision$
- */
-
-public class UIL2InvocationLayerStressTestCase extends InvocationLayerStressTest
-{
-   /**
-    * Constructor for the JBossMQPerfStressTestCase object
-    *
-    * @param name           Description of Parameter
-    * @exception Exception  Description of Exception
-    */
-   public UIL2InvocationLayerStressTestCase(String name) throws Exception
-   {
-      super(name);
-   }
-
-
-   /**
-    * A unit test for JUnit
-    *
-    * @exception Exception  Description of Exception
-    */
-   public void testUIL2MutliSessionOneConnection() throws Exception
-   {
-      getLog().debug("Starting UIL2 MutliSessionOneConnection test");
-
-      connect("UIL2ConnectionFactory", "UIL2ConnectionFactory");
-      queueConnection.start();
-      exitSemaphore = new Semaphore(-WORKER_COUNT);
-      exitSemaphore.release();
-
-      getLog().debug("Creating workers.");
-      QueueWorker workers[] = new QueueWorker[WORKER_COUNT];
-      for (int i = 0; i < WORKER_COUNT; i++)
-      {
-         workers[i] = new QueueWorker("ConnectionTestQueue-" + i, "UIL2");
-      }
-
-      getLog().debug("Starting workers.");
-      for (int i = 0; i < WORKER_COUNT; i++)
-      {
-         workers[i].start();
-      }
-
-      getLog().debug("Waiting for workers to finish.");
-      exitSemaphore.acquire();
-
-      disconnect();
-      getLog().debug("UIL2 MutliSessionOneConnection passed");
-   }
-
-   /**
-    * The main entry-point for the JBossMQPerfStressTestCase class
-    *
-    * @param args  The command line arguments
-    */
-   public static void main(String[] args)
-   {
-
-      String newArgs[] = {"org.jboss.test.jbossmq.perf.UIL2InvocationLayerStressTestCase"};
-      TestRunner.main(newArgs);
-
-   }
-
-}




More information about the jboss-cvs-commits mailing list