[jboss-cvs] JBossAS SVN: r97947 - in projects/jboss-jca/trunk/deployers: src/test/java/org/jboss/jca/test/deployers/spec and 5 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Dec 17 05:27:47 EST 2009


Author: jeff.zhang
Date: 2009-12-17 05:27:47 -0500 (Thu, 17 Dec 2009)
New Revision: 97947

Added:
   projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/
   projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnection.java
   projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnectionFactory.java
   projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/package.html
   projects/jboss-jca/trunk/deployers/src/test/resources/ra10dtdout.rar/
   projects/jboss-jca/trunk/deployers/src/test/resources/ra10dtdout.rar/META-INF/
   projects/jboss-jca/trunk/deployers/src/test/resources/ra10dtdout.rar/META-INF/ra.xml
Modified:
   projects/jboss-jca/trunk/deployers/build.xml
   projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/RarTestCase.java
Log:
[JBJCA-246] DTD 1.0 testcase

Modified: projects/jboss-jca/trunk/deployers/build.xml
===================================================================
--- projects/jboss-jca/trunk/deployers/build.xml	2009-12-17 09:52:21 UTC (rev 97946)
+++ projects/jboss-jca/trunk/deployers/build.xml	2009-12-17 10:27:47 UTC (rev 97947)
@@ -274,6 +274,15 @@
    </jar>
    <delete file="${build.deployers.dir}/ra16inoutjar.jar"/>
   	
+    <jar destfile="${build.deployers.dir}/ra10dtdout.rar"
+         manifest="src/main/resources/rar-manifest.mf">
+       <fileset dir="${build.deployers.dir}/test"
+          includes="org/jboss/jca/test/deployers/spec/rars/*.class"/>
+       <fileset dir="${build.deployers.dir}/test"
+          includes="org/jboss/jca/test/deployers/spec/rars/ra10dtdout/*.class"/>
+       <fileset dir="src/test/resources/ra10dtdout.rar"/>
+    </jar>     	
+  	
     <jar destfile="${build.deployers.dir}/rafail2connector.rar"
          manifest="src/main/resources/rar-manifest.mf">
        <fileset dir="${build.deployers.dir}/test"

Modified: projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/RarTestCase.java
===================================================================
--- projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/RarTestCase.java	2009-12-17 09:52:21 UTC (rev 97946)
+++ projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/RarTestCase.java	2009-12-17 10:27:47 UTC (rev 97947)
@@ -59,6 +59,30 @@
    // --------------------------------------------------------------------------------||
 
    /**
+    * ra10dtdout.rar
+    * @throws Throwable throwable exception 
+    */
+   @Test
+   public void testRa10dtdout() throws Throwable
+   {
+      URL archive = getURL("ra10dtdout.rar");
+ 
+      try
+      {
+         embedded.deploy(archive);
+      }
+      catch (Throwable t)
+      {
+         log.error(t.getMessage(), t);
+         fail(t.getMessage());
+      }
+      finally
+      {
+         embedded.undeploy(archive);
+      }
+   }
+   
+   /**
     * ra15dtdinout.rar
     * @throws Throwable throwable exception 
     */

Added: projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnection.java
===================================================================
--- projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnection.java	                        (rev 0)
+++ projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnection.java	2009-12-17 10:27:47 UTC (rev 97947)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, 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.jca.test.deployers.spec.rars.ra10dtdout;
+
+import org.jboss.jca.test.deployers.spec.rars.BaseManagedConnection;
+
+/**
+ * TestManagedConnection
+ * @author <a href="mailto:jeff.zhang at jboss.org">Jeff Zhang</a>
+ * @version $Revision: $
+ */
+public class TestManagedConnection extends BaseManagedConnection
+{
+
+}

Added: projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnectionFactory.java
===================================================================
--- projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnectionFactory.java	                        (rev 0)
+++ projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/TestManagedConnectionFactory.java	2009-12-17 10:27:47 UTC (rev 97947)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, 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.jca.test.deployers.spec.rars.ra10dtdout;
+
+import org.jboss.jca.test.deployers.spec.rars.BaseManagedConnectionFactory;
+
+/**
+ * TestManagedConnectionFactory
+ * @author <a href="mailto:jeff.zhang at jboss.org">Jeff Zhang</a>
+ * @version $Revision: $
+ */
+public class TestManagedConnectionFactory extends BaseManagedConnectionFactory
+{
+   private static final long serialVersionUID = 1L;
+}

Added: projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/package.html
===================================================================
--- projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/package.html	                        (rev 0)
+++ projects/jboss-jca/trunk/deployers/src/test/java/org/jboss/jca/test/deployers/spec/rars/ra10dtdout/package.html	2009-12-17 10:27:47 UTC (rev 97947)
@@ -0,0 +1,3 @@
+<body>
+Test cases about deployers.
+</body>

Added: projects/jboss-jca/trunk/deployers/src/test/resources/ra10dtdout.rar/META-INF/ra.xml
===================================================================
--- projects/jboss-jca/trunk/deployers/src/test/resources/ra10dtdout.rar/META-INF/ra.xml	                        (rev 0)
+++ projects/jboss-jca/trunk/deployers/src/test/resources/ra10dtdout.rar/META-INF/ra.xml	2009-12-17 10:27:47 UTC (rev 97947)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- $Id $ -->
+
+<!DOCTYPE connector PUBLIC
+ "-//Sun Microsystems, Inc.//DTD Connector 1.0//EN"
+ "http://java.sun.com/dtd/connector_1_0.dtd">
+
+<connector>
+   <display-name>en-connector-disp</display-name>
+   <description>en-connector-desc</description>
+   <vendor-name>Red Hat Middleware LLC</vendor-name>
+   <spec-version>1.0</spec-version>
+   <eis-type>JMS 1.1 Server</eis-type>
+   <version>6.0</version>
+
+   <resourceadapter>
+
+     <managedconnectionfactory-class>org.jboss.jca.test.deployers.spec.rars.ra10dtdout.TestManagedConnectionFactory</managedconnectionfactory-class>
+
+     <connectionfactory-interface>javax.resource.spi.ManagedConnection</connectionfactory-interface>
+     <connectionfactory-impl-class>org.jboss.jca.test.deployers.spec.rars.ra10dtdout.TestManagedConnection</connectionfactory-impl-class>
+     <connection-interface>org.jboss.jca.test.deployers.spec.rars.TestConnectionInterface</connection-interface>
+     <connection-impl-class>org.jboss.jca.test.deployers.spec.rars.TestConnection</connection-impl-class>
+
+     <transaction-support>LocalTransaction</transaction-support>
+     <authentication-mechanism id="amid">
+        <description>authentication-mechanism</description>
+        <authentication-mechanism-type>BasicPassword</authentication-mechanism-type>
+        <credential-interface>javax.resource.spi.security.PasswordCredential</credential-interface>
+     </authentication-mechanism>
+     <reauthentication-support>false</reauthentication-support>
+      <security-permission>
+     <description></description>
+     <security-permission-spec>sa</security-permission-spec>
+     </security-permission>
+
+   </resourceadapter>
+</connector>




More information about the jboss-cvs-commits mailing list