blob: 680eda96e0c8660e6936443d3a9ffaa5870d9b30 [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.*;
import org.apache.jdo.tck.pc.mylib.PCPoint;
import org.apache.jdo.tck.util.BatchTestRunner;
/**
*<B>Title:</B> Executing Query when no Transaction, no NontransactionalRead
*<BR>
*<B>Keywords:</B> query
*<BR>
*<B>Assertion ID:</B> A14.6.1-2.
*<BR>
*<B>Assertion Description: </B>
If the <code>NontransactionalRead</code> property is <code>false</code>,
and a transaction is not active, then the <code>execute</code> methods throw
<code>JDOUserException</code>.
*/
public class ExecutingQueryWhenNoTransactionNoNontransactionalRead
extends QueryTest {
/** */
private static final String ASSERTION_FAILED =
"Assertion A14.6.1-2 (ExecutingQueryWhenNoTransactionNoNontransactionalRead) 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(ExecutingQueryWhenNoTransactionNoNontransactionalRead.class);
}
/** */
public void test() {
pm = getPM();
initDatabase(pm, PCPoint.class);
pm.currentTransaction().setNontransactionalRead(false);
runTestNewQuery(pm);
pm.close();
pm = null;
}
/** */
void runTestNewQuery(PersistenceManager pm) {
Class clazz = PCPoint.class;
Extent extent = pm.getExtent(clazz, true);
Query query = pm.newQuery();
query.setClass(clazz);
query.setCandidates(extent);
try {
Object results = query.execute();
fail(ASSERTION_FAILED,
"Querying outside transactions should throw exception with non transactional read set to false");
}
catch (JDOUserException ex) {
// expected exception
if (debug) logger.debug("expected exception " + ex);
}
}
}