{excerpt:hidden=true}Running and [Writing|Writing Test Cases For OpenJPA] OpenJPA unit tests{excerpt} h1. Running and [Writing|Writing Test Cases For OpenJPA] Tests with OpenJPA OpenJPA's unit tests are written using JUnit. For a template for a simple test case, see the code for [TestPersistence.java|http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/simple/TestPersistence.java?view=markup]. If you want to contribute your own test case then follow the [guidelines|Writing Test Cases For OpenJPA]. Once you have downloaded and built OpenJPA (see [Building]), you can run individual tests using the "test" goal to maven. For example: {code}mvn test -DfailIfNoTests=false -Dtest=TestPersistence{code} {note} By default Maven will fail if there are no testcases found in any module you build. The examples solve this by specifying -DfailIfNoTests=false but you can also change your personal default by adding the following to $\{user.home\}/.m2/settings.xml : {code:xml} enable-no-tests true false {code} {note} To get more debugging information (e.g., to see the SQL that is being executed against the database), you can enable trace-level logging from the command line using the "openjpa.Log" system property. For example: {code} $ mvn test -DfailIfNoTests=false -Dtest=TestPersistence -Dopenjpa.Log=DefaultLevel=TRACE [INFO] Scanning for projects... [INFO] Reactor build order: ... 690 test TRACE [main] openjpa.jdbc.SQL - executing prepstmnt 12659709 INSERT INTO AllFieldTypes (id, arrayOfStrings, booleanField, byteField, charField, dateField, doubleField, floatField, intField, longField, shortField, stringField) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [params=(long) 601, (null) null, (int) 0, (byte) 0, (int) 0, (null) null, (double) 0.0, (float) 0.0, (int) 0, (long) 0, (short) 0, (null) null] 701 test TRACE [main] openjpa.jdbc.SQL - [11 ms] spent 701 test TRACE [main] openjpa.jdbc.JDBC - [0 ms] commit 702 test TRACE [main] openjpa.jdbc.JDBC - [0 ms] close ... $ {code} h2. Setting additional Log parameters There are several parameters that are used by OpenJPA Log. Here are some that might be of value when debugging test cases. Note that the logger names are case sensitive while the log levels are not. * DefaultLevel sets the level for all loggers that are not otherwise set * file sets the file name for logging output * Enhance logs messages from the enhancer * Metadata logs messages from the metadata processor * Tool logs messages from the schema synchronization tool * SQL logs messages from the SQL generator * JDBC logs messages related to JDBC * Schema logs messages related to schema * Runtime logs messages related to runtime * Query logs messages related to queried * DataCache logs messages related to caching Log levels specify the minimum log message that is output. All log messages with a level higher than the log level set for a logger are output. So if INFO is specified, log messages of level INFO, WARN, ERROR, and SEVERE are output. * TRACE * INFO * WARN * ERROR * FATAL For example, to avoid enhancement warnings, get detailed SQL information, and write the log data to a file: {code}mvn test -Dtest=TestPersistence -Dopenjpa.Log=Enhance=ERROR,SQL=TRACE,file=openjpa.log{code} h1. Testing against alternate databases By default, OpenJPA uses the [Derby|http://db.apache.org/derby/] database for testing. The {{openjpa-persistence-jdbc/pom.xml}} POM declares various pre-defined databases against which tests can be executed. For example, to test against the stand-alone [HSQLDB|http://hsqldb.org/] database, you can run with the "test-hsqldb" profile: {code}mvn test -DfailIfNoTests=false -Dtest=TestPersistence -Ptest-hsqldb{code} For databases that are not in the pre-defined list, you can manually specify connection parameters to use for testing under the "test-custom" profile. You will need to manually provide the driver class and specify all of the connection parameters. For example, to test against Oracle, you might run: {code} mvn test -DfailIfNoTests=false -Dtest=TestPersistence -Ptest-custom \ -Dopenjpa.custom.driverjar=$(pwd)/drivers/jdbc-oracle-10_2_0_1_0.jar \ -Dopenjpa.custom.driverclass=oracle.jdbc.driver.OracleDriver \ -Dopenjpa.custom.url=jdbc:oracle:thin:@HOST:PORT:DBNAME \ -Dopenjpa.custom.username=USERNAME \ -Dopenjpa.custom.password=PASSWORD {code} If you frequently need to test against another database, you can permanently declare the database connection parameters in the {{~/.m2/settings.xml}} file under a custom profile. For example: {code} test-oracle true ${user.home}/.m2/privaterepos/jdbc-oracle-10_2_0_1_0.jar oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@HOST:PORT:DBNAME USERNAME PASSWORD {code} This profile can then be executed by running: {code} mvn test -DfailIfNoTests=false -Dtest=TestPersistence -Ptest-custom,test-oracle {code} h1. Running JUnits in Eclipse You'll probably want to setup a Debug Configuration in Eclipse for running the JUnit testcases. # Run --> Debug Configurations... Create a new JUnit configuration !eclipse_dbgcfg_1.png|border=1! # For the Test tab - Give the configuration a Name, select a Project and Test class, and you'll probably want to select the "Keep JUnit running..." option. !eclipse_dbgcfg_2.png|border=1! # For the Arguments tab - Press the Variables... button. This will allow us to define variables that can be shared across other Release/Debug Configurations within this workspace. !eclipse_dbgcfg_3.png|border=1! # For the Select Variable window - Press the Edit Variables... button. !eclipse_dbgcfg_4.png|border=1! # For the Preferences windows - Press New... to add two variables. !eclipse_dbgcfg_5.png|border=1! {code} Name = openjpa.trace Value = -Dopenjpa.Log=DefaultLevel=TRACE Description = Set OpenJPA logging to TRACE {code} !eclipse_dbgcfg_6.png|border=1! {code} Name = connect.derby Value = -Dopenjpa.ConnectionDriverName=org.apache.derby.jdbc.EmbeddedDriver -Dopenjpa.ConnectionURL=jdbc:derby:target/database/openjpa-derby-database;create=true Description = Connection properties for Derby {code} !eclipse_dbgcfg_7.png|border=1! # After the above are created and saved, add the new variables as VM Arguments. {code} ${openjpa.trace} ${connect.derby} {code} !eclipse_dbgcfg_8.png|border=1!