[jboss-cvs] JBossAS SVN: r82598 - in projects/metadata/trunk/src/test: resources/org/jboss/test/metadata/rar and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Jan 4 21:29:30 EST 2009


Author: jeff.zhang
Date: 2009-01-04 21:29:30 -0500 (Sun, 04 Jan 2009)
New Revision: 82598

Added:
   projects/metadata/trunk/src/test/resources/org/jboss/test/metadata/rar/JcaDs50_testEverything.xml
Modified:
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JbossRA10UnitTestCase.java
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JcaDs50UnitTestCase.java
Log:
[JBMETA-158] rar testcase cover all description

Modified: projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JbossRA10UnitTestCase.java
===================================================================
--- projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JbossRA10UnitTestCase.java	2009-01-05 00:24:18 UTC (rev 82597)
+++ projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JbossRA10UnitTestCase.java	2009-01-05 02:29:30 UTC (rev 82598)
@@ -45,6 +45,6 @@
       assertNotNull(jbossRA);
       assertEquals(jbossRA.getRaConfigProps().size(), 9);
       assertEquals(jbossRA.getRaConfigProps().get(0).getValue(), "XMLOVERRIDE");
-
+      assertEquals(jbossRA.getRaConfigProps().get(8).getName(), "DoubleRAR");
    }
 }

Modified: projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JcaDs50UnitTestCase.java
===================================================================
--- projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JcaDs50UnitTestCase.java	2009-01-05 00:24:18 UTC (rev 82597)
+++ projects/metadata/trunk/src/test/java/org/jboss/test/metadata/rar/JcaDs50UnitTestCase.java	2009-01-05 02:29:30 UTC (rev 82598)
@@ -51,11 +51,36 @@
       assertNotNull(ds.getDeployments().get(0));
       assertTrue(ds.getDeployments().get(0) instanceof LocalDataSourceDeploymentMetaData);
       LocalDataSourceDeploymentMetaData ld = (LocalDataSourceDeploymentMetaData)ds.getDeployments().get(0);
+      assertNotNull(ld);
+
+   }
+
+   public void testEverything() throws Exception
+   {
+
+      ManagedConnectionFactoryDeploymentGroup ds = unmarshal(ManagedConnectionFactoryDeploymentGroup.class);
+      assertNotNull(ds);
+      assertEquals(ds.getDeployments().size(), 1);
+      assertNotNull(ds.getDeployments().get(0));
+      assertTrue(ds.getDeployments().get(0) instanceof LocalDataSourceDeploymentMetaData);
+      LocalDataSourceDeploymentMetaData ld = (LocalDataSourceDeploymentMetaData)ds.getDeployments().get(0);
       assertEquals(ld.getJndiName(), "DefaultDS");
       assertTrue(ld.getConnectionUrl().startsWith("jdbc"));
       assertEquals(ld.getConnectionProperties().size(), 0);
+      assertEquals(ld.getDriverClass(), "org.hsqldb.jdbcDriver");
+      assertEquals(ld.getUserName(), "sa");
+      assertEquals(ld.getPassWord(), "");
+      assertEquals(ld.getMinSize(), 5);
+      assertEquals(ld.getMaxSize(), 20);
+      assertEquals(ld.getIdleTimeoutMinutes(), 0);
+      assertTrue(ld.getNewConnectionSQL().endsWith("sql"));
+      assertTrue(ld.getValidConnectionCheckerClassName().endsWith("Checker"));
+      assertTrue(ld.getCheckValidConnectionSQL().startsWith("select"));
+      assertTrue(ld.getExceptionSorterClassName().endsWith("Sorter"));
+      assertEquals(ld.getTrackStatements(), "");
+      assertEquals(ld.getPreparedStatementCacheSize(), 32);
+      
 
    }
-
 }
 

Added: projects/metadata/trunk/src/test/resources/org/jboss/test/metadata/rar/JcaDs50_testEverything.xml
===================================================================
--- projects/metadata/trunk/src/test/resources/org/jboss/test/metadata/rar/JcaDs50_testEverything.xml	                        (rev 0)
+++ projects/metadata/trunk/src/test/resources/org/jboss/test/metadata/rar/JcaDs50_testEverything.xml	2009-01-05 02:29:30 UTC (rev 82598)
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE datasources PUBLIC 
+"-//JBoss//DTD JBOSS JCA Config 5.0//EN"
+"http://www.jboss.org/j2ee/dtd/jboss-ds_5_0.dtd">
+
+<datasources>
+   <local-tx-datasource>
+
+      <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
+      <!-- Datasources are not available outside the virtual machine -->
+      <jndi-name>DefaultDS</jndi-name>
+
+      <!-- For server mode db, allowing other processes to use hsqldb over tcp.
+      This requires the org.jboss.jdbc.HypersonicDatabase mbean.
+      <connection-url>jdbc:hsqldb:hsql://${jboss.bind.address}:1701</connection-url>
+      -->
+      <!-- For totally in-memory db, not saved when jboss stops. 
+      The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
+      <connection-url>jdbc:hsqldb:.</connection-url>
+      -->
+      <!-- For in-process persistent db, saved when jboss stops.
+      The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
+      -->
+      <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url>
+
+      <!-- The driver class -->
+      <driver-class>org.hsqldb.jdbcDriver</driver-class>
+
+      <!-- The login and password -->
+      <user-name>sa</user-name>
+      <password></password>
+      
+      
+      <!-- Use the getConnection(user, pw) for logins
+        <application-managed-security/>
+      -->
+
+      <!-- Use the security domain defined in conf/login-config.xml -->
+      <security-domain>HsqlDbRealm</security-domain>
+
+      <!-- Use the security domain defined in conf/login-config.xml or the
+           getConnection(user, pw) for logins. The security domain takes precedence.
+        <security-domain-and-application>HsqlDbRealm</security-domain-and-application>
+      -->
+
+
+      <!-- The minimum connections in a pool/sub-pool. Pools are lazily constructed on first use -->
+      <min-pool-size>5</min-pool-size>
+
+      <!-- The maximum connections in a pool/sub-pool -->
+      <max-pool-size>20</max-pool-size>
+
+      <!-- The time before an unused connection is destroyed -->
+      <!-- NOTE: This is the check period. It will be destroyed somewhere between 1x and 2x this timeout after last use -->
+      <!-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a problem with not reaping threads on closed connections -->
+      <idle-timeout-minutes>0</idle-timeout-minutes>
+
+      <!-- sql to call when connection is created      -->
+        <new-connection-sql>some arbitrary sql</new-connection-sql>
+
+
+      <!-- this will be run before a managed connection is removed from the pool for use by a client-->
+      <check-valid-connection-sql>select * from something</check-valid-connection-sql>
+
+
+      <!-- example of how to specify a class that determines a connection is valid before it is handed out from the pool      -->
+         <valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyValidConnectionChecker</valid-connection-checker-class-name>
+
+      <!--example of how to specify class that determines if exception means connection should be destroyed-->
+      <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyExceptionSorter</exception-sorter-class-name>
+
+
+      <!-- Whether to check all statements are closed when the connection is returned to the pool,
+           this is a debugging feature that should be turned off in production -->
+      <track-statements/>
+
+      <!-- HSQL DB benefits from prepared statement caching -->
+      <prepared-statement-cache-size>32</prepared-statement-cache-size>
+
+      <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) 
+      <metadata>
+         <type-mapping>Hypersonic SQL</type-mapping>
+      </metadata>
+
+       When using in-process (standalone) mode 
+      <depends>jboss:service=Hypersonic,database=localDB</depends>
+       Uncomment when using hsqldb in server mode
+      <depends>jboss:service=Hypersonic</depends>
+      -->
+   </local-tx-datasource>
+
+</datasources>


Property changes on: projects/metadata/trunk/src/test/resources/org/jboss/test/metadata/rar/JcaDs50_testEverything.xml
___________________________________________________________________
Name: svn:keywords
   + Id Reversion Date




More information about the jboss-cvs-commits mailing list