blob: 6a910fadab99da4b010869f4aaced5d70e7184b6 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.queries.oracle;
import org.eclipse.persistence.queries.*;
import org.eclipse.persistence.testing.framework.*;
public class BasicReadTest extends TestCase {
static String HINT_STRING = "/*+ ALL_ROWS */";
static String INNER_HINT = "/*+ RULE */";
DatabaseQuery query;
boolean subselect = false;
public BasicReadTest(DatabaseQuery theQuery) {
query = theQuery;
}
@Override
public void setup() {
if (!(getSession().getPlatform().isOracle())) {
throw new TestWarningException("This test is intended for Oracle databases only");
}
}
@Override
public void reset() {
}
@Override
public void test() {
query.setHintString(HINT_STRING);
getSession().executeQuery(query);
}
@Override
public void verify() throws Exception {
String SQLString = query.getSQLString();
if (SQLString.indexOf(HINT_STRING) == -1) {
throw new TestErrorException("Hint String not in SQL String");
}
if (subselect) {
if (SQLString.indexOf(INNER_HINT) == -1) {
throw new TestErrorException("Inner Hint String not in SQL String");
}
}
}
public void setSubselect(boolean sub) {
subselect = sub;
}
}