OPENJPA-918. Committing testcases based on patch provided by B.J. Reed

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@776411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2009-05-19 18:51:21 +00:00
parent 5fc3725de5
commit 175554580d
4 changed files with 435 additions and 43 deletions

View File

@ -27,8 +27,9 @@ import org.apache.openjpa.jdbc.conf.JDBCConfiguration;
import org.apache.openjpa.jdbc.sql.DerbyDictionary;
import org.apache.openjpa.persistence.OpenJPAEntityManagerFactorySPI;
import org.apache.openjpa.persistence.jdbc.query.domain.Applicant;
import org.apache.openjpa.persistence.jdbc.query.domain.Game;
import org.apache.openjpa.persistence.jdbc.query.procedure.DerbyProcedureList;
import org.apache.openjpa.persistence.jdbc.query.procedure.ProcedureList;
import org.apache.openjpa.persistence.jdbc.query.procedure.AbstractProcedureList;
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
/**
@ -36,27 +37,24 @@ import org.apache.openjpa.persistence.test.SingleEMFTestCase;
* disallows named parameters.
*
* Originally reported in
* <A HRE="http://issues.apache.org/jira/browse/OPENJPA-112>OPENJPA-112</A>
* <A HRE="http://issues.apache.org/jira/browse/OPENJPA-918>OPENJPA-918</A>
*
* @author B.J. Reed
*
*/
public class TestNativeQueryProcedures extends SingleEMFTestCase {
ProcedureList procedureList = null;
AbstractProcedureList procedureList = null;
@Override
public void setUp() throws Exception {
super.setUp(Applicant.class, CLEAR_TABLES);
super.setUp(Applicant.class, Game.class, CLEAR_TABLES);
// Figure out which DB we have and get the proper DB Procedure List
OpenJPAEntityManagerFactorySPI ojpaEmf =
OpenJPAEntityManagerFactorySPI ojpaEmf =
(OpenJPAEntityManagerFactorySPI) emf;
JDBCConfiguration conf = (JDBCConfiguration) ojpaEmf.getConfiguration();
if (conf.getDBDictionaryInstance() instanceof DerbyDictionary) {
procedureList = new DerbyProcedureList();
}
if (procedureList != null) {
EntityManager em = emf.createEntityManager();
List<String> createList = procedureList.getCreateProcedureList();
@ -96,7 +94,7 @@ public class TestNativeQueryProcedures extends SingleEMFTestCase {
}
super.tearDown();
}
public void testNoReturnNoParamProcedure() {
if (procedureList != null) {
EntityManager em = emf.createEntityManager();
@ -114,15 +112,16 @@ public class TestNativeQueryProcedures extends SingleEMFTestCase {
String sql = procedureList.callAddXToCharlie();
// query.getSingleResult() and query.getResultList() both throw an
// exception: Statement.executeQuery() cannot be called with a
// statement that returns a row count
// exception:
// Statement.executeQuery() cannot be called with a statement that
// returns a row count
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql);
query.getSingleResult();
em.getTransaction().commit();
fail("Expected exception. getSingleResult() with no returns "+
"should fail.");
fail("Expected exception. getSingleResult() with no returns " +
"should fail.");
} catch (Exception e) {
//Expected exception
em.getTransaction().rollback();
@ -132,8 +131,8 @@ public class TestNativeQueryProcedures extends SingleEMFTestCase {
Query query = em.createNativeQuery(sql);
query.getResultList();
em.getTransaction().commit();
fail("Expected exception. getResultList() with no returns " +
"should fail.");
fail("Expected exception. getResultList() with no returns " +
"should fail.");
} catch (Exception e) {
//Expected exception
em.getTransaction().rollback();
@ -146,11 +145,12 @@ public class TestNativeQueryProcedures extends SingleEMFTestCase {
query.executeUpdate();
em.getTransaction().commit();
} catch (Exception e) {
em.getTransaction().rollback();
fail("Caught unexpected exception executing stored procedure: "
+ e.getMessage());
em.getTransaction().commit();
}
// refresh the data
em.clear();
em.close();
em = emf.createEntityManager();
@ -165,4 +165,229 @@ public class TestNativeQueryProcedures extends SingleEMFTestCase {
em.close();
}
}
}
public void testNoReturnMultiParamProcedure() {
if (procedureList != null) {
EntityManager em = emf.createEntityManager();
Applicant applicant1 = new Applicant();
applicant1.setName("Charlie");
Applicant applicant2 = new Applicant();
applicant2.setName("Snoopy");
em.getTransaction().begin();
em.persist(applicant1);
em.persist(applicant2);
em.getTransaction().commit();
String sql = procedureList.callAddSuffixToName();
// query.getSingleResult() and query.getResultList() both throw an
// exception:
// Statement.executeQuery() cannot be called with a statement that
// returns a row count
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql);
query.setParameter(1, "Charlie");
query.setParameter(2, "x");
query.getSingleResult();
em.getTransaction().commit();
fail("Expected exception. getSingleResult() with no returns " +
"should fail.");
} catch (Exception e) {
//Expected exception
em.getTransaction().rollback();
}
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql);
query.setParameter(1, "Charlie");
query.setParameter(2, "x");
query.getResultList();
em.getTransaction().commit();
fail("Expected exception. getResultList() with no returns " +
"should fail.");
} catch (Exception e) {
//Expected exception
em.getTransaction().rollback();
}
// This one should work properly
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql);
query.setParameter(1, "Charlie");
query.setParameter(2, "x");
query.executeUpdate();
em.getTransaction().commit();
} catch (Exception e) {
em.getTransaction().rollback();
fail("Caught unexpected exception executing stored procedure: "
+ e.getMessage());
}
// refresh the data
em.clear();
em.close();
em = emf.createEntityManager();
applicant1 = em.find(Applicant.class, applicant1.getId());
applicant2 = em.find(Applicant.class, applicant2.getId());
// verify one changed and one didn't
assertEquals("Charliex", applicant1.getName());
assertEquals("Snoopy", applicant2.getName());
em.clear();
em.close();
}
}
public void testOneReturnNoParamProcedure() {
if (procedureList != null) {
EntityManager em = emf.createEntityManager();
Applicant applicant1 = new Applicant();
applicant1.setName("Charlie");
Applicant applicant2 = new Applicant();
applicant2.setName("Snoopy");
em.getTransaction().begin();
em.persist(applicant1);
em.getTransaction().commit();
String sql = procedureList.callGetAllApplicants();
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql, Applicant.class);
Applicant app = (Applicant)query.getSingleResult();
em.getTransaction().commit();
assertEquals("Charlie", app.getName());
} catch (Exception e) {
em.getTransaction().rollback();
fail("Caught unexpected exception executing stored procedure: "
+ e.getMessage());
}
em.getTransaction().begin();
em.persist(applicant2);
em.getTransaction().commit();
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql, Applicant.class);
List<Applicant> appList = query.getResultList();
em.getTransaction().commit();
assertEquals(2, appList.size());
for (Applicant a : appList) {
if (!a.getName().equals("Charlie")
&& !a.getName().equals("Snoopy"))
fail("found invalid applicant " + a.getName());
}
} catch (Exception e) {
em.getTransaction().rollback();
fail("Caught unexpected exception executing stored procedure: "
+ e.getMessage());
}
// This one should fail since we are doing select in stead of update
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql, Applicant.class);
query.executeUpdate();
em.getTransaction().commit();
fail("Expected exception. executeUpdate() with query procedure "
+ "should fail.");
} catch (Exception e) {
// Expected exception
em.getTransaction().rollback();
}
// refresh the data
em.clear();
em.close();
em = emf.createEntityManager();
}
}
public void testOneReturnMultiParamProcedure() {
if (procedureList != null) {
EntityManager em = emf.createEntityManager();
Applicant applicant1 = new Applicant();
applicant1.setName("Charlie");
Applicant applicant2 = new Applicant();
applicant2.setName("Snoopy");
Applicant applicant3 = new Applicant();
applicant3.setName("Linus");
Applicant applicant4 = new Applicant();
applicant4.setName("Lucy");
em.getTransaction().begin();
em.persist(applicant1);
em.persist(applicant3);
em.persist(applicant4);
em.getTransaction().commit();
String sql = procedureList.callGetTwoApplicants();
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql, Applicant.class);
query.setParameter(1, "Charlie");
query.setParameter(2, "Snoopy");
Applicant app = (Applicant)query.getSingleResult();
em.getTransaction().commit();
assertEquals("Charlie", app.getName());
} catch (Exception e) {
em.getTransaction().rollback();
fail("Caught unexpected exception executing stored procedure: "
+ e.getMessage());
}
em.getTransaction().begin();
em.persist(applicant2);
em.getTransaction().commit();
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql, Applicant.class);
query.setParameter(1, "Charlie");
query.setParameter(2, "Snoopy");
List<Applicant> appList = query.getResultList();
em.getTransaction().commit();
assertEquals(2, appList.size());
for (Applicant a : appList) {
if (!a.getName().equals("Charlie")
&& !a.getName().equals("Snoopy"))
fail("found invalid applicant " + a.getName());
}
} catch (Exception e) {
em.getTransaction().rollback();
fail("Caught unexpected exception executing stored procedure: "
+ e.getMessage());
}
// This one should fail since we are doing select in stead of update
try {
em.getTransaction().begin();
Query query = em.createNativeQuery(sql, Applicant.class);
query.setParameter(1, "Charlie");
query.setParameter(2, "Snoopy");
query.executeUpdate();
em.getTransaction().commit();
fail("Expected exception. executeUpdate() with query procedure "
+ "should fail.");
} catch (Exception e) {
// Expected exception
em.getTransaction().rollback();
}
// refresh the data
em.clear();
em.close();
em = emf.createEntityManager();
}
}
}

View File

@ -0,0 +1,50 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openjpa.persistence.jdbc.query.procedure;
/*
* holds the stored procedures that will be used by test cases
*/
public abstract class AbstractProcedureList implements ProcedureList {
public static void addXToCharlie() throws Exception {
Exception e =
new Exception("Method not implemented by inheriting class");
throw e;
}
public static void addSuffixToName(String name, String suffix)
throws Exception {
Exception e =
new Exception("Method not implemented by inheriting class");
throw e;
}
public static void getAllApplicants() throws Exception {
Exception e =
new Exception("Method not implemented by inheriting class");
throw e;
}
public static void getTwoApplicants() throws Exception {
Exception e =
new Exception("Method not implemented by inheriting class");
throw e;
}
}

View File

@ -21,21 +21,47 @@ package org.apache.openjpa.persistence.jdbc.query.procedure;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
/*
* holds the stored procedures that will be used by test cases
*/
public class DerbyProcedureList extends ProcedureList {
public class DerbyProcedureList extends AbstractProcedureList {
public List<String> getCreateProcedureList () {
ArrayList<String> retList = new ArrayList<String>();
retList.add ("create procedure ADD_X_TO_CHARLIE () " +
"PARAMETER STYLE JAVA LANGUAGE JAVA MODIFIES SQL DATA " +
"EXTERNAL NAME 'org.apache.openjpa.persistence.jdbc." +
"query.procedure.DerbyProcedureList.addXToCharlie'");
retList.add("create procedure ADD_X_TO_CHARLIE () "
+ "PARAMETER STYLE JAVA LANGUAGE JAVA MODIFIES SQL DATA "
+ "EXTERNAL NAME '" + DerbyProcedureList.class.getName()
+ ".addXToCharlie'");
retList.add("create procedure ADD_SUFFIX_TO_NAME (NAME VARCHAR(128), "
+ "SUFFIX VARCHAR(128)) "
+ "PARAMETER STYLE JAVA LANGUAGE JAVA MODIFIES SQL DATA "
+ "EXTERNAL NAME '" + DerbyProcedureList.class.getName()
+ ".addSuffixToName'");
retList.add("create procedure GET_ALL_APPLICANTS () "
+ "PARAMETER STYLE JAVA LANGUAGE JAVA READS SQL DATA DYNAMIC "
+ "RESULT SETS 1 " + "EXTERNAL NAME '"
+ DerbyProcedureList.class.getName() + ".getAllApplicants'");
retList.add("create procedure GET_TWO_APPLICANTS (NAME VARCHAR(128), "
+ "SUFFIX VARCHAR(128)) "
+ "PARAMETER STYLE JAVA LANGUAGE JAVA READS SQL DATA DYNAMIC "
+ "RESULT SETS 1 " + "EXTERNAL NAME '"
+ DerbyProcedureList.class.getName() + ".getTwoApplicants'");
retList.add("create procedure GET_ALL_APPLICANTS_AND_GAMES () "
+ "PARAMETER STYLE JAVA LANGUAGE JAVA READS SQL DATA DYNAMIC "
+ "RESULT SETS 2 " + "EXTERNAL NAME '"
+ DerbyProcedureList.class.getName()
+ ".getAllApplicantsAndGames'");
retList.add("create procedure GET_TWO_APPLICANTS_AND_GAMES "
+ "(NAME VARCHAR(128), SUFFIX VARCHAR(128)) "
+ "PARAMETER STYLE JAVA LANGUAGE JAVA READS SQL DATA DYNAMIC "
+ "RESULT SETS 2 " + "EXTERNAL NAME '"
+ DerbyProcedureList.class.getName()
+ ".getTwoApplicantsAndGames'");
return retList;
}
@ -44,6 +70,11 @@ public class DerbyProcedureList extends ProcedureList {
ArrayList<String> retList = new ArrayList<String>();
retList.add ("drop procedure ADD_X_TO_CHARLIE");
retList.add ("drop procedure ADD_SUFFIX_TO_NAME");
retList.add ("drop procedure GET_ALL_APPLICANTS");
retList.add ("drop procedure GET_TWO_APPLICANTS");
retList.add ("drop procedure GET_ALL_APPLICANTS_AND_GAMES");
retList.add ("drop procedure GET_TWO_APPLICANTS_AND_GAMES");
return retList;
}
@ -52,13 +83,105 @@ public class DerbyProcedureList extends ProcedureList {
return "{ call ADD_X_TO_CHARLIE () }";
}
public static void addXToCharlie () throws Exception {
Connection conn = DriverManager.getConnection("jdbc:default:" +
"connection");
PreparedStatement ps1 = conn.prepareStatement("update APPLICANT set" +
" name = 'Charliex' where name = 'Charlie'");
public static void addXToCharlie() throws Exception {
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps1 =
conn
.prepareStatement("update APPLICANT set name = 'Charliex' "
+ "where name = 'Charlie'");
ps1.executeUpdate();
conn.close();
}
public String callAddSuffixToName () {
return "{ call ADD_SUFFIX_TO_NAME (?, ?) }";
}
public static void addSuffixToName(String name, String suffix)
throws Exception {
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps1 =
conn.prepareStatement("update APPLICANT set name = ? "
+ "where name = ?");
ps1.setString(1, name + suffix);
ps1.setString(2, name);
ps1.executeUpdate();
conn.close();
}
public String callGetAllApplicants () {
return "{ call GET_ALL_APPLICANTS () }";
}
public static void getAllApplicants(ResultSet[] rs1) throws Exception {
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps1 =
conn.prepareStatement("select * from APPLICANT");
rs1[0] = ps1.executeQuery();
conn.close();
}
public String callGetTwoApplicants () {
return "{ call GET_TWO_APPLICANTS (?, ?) }";
}
public static void getTwoApplicants(String name1, String name2,
ResultSet[] rs1) throws Exception {
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps1 =
conn.prepareStatement("select * from APPLICANT where name = ? "
+ "or name = ?");
ps1.setString(1, name1);
ps1.setString(2, name2);
rs1[0] = ps1.executeQuery();
conn.close();
}
public String callGetAllApplicantsAndGames () {
return "{ call GET_ALL_APPLICANTS_AND_GAMES () }";
}
public static void getAllApplicantsAndGames(ResultSet[] rs1,
ResultSet[] rs2)
throws Exception {
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps1 =
conn.prepareStatement("select * from APPLICANT");
rs1[0] = ps1.executeQuery();
PreparedStatement ps2 = conn.prepareStatement("select * from GAME");
rs2[0] = ps2.executeQuery();
conn.close();
}
// public String callGetTwoApplicantsAndGames () {
// return "{ call GET_TWO_APPLICANTS_AND_GAMES (?, ?) }";
// }
//
// public static void getTwoApplicantsAndGames(String name1, String name2,
// ResultSet[] rs1, ResultSet[] rs2) throws Exception {
// Connection conn =
// DriverManager.getConnection("jdbc:default:connection");
// PreparedStatement ps1 =
// conn.prepareStatement("select * from APPLICANT where name = ?");
// ps1.setString(1, name1);
// rs1[0] = ps1.executeQuery();
//
// PreparedStatement ps2 =
// conn.prepareStatement("select * from GAME where name = ?");
// ps2.setString(2, name2);
// rs2[0] = ps2.executeQuery();
//
// conn.close();
// }
}

View File

@ -20,22 +20,16 @@ package org.apache.openjpa.persistence.jdbc.query.procedure;
import java.util.List;
/*
* holds the stored procedures that will be used by test cases
*/
public abstract class ProcedureList {
public interface ProcedureList {
public List<String> getCreateProcedureList();
abstract public List<String> getCreateProcedureList ();
public List<String> getDropProcedureList();
abstract public List<String> getDropProcedureList ();
public String callAddXToCharlie();
abstract public String callAddXToCharlie ();
public String callAddSuffixToName();
// This method should also be overriden, but it needs to be static so
// that it can be called as a stored procedure
public static void addXToCharlie () throws Exception {
Exception e = new Exception ("Method not implemented by inheriting " +
"class");
throw e;
}
public String callGetAllApplicants();
public String callGetTwoApplicants();
}