blob: 9341cfa1a496e9945180c0bedd3a1877d4d85551 [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 javax.jdo.PersistenceManager;
import javax.jdo.Query;
import javax.jdo.Transaction;
import org.apache.jdo.tck.util.BatchTestRunner;
/**
*<B>Title:</B> Get IgnoreCache
*<BR>
*<B>Keywords:</B> query
*<BR>
*<B>Assertion ID:</B> A14.6-13.
*<BR>
*<B>Assertion Description: </B> <code>Query.getIgnoreCache</code> returns the
*current setting of the IgnoreCache option.
*/
public class GetIgnoreCache extends QueryTest {
/** */
private static final String ASSERTION_FAILED =
"Assertion A14.6-13 (GetIgnoreCache) 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(GetIgnoreCache.class);
}
/** */
public void test() throws Exception {
pmf = getPMF();
pm = getPM();
runTestGetIgnoreCache01(pm);
runTestGetIgnoreCache02(pm);
pm.close();
pm = null;
}
/** */
void runTestGetIgnoreCache01(PersistenceManager pm) {
Transaction tx = pm.currentTransaction();
try {
tx.begin();
Query query = pm.newQuery();
// the ignoreCache flag of PM must default to the PMF setting
if (pm.getIgnoreCache() == pmf.getIgnoreCache()) {
if (debug)
logger.debug("PM ignoreCache defaults to the PMF setting.");
}
else {
fail(ASSERTION_FAILED,
"PM ignoreCache does NOT default to the PMF setting.");
}
// the ignoreCache flag of Query must default to the setting in PM
if (query.getIgnoreCache() == pm.getIgnoreCache()) {
if (debug)
logger.debug("Query ignoreCache defaults to the PM setting.");
}
else {
fail(ASSERTION_FAILED,
"Query ignoreCache does NOT default to the PM setting.");
}
tx.commit();
tx = null;
}
finally {
if ((tx != null) && tx.isActive())
tx.rollback();
}
}
/** */
void runTestGetIgnoreCache02(PersistenceManager pm) {
boolean ignoreCacheDefault = pmf.getIgnoreCache();
// set PM's ignoreCache to a different value
pm.setIgnoreCache(!ignoreCacheDefault);
Transaction tx = pm.currentTransaction();
try {
tx.begin();
Query query = pm.newQuery();
// Query.ignoreCache must be equal to the new value in PM
if (query.getIgnoreCache() == !ignoreCacheDefault) {
if (debug)
logger.debug("Query ignoreCache flag is equal to new PM setting.");
}
else {
fail(ASSERTION_FAILED,
"Query ignoreCache flag is NOT equal to new PM setting.");
}
// change the Query's ignoreCache flag
query.setIgnoreCache(ignoreCacheDefault);
if (query.getIgnoreCache() == ignoreCacheDefault) {
if (debug)
logger.debug("Query ignoreCache flag successfully changed");
}
else {
fail(ASSERTION_FAILED,
"Could NOT change the Query's ignoreCache flag.");
}
tx.commit();
tx = null;
}
finally {
if ((tx != null) && tx.isActive())
tx.rollback();
}
}
}