[jboss-cvs] JBossAS SVN: r92249 - in branches/JBPAPP_5_0/testsuite: src/main/org/jboss/test/jaxr/scout and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 11 22:11:09 EDT 2009


Author: anil.saldhana at jboss.com
Date: 2009-08-11 22:11:09 -0400 (Tue, 11 Aug 2009)
New Revision: 92249

Modified:
   branches/JBPAPP_5_0/testsuite/build.xml
   branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/JaxrBaseTestCase.java
   branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/publish/JaxrDeleteAssociationTestCase.java
Log:
JBPAPP-2340: exclude the associations related JAXR tests as they are buggy and need to be discarded

Modified: branches/JBPAPP_5_0/testsuite/build.xml
===================================================================
--- branches/JBPAPP_5_0/testsuite/build.xml	2009-08-12 02:09:06 UTC (rev 92248)
+++ branches/JBPAPP_5_0/testsuite/build.xml	2009-08-12 02:11:09 UTC (rev 92249)
@@ -715,7 +715,7 @@
    </patternset>
    <patternset id="jaxr.includes">
       <include name="org/jboss/test/jaxr/scout/**/*TestCase.class"/>
-      <exclude name="org/jboss/test/jaxr/scout/**/JaxrDeleteAssociationTestCase.class"/>
+      <exclude name="org/jboss/test/jaxr/scout/**/Jaxr*Association*TestCase.class"/>
    </patternset>
    <!-- jbossmessaging includes -->
    <patternset id="jbossmessaging.includes">

Modified: branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/JaxrBaseTestCase.java
===================================================================
--- branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/JaxrBaseTestCase.java	2009-08-12 02:09:06 UTC (rev 92248)
+++ branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/JaxrBaseTestCase.java	2009-08-12 02:11:09 UTC (rev 92249)
@@ -133,9 +133,12 @@
     {
         if (connection != null) connection.close();
         //stop the juddi service so that all the tables are dropped
-        server.invokeOperation(OBJECT_NAME, "setCreateOnStart",
+        /*server.invokeOperation(OBJECT_NAME, "setCreateOnStart",
                 new Object[]{Boolean.FALSE},
-                new String[]{Boolean.TYPE.getName()}); 
+                new String[]{Boolean.TYPE.getName()});*/
+        server.invokeOperation(OBJECT_NAME, "setDropDB",
+              new Object[]{Boolean.TRUE},
+              new String[]{Boolean.TYPE.getName()});
         server.invokeOperation(OBJECT_NAME, "stop",
                 null, null);
     }

Modified: branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/publish/JaxrDeleteAssociationTestCase.java
===================================================================
--- branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/publish/JaxrDeleteAssociationTestCase.java	2009-08-12 02:09:06 UTC (rev 92248)
+++ branches/JBPAPP_5_0/testsuite/src/main/org/jboss/test/jaxr/scout/publish/JaxrDeleteAssociationTestCase.java	2009-08-12 02:11:09 UTC (rev 92249)
@@ -25,6 +25,7 @@
 import java.util.Collection;
 import java.util.Iterator;
 
+import javax.xml.registry.BulkResponse;
 import javax.xml.registry.BusinessLifeCycleManager;
 import javax.xml.registry.BusinessQueryManager;
 import javax.xml.registry.Connection;
@@ -96,6 +97,8 @@
             {
                 fail(" Source::Save Organizations failed");
             }
+            log.debug("Saved Source Organization");
+            
             sourceKeys = br.getCollection();
             Iterator iter = sourceKeys.iterator();
             while (iter.hasNext())
@@ -135,6 +138,8 @@
             blm.confirmAssociation(a);
             blm2.confirmAssociation(a);
 
+            log.debug("Confirmed the association");
+            
             // publish the Association
             Collection associations = new ArrayList();
             associations.add(a);
@@ -145,6 +150,8 @@
                 fail("Second User :save Association failed");
             }
 
+            log.debug("Second User: saved the association");
+            
             br = bqm.findCallerAssociations(null,
                     new Boolean(true),
                     new Boolean(true),
@@ -175,8 +182,8 @@
                    fail("Deletion of Associations failed");
 
                 System.out.println("JBAS-7129 needs to be fixed");
-                /*
                 
+                
                 BulkResponse brq = bqm.findCallerAssociations(null, Boolean.TRUE, Boolean.TRUE, null);
                 if (brq.getExceptions() == null)
                 {
@@ -195,7 +202,7 @@
                        }
                     } 
                 }
-               */
+               
             }
 
         } catch (Exception e)




More information about the jboss-cvs-commits mailing list