[jboss-cvs] JBossAS SVN: r61179 - trunk/testsuite/src/main/org/jboss/test/jbossmessaging.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 7 04:07:32 EST 2007


Author: scott.stark at jboss.org
Date: 2007-03-07 04:07:31 -0500 (Wed, 07 Mar 2007)
New Revision: 61179

Modified:
   trunk/testsuite/src/main/org/jboss/test/jbossmessaging/JMSTestCase.java
Log:
Fallback to try a "jbossmessaging/"+PROP_FILE_NAME resource name.

Modified: trunk/testsuite/src/main/org/jboss/test/jbossmessaging/JMSTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/jbossmessaging/JMSTestCase.java	2007-03-07 06:44:19 UTC (rev 61178)
+++ trunk/testsuite/src/main/org/jboss/test/jbossmessaging/JMSTestCase.java	2007-03-07 09:07:31 UTC (rev 61179)
@@ -1,28 +1,28 @@
 /*
-* 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.
-*/
+ * 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.jbossmessaging;
 
 import java.net.URL;
-import java.util.Properties; 
+import java.util.Properties;
 import javax.naming.InitialContext;
 import javax.naming.NamingEnumeration;
 import javax.naming.NameClassPair;
@@ -35,12 +35,10 @@
 import org.jboss.test.JBossTestCase;
 
 /**
- * JMSTestCase.
- * A base test case for all JMS generic test cases.
- *
- * Warning:
- * If you override setUp() or tearDown(), rememeber to call the superclass
- * versions of these methods within your overriding methods. 
+ * JMSTestCase. A base test case for all JMS generic test cases.
+ * 
+ * Warning: If you override setUp() or tearDown(), rememeber to call the
+ * superclass versions of these methods within your overriding methods.
  * AbstractTestCase uses setUp() and tearDown() to initialise logging.
  * 
  * @author <a href="richard.achmatowicz at jboss.com">Richard Achmatowicz</a>
@@ -48,196 +46,242 @@
  */
 public class JMSTestCase extends JBossTestCase
 {
-    private static String PROP_FILE_NAME = "provider.properties" ;
-    private static String PROP_NAME = "jms.provider.resources.dir" ;
+   private static String PROP_FILE_NAME = "provider.properties";
 
-    protected Admin admin;
+   private static String PROP_NAME = "jms.provider.resources.dir";
 
-    /**
-     * Constructor for JMSTestCase object
-     * @param name test case name
-     */
-    public JMSTestCase(String name) 
-    {
-	super(name);
-    }
+   protected Admin admin;
 
-    /**
-     * Create the Admin object to perform all JMS adminsitrative functions
-     * in a JMS provider-independent manner
-     */
-    protected void setUp() throws Exception 
-    {
-	// perform any setUp required in the superclass
-	super.setUp() ;
+   /**
+    * Constructor for JMSTestCase object
+    * 
+    * @param name
+    *           test case name
+    */
+   public JMSTestCase(String name)
+   {
+      super(name);
+   }
 
-    	try {
-	    log.info("setting up Admin") ;
-	    // get the Admin implementation for the current JMS provider
-	    // specified in provider.properties
-	    admin = AdminFactory.getAdmin() ;
-	} catch (Exception e) {
-            throw new NestedRuntimeException("getAdmin() operation failed", e) ;
-	}
-    }
+   /**
+    * Create the Admin object to perform all JMS adminsitrative functions in a
+    * JMS provider-independent manner
+    */
+   protected void setUp() throws Exception
+   {
+      // perform any setUp required in the superclass
+      super.setUp();
 
-    /**
-     * Create a JMS Queue.
-     *
-     * The Queue is created dynamically, in a JMS provider-specific manner, 
-     * according to the instance of the Admin interface currently in use.
-     *
-     * @param name The name of the Queue to be created.
-     */
-    public void createQueue(String name) 
-    {
-        try {
-            admin.createQueue(name) ;
-        } catch (Exception e) {
-            throw new NestedRuntimeException("createQueue() operation failed", e) ;
-        }
-    }
+      try
+      {
+         log.info("setting up Admin");
+         // get the Admin implementation for the current JMS provider
+         // specified in provider.properties
+         admin = AdminFactory.getAdmin();
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException("getAdmin() operation failed", e);
+      }
+   }
 
-    /**
-     * Delete a JMS Queue.
-     *
-     * The Queue is deleted dynamically, in a JMS provider-specific manner,
-     * according to the instance of the Admin interface currently in use.
-     *
-     * @param name The name of the Queue to be deleted.
-     */
-    public void deleteQueue(String name) 
-    {
-        try {
-            admin.deleteQueue(name) ;
-        } catch (Exception e) {
-            throw new NestedRuntimeException("deleteQueue() operation failed", e) ;
-        }
-    }
+   /**
+    * Create a JMS Queue.
+    * 
+    * The Queue is created dynamically, in a JMS provider-specific manner,
+    * according to the instance of the Admin interface currently in use.
+    * 
+    * @param name
+    *           The name of the Queue to be created.
+    */
+   public void createQueue(String name)
+   {
+      try
+      {
+         admin.createQueue(name);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException("createQueue() operation failed", e);
+      }
+   }
 
-    /**
-     * Create a JMS Topic.
-     *
-     * The Topic is created dynamically, in a JMS provider-specific manner,
-     * according to the instance of the Admin interface currently in use.
-     *
-     * @param name The name of the Topic to be created.
-     */
-    public void createTopic(String name) 
-    {
-        try {
-            admin.createTopic(name) ;
-        } catch (Exception e) {
-            throw new NestedRuntimeException("createTopic() operation failed", e) ;
-        }
-    }
+   /**
+    * Delete a JMS Queue.
+    * 
+    * The Queue is deleted dynamically, in a JMS provider-specific manner,
+    * according to the instance of the Admin interface currently in use.
+    * 
+    * @param name
+    *           The name of the Queue to be deleted.
+    */
+   public void deleteQueue(String name)
+   {
+      try
+      {
+         admin.deleteQueue(name);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException("deleteQueue() operation failed", e);
+      }
+   }
 
-    /**
-     * Delete a JMS Topic.
-     *
-     * The Topic is deleted dynamically, in a JMS provider-specific manner,
-     * according to the instance of the Admin interface currently in use.
-     *
-     * @param name The name of the Topic to be deleted.
-     */
-    public void deleteTopic(String name) 
-    {
-        try {
-            admin.deleteTopic(name) ;
-        } catch (Exception e) {
-            throw new NestedRuntimeException("deleteTopic() operation failed", e) ;
-        }
-    }
+   /**
+    * Create a JMS Topic.
+    * 
+    * The Topic is created dynamically, in a JMS provider-specific manner,
+    * according to the instance of the Admin interface currently in use.
+    * 
+    * @param name
+    *           The name of the Topic to be created.
+    */
+   public void createTopic(String name)
+   {
+      try
+      {
+         admin.createTopic(name);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException("createTopic() operation failed", e);
+      }
+   }
 
-    /**
-     * Create a JMS ConnectionFactory.
-     *
-     * The ConnectionFactory is created dynamically, in a JMS provider-specific manner,
-     * according to the instance of the Admin interface currently in use.
-     *
-     * @param name The name of the ConnectionFactory to be created.
-     */
-    public void createConnectionFactory(String name) 
-    {
-	try {
-	    admin.createConnectionFactory(name) ; 
-	} catch (Exception e) {
-            throw new NestedRuntimeException("createConnectionFactory() operation failed", e) ;
-	}
-    }
+   /**
+    * Delete a JMS Topic.
+    * 
+    * The Topic is deleted dynamically, in a JMS provider-specific manner,
+    * according to the instance of the Admin interface currently in use.
+    * 
+    * @param name
+    *           The name of the Topic to be deleted.
+    */
+   public void deleteTopic(String name)
+   {
+      try
+      {
+         admin.deleteTopic(name);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException("deleteTopic() operation failed", e);
+      }
+   }
 
-    /**
-     * Delete a JMS ConnectionFactory.
-     *
-     * The ConnectionFactory is deleted dynamically, in a JMS provider-specific manner,
-     * according to the instance of the Admin interface currently in use.
-     *
-     * @param name The name of the ConnectionFactory to be deleted.
-     */
-    public void deleteConnectionFactory(String name) 
-    {
-        try {
-            admin.deleteConnectionFactory(name) ;
-        } catch (Exception e) {
-            throw new NestedRuntimeException("deleteConnectionFactory() operation failed", e) ;
-        }
-    }
+   /**
+    * Create a JMS ConnectionFactory.
+    * 
+    * The ConnectionFactory is created dynamically, in a JMS provider-specific
+    * manner, according to the instance of the Admin interface currently in use.
+    * 
+    * @param name
+    *           The name of the ConnectionFactory to be created.
+    */
+   public void createConnectionFactory(String name)
+   {
+      try
+      {
+         admin.createConnectionFactory(name);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException(
+               "createConnectionFactory() operation failed", e);
+      }
+   }
 
-    protected void dumpJNDIContext(String context)
-    {
-        try
-	    {
-		log.info("Dumping JNDI context:" + context) ;
+   /**
+    * Delete a JMS ConnectionFactory.
+    * 
+    * The ConnectionFactory is deleted dynamically, in a JMS provider-specific
+    * manner, according to the instance of the Admin interface currently in use.
+    * 
+    * @param name
+    *           The name of the ConnectionFactory to be deleted.
+    */
+   public void deleteConnectionFactory(String name)
+   {
+      try
+      {
+         admin.deleteConnectionFactory(name);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException(
+               "deleteConnectionFactory() operation failed", e);
+      }
+   }
 
-		// dump out the context name-value bindings
-		InitialContext ic = getInitialContext() ;
-		NamingEnumeration list = ic.list(context);
+   protected void dumpJNDIContext(String context)
+   {
+      try
+      {
+         log.info("Dumping JNDI context:" + context);
 
-		while (list.hasMore()) {
-		    NameClassPair nc = (NameClassPair)list.next();
-		    log.info(nc.toString());
-		}
-		log.info("Dumped JNDI context") ;
-	    } catch (Exception e) {
-		throw new NestedRuntimeException("error dumping JNDI context", e) ;
-	    }
-    }
+         // dump out the context name-value bindings
+         InitialContext ic = getInitialContext();
+         NamingEnumeration list = ic.list(context);
 
-    /**
-     * Given a resource file name, prepend a directory qualifier to that name,
-     * according to the instance of the JMS provider currently in use. 
-     *
-     * The directory name prepended is determined by the value of the property 
-     * jms.provider.resources.dir in the provider.properties resources file. 
-     *
-     * @param name The name of the resources file.
-     */
-    public static String getJMSResourceRelativePathname(String name) 
-    {
-	String directoryName ;
+         while (list.hasMore())
+         {
+            NameClassPair nc = (NameClassPair) list.next();
+            log.info(nc.toString());
+         }
+         log.info("Dumped JNDI context");
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException("error dumping JNDI context", e);
+      }
+   }
 
-	// not our problem - let someone else handle it
-	if (name == null)
-	    return name ;
+   /**
+    * Given a resource file name, prepend a directory qualifier to that name,
+    * according to the instance of the JMS provider currently in use.
+    * 
+    * The directory name prepended is determined by the value of the property
+    * jms.provider.resources.dir in the provider.properties resources file.
+    * 
+    * @param name
+    *           The name of the resources file.
+    */
+   public static String getJMSResourceRelativePathname(String name)
+   {
+      String directoryName;
 
-        try {
-	    // get the JMS provider specific directory name
-            Properties props = new Properties() ;
-            ClassLoader loader = Thread.currentThread().getContextClassLoader();
-            URL propsURL = loader.getResource(PROP_FILE_NAME);
-            System.err.println("using provider.properties: "+propsURL);
-            props.load(propsURL.openStream()) ;
-            directoryName = props.getProperty(PROP_NAME) ;
-        } catch (Exception e) {
-            throw new NestedRuntimeException("error getting JMS provider directory name", e) ;
-        }
+      // not our problem - let someone else handle it
+      if (name == null)
+         return name;
 
-	if (directoryName == null) {
-	    throw new NestedRuntimeException("Property " + PROP_NAME + " has not been found in the file "
-					     + PROP_FILE_NAME + ".") ;
-	}
+      try
+      {
+         // get the JMS provider specific directory name
+         Properties props = new Properties();
+         ClassLoader loader = Thread.currentThread().getContextClassLoader();
+         URL propsURL = loader.getResource(PROP_FILE_NAME);
+         if( propsURL == null )
+         {
+            // Assume the properties are under a jbossmessaging prefix
+            propsURL = loader.getResource("jbossmessaging/"+PROP_FILE_NAME);
+         }
+         System.err.println("using provider.properties: " + propsURL);
+         props.load(propsURL.openStream());
+         directoryName = props.getProperty(PROP_NAME);
+      }
+      catch (Exception e)
+      {
+         throw new NestedRuntimeException(
+               "error getting JMS provider directory name", e);
+      }
 
-	// return the resource name with directory prepended
-	return (String) (directoryName + "/" + name) ;
-    }
+      if (directoryName == null)
+      {
+         throw new NestedRuntimeException("Property " + PROP_NAME
+               + " has not been found in the file " + PROP_FILE_NAME + ".");
+      }
+
+      // return the resource name with directory prepended
+      return (String) (directoryName + "/" + name);
+   }
 }




More information about the jboss-cvs-commits mailing list