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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri May 23 10:32:17 EDT 2008


Author: dimitris at jboss.org
Date: 2008-05-23 10:32:17 -0400 (Fri, 23 May 2008)
New Revision: 73622

Modified:
   trunk/testsuite/src/main/org/jboss/test/management/test/DeploymentDescriptorUnitTestCase.java
   trunk/testsuite/src/main/org/jboss/test/management/test/JSR77SpecUnitTestCase.java
Log:
JBAS-5545, exclude tests for which the jsr77 implementation is not there yet.

Modified: trunk/testsuite/src/main/org/jboss/test/management/test/DeploymentDescriptorUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/management/test/DeploymentDescriptorUnitTestCase.java	2008-05-23 14:21:43 UTC (rev 73621)
+++ trunk/testsuite/src/main/org/jboss/test/management/test/DeploymentDescriptorUnitTestCase.java	2008-05-23 14:32:17 UTC (rev 73622)
@@ -1,24 +1,24 @@
 /*
-  * 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.management.test;
 
 import javax.management.ObjectName;
@@ -43,59 +43,65 @@
       super(name);
    }
 
-   /**
-    * A -service.xml module (conf/jboss-service.xml)
-    */
-   public void testGetServiceXmlDescriptor() throws Exception
+   public void testNop() throws Exception
    {
-      String moduleName = "jboss-service.xml";
-      String moduleType = "ServiceModule";
-      
-      String descriptor = getDescriptor(moduleType, moduleName);
-      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
-            descriptor != null && !descriptor.equals(""));
+      // remove this when the tests are re-enabled
    }
    
-   /**
-    * A .sar module (deploy/jbossweb-tomcat55.sar)
-    */
-   public void testGetSarDescriptor() throws Exception
-   {
-      String moduleName = "jbossweb-tomcat55.sar";
-      String moduleType = "ServiceModule";
-      
-      String descriptor = getDescriptor(moduleType, moduleName);
-      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
-            descriptor != null && !descriptor.equals(""));
-   }
+// NYI - see JBAS-5545
+//   /**
+//    * A -service.xml module (conf/jboss-service.xml)
+//    */
+//   public void testGetServiceXmlDescriptor() throws Exception
+//   {
+//      String moduleName = "jboss-service.xml";
+//      String moduleType = "ServiceModule";
+//      
+//      String descriptor = getDescriptor(moduleType, moduleName);
+//      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
+//            descriptor != null && !descriptor.equals(""));
+//   }
+//   
+//   /**
+//    * A .sar module (deploy/jbossweb-tomcat55.sar)
+//    */
+//   public void testGetSarDescriptor() throws Exception
+//   {
+//      String moduleName = "jbossweb-tomcat55.sar";
+//      String moduleType = "ServiceModule";
+//      
+//      String descriptor = getDescriptor(moduleType, moduleName);
+//      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
+//            descriptor != null && !descriptor.equals(""));
+//   }
+//   
+//   /**
+//    * A -deployer.xml module (deploy/ejb-deployer.xml)
+//    */
+//   public void testGetDeployerXmlDescriptor() throws Exception
+//   {
+//      String moduleName = "ejb-deployer.xml";
+//      String moduleType = "ServiceModule";
+//      
+//      String descriptor = getDescriptor(moduleType, moduleName);
+//      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
+//            descriptor != null && !descriptor.equals(""));
+//   }
+//   
+//   /**
+//    * A .deployer module (deploy/jboss-aop.deployer)
+//    */
+//   public void testGetDeployerDescriptor() throws Exception
+//   {
+//      String moduleName = "jboss-aop.deployer";
+//      String moduleType = "ServiceModule";
+//      
+//      String descriptor = getDescriptor(moduleType, moduleName);
+//      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
+//            descriptor != null && !descriptor.equals(""));
+//   }
    
    /**
-    * A -deployer.xml module (deploy/ejb-deployer.xml)
-    */
-   public void testGetDeployerXmlDescriptor() throws Exception
-   {
-      String moduleName = "ejb-deployer.xml";
-      String moduleType = "ServiceModule";
-      
-      String descriptor = getDescriptor(moduleType, moduleName);
-      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
-            descriptor != null && !descriptor.equals(""));
-   }
-   
-   /**
-    * A .deployer module (deploy/jboss-aop.deployer)
-    */
-   public void testGetDeployerDescriptor() throws Exception
-   {
-      String moduleName = "jboss-aop.deployer";
-      String moduleType = "ServiceModule";
-      
-      String descriptor = getDescriptor(moduleType, moduleName);
-      assertTrue("Empty or null deployment descriptor: " + descriptor + " for module: " + moduleName,
-            descriptor != null && !descriptor.equals(""));
-   }
-   
-   /**
     * Get the "deploymentDescriptor" attribute for a deployed module
     */
    private String getDescriptor(String moduleType, String moduleName) throws Exception

Modified: trunk/testsuite/src/main/org/jboss/test/management/test/JSR77SpecUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/management/test/JSR77SpecUnitTestCase.java	2008-05-23 14:21:43 UTC (rev 73621)
+++ trunk/testsuite/src/main/org/jboss/test/management/test/JSR77SpecUnitTestCase.java	2008-05-23 14:32:17 UTC (rev 73622)
@@ -1,24 +1,24 @@
 /*
-  * 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.management.test;
 
 import java.lang.reflect.UndeclaredThrowableException;




More information about the jboss-cvs-commits mailing list