blob: 9d89479ec3cbeb84fcfddef6677730afd72b31ce [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed 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.jdo.tck.query;
import java.util.ArrayList;
import java.util.List;
import javax.jdo.PersistenceManager;
import javax.jdo.Query;
import javax.jdo.Transaction;
import org.apache.jdo.tck.pc.mylib.PCPoint;
import org.apache.jdo.tck.util.BatchTestRunner;
/**
*<B>Title:</B> Multiple Active Query Instances in Same PersistenceMana
ger
*<BR>
*<B>Keywords:</B> query concurrency
*<BR>
*<B>Assertion ID:</B> A14.3-1.
*<BR>
*<B>Assertion Description: </B> Multiple JDO <code>Query</code> instances might
*be active simultaneously in the same JDO <code>PersistenceManager</code>
*instance.
*/
public class MultipleActiveQueryInstanceInSamePersistenceManager extends QueryTest {
/** */
private static final String ASSERTION_FAILED =
"Assertion A14.3-1 (MultipleActiveQueryInstanceInSamePersistenceManager) failed: ";
/**
* The <code>main</code> is called when the class
* is directly executed from the command line.
* @param args The arguments passed to the program.
*/
public static void main(String[] args) {
BatchTestRunner.run(MultipleActiveQueryInstanceInSamePersistenceManager.class);
}
/** */
public void test() {
pm = getPM();
initDatabase(pm, PCPoint.class);
runTestMultipleActiveQueryInstanceInSamePersistenceManager(pm);
pm.close();
pm = null;
}
/** */
void runTestMultipleActiveQueryInstanceInSamePersistenceManager(
PersistenceManager pm) {
if (debug)
logger.debug("\nExecuting test MultipleActiveQueryInstanceInSamePersistenceManager()...");
Transaction tx = pm.currentTransaction();
try {
tx.begin();
executeQueries(pm);
if (debug)
logger.debug("Test MultipleActiveQueryInstanceInSamePersistenceManager: Passed");
tx.commit();
tx = null;
}
finally {
if ((tx != null) && tx.isActive())
tx.rollback();
}
}
/** */
void executeQueries(PersistenceManager pm) {
// query selecting all point instances
Query query = pm.newQuery();
query.setClass(PCPoint.class);
query.setCandidates(pm.getExtent(PCPoint.class, false));
// query selecting point with x value 0
Query query2 = pm.newQuery();
query2.setClass(PCPoint.class);
query2.setCandidates(pm.getExtent(PCPoint.class, false));
query2.setFilter("x == 0");
// execute first query
Object results = query.execute();
// check query result of first query
List expected = new ArrayList();
expected.add(new PCPoint(0, 0));
expected.add(new PCPoint(1, 1));
expected.add(new PCPoint(2, 2));
expected.add(new PCPoint(3, 3));
expected.add(new PCPoint(4, 4));
expected = getFromInserted(expected);
checkQueryResultWithoutOrder(ASSERTION_FAILED, results, expected);
// execute second query
Object results2 = query2.execute();
// check query result of second query
List expected2 = new ArrayList();
expected2.add(new PCPoint(0, 0));
expected2 = getFromInserted(expected2);
checkQueryResultWithoutOrder(ASSERTION_FAILED, results2, expected2);
}
}