blob: c76c5f01752ca4629a95a1825c83af526ffce618 [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.operators;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.Iterator;
import java.util.Locale;
import java.util.TimeZone;
import org.apache.jdo.tck.pc.fieldtypes.AllTypes;
import org.apache.jdo.tck.util.BatchTestRunner;
/**
*<B>Title:</B> Not Equals Query Operator
*<BR>
*<B>Keywords:</B> query
*<BR>
*<B>Assertion ID:</B> A14.6.2-15.
*<BR>
*<B>Assertion Description: </B>
The not equal operator (<code>!=</code>) is supported for the following types:
<UL>
<LI><code>byte, short, int, long, char, Byte, Short Integer, Long, Character</code></LI>
<LI><code>float, double, Float, Double</code></LI>
<LI><code>BigDecimal, BigInteger</code></LI>
<LI><code>Boolean, boolean</code></LI>
<LI>any class instance or array</LI>
<LI><code>Date, String</code></LI>
</UL>
The operation on object-valued fields of wrapper types (<code>Boolean, Byte,
Short, Integer, Long, Float, and Double</code>), and numeric types
(<code>BigDecimal</code> and <code>BigInteger</code>) use the wrapped values
as operands. Inequality comparison of object-valued fields of
<code>PersistenceCapable</code> types use the JDO Identity comparison of
the references. Thus, two objects will compare not equal if they have
different JDO Identity. Equality comparison of object-valued fields of
non-<code>PersistenceCapable</code> types uses the <code>equals</code>
method of the field type.
*/
public class NotEquals extends ComparisonTests {
private static String boolean_filterL = "value != fld_boolean";
private static String boolean_filterR = "fld_boolean != value";
private static String boolean_filterT = "fld_boolean != true";
private static String boolean_filterF = "false != fld_boolean";
private static String boolean_filterObj = "value.fld_boolean != fld_boolean";
private static String byte_filterL = "value != fld_byte";
private static String byte_filterR = "fld_byte != value";
private static String byte_filterObj = "value.fld_byte != fld_byte";
private static String byte_filterVal = "fld_byte != 100";
private static String char_filterL = "value != fld_char";
private static String char_filterR = "fld_char != value";
private static String char_filterObj = "value.fld_char != fld_char";
private static String char_filterVal = "'M' != fld_char";
private static String double_filterL = "value != fld_double";
private static String double_filterR = "fld_double != value";
private static String double_filterObj = "value.fld_double != fld_double";
private static String double_filterVal = "fld_double != 100.0";
private static String float_filterL = "value != fld_float";
private static String float_filterR = "fld_float != value";
private static String float_filterObj = "fld_float != value.fld_float";
private static String float_filterVal = "fld_float != 100.0";
private static String int_filterL = "value != fld_int";
private static String int_filterR = "fld_int != value";
private static String int_filterObj = "value.fld_int != fld_int";
private static String int_filterVal = "fld_int != 1000";
private static String long_filterL = "value != fld_long";
private static String long_filterR = "fld_long != value";
private static String long_filterObj = "fld_long != value.fld_long";
private static String long_filterVal = "fld_long != 1000000";
private static String short_filterL = "value != fld_short";
private static String short_filterR = "fld_short != value";
private static String short_filterObj = "value.fld_short != fld_short";
private static String short_filterVal = "1000 != fld_short";
private static String Boolean_filterL = "value != fld_Boolean";
private static String Boolean_filterR = "fld_Boolean != value";
private static String Boolean_filterT = "fld_Boolean != true";
private static String Boolean_filterF = "false != fld_Boolean";
private static String Boolean_filterObj = "value.fld_Boolean != fld_Boolean";
private static String Boolean_filterVal = "fld_Boolean != false";
private static String Byte_filterL = "value != fld_Byte";
private static String Byte_filterR = "fld_Byte != value";
private static String Byte_filterObj = "fld_Byte != value.fld_Byte";
private static String Byte_filterVal = "100 != fld_Byte";
private static String Character_filterL = "value != fld_Character";
private static String Character_filterR = "fld_Character != value";
private static String Character_filterObj = "value.fld_Character != fld_Character";
private static String Character_filterVal = "fld_Character != 'z'";
private static String Double_filterL = "value != fld_Double";
private static String Double_filterR = "fld_Double != value";
private static String Double_filterObj = "value.fld_Double != fld_Double";
private static String Double_filterVal = "fld_Double != 100.0";
private static String Float_filterL = "value != fld_Float";
private static String Float_filterR = "fld_Float != value";
private static String Float_filterObj = "fld_Float != value.fld_Float";
private static String Float_filterVal = "100.0f != fld_Float";
private static String Integer_filterL = "value != fld_Integer";
private static String Integer_filterR = "fld_Integer != value";
private static String Integer_filterObj = "fld_Integer != value.fld_Integer";
private static String Integer_filterVal = "fld_Integer != 100";
private static String Long_filterL = "value != fld_Long";
private static String Long_filterR = "fld_Long != value";
private static String Long_filterObj = "value.fld_Long != fld_Long";
private static String Long_filterVal = "-1000 != fld_Long";
private static String Short_filterL = "value != fld_Short";
private static String Short_filterR = "fld_Short != value";
private static String Short_filterObj = "fld_Short != value.fld_Short";
private static String Short_filterVal = "-1000 != fld_Short";
private static String String_filterL = "value != fld_String";
private static String String_filterR = "fld_String != value";
private static String String_filterObj = "value.fld_String != fld_String";
private static String String_filterVal1 = "fld_String != \"Java\"";
private static String String_filterVal2 = "fld_String != \"\"";
private static String Locale_filterL = "value != fld_Locale";
private static String Locale_filterR = "fld_Locale != value";
private static String Locale_filterObj = "value.fld_Locale != fld_Locale";
private static String Date_filterL = "value != fld_Date";
private static String Date_filterR = "fld_Date != value";
private static String Date_filterObj = "fld_Date != value.fld_Date";
private static String BigDecimal_filterL = "value != fld_BigDecimal";
private static String BigDecimal_filterR = "fld_BigDecimal != value";
private static String BigDecimal_filterObj = "value.fld_BigDecimal != fld_BigDecimal";
private static String BigInteger_filterL = "value != fld_BigInteger";
private static String BigInteger_filterR = "fld_BigInteger != value";
private static String BigInteger_filterObj = "fld_BigInteger != value.fld_BigInteger";
/** */
private static final String ASSERTION_FAILED =
"Assertion A14.6.2-15 (NotEquals) 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(NotEquals.class);
}
/** */
public void test() {
pm = getPM();
verifyDataLoaded(pm);
tx = pm.currentTransaction();
runQueries();
pm.close();
pm = null;
}
/** */
private void runQueries()
{
Boolean trueBoolean = new Boolean(true);
Boolean falseBoolean = new Boolean(false);
run_booleanQuery(boolean_filterL, booleanParameter, trueBoolean, true, 6);
run_booleanQuery(boolean_filterL, booleanParameter, falseBoolean, false, 4);
run_booleanQuery(boolean_filterR, booleanParameter, trueBoolean, true, 6);
run_booleanQuery(boolean_filterR, booleanParameter, falseBoolean, false, 4);
run_booleanQuery(boolean_filterL, BooleanParameter, trueBoolean, true, 6);
run_booleanQuery(boolean_filterL, BooleanParameter, falseBoolean, false, 4);
run_booleanQuery(boolean_filterR, BooleanParameter, trueBoolean, true, 6);
run_booleanQuery(boolean_filterR, BooleanParameter, falseBoolean, false, 4);
run_booleanQuery(boolean_filterT, null, null, true, 6);
run_booleanQuery(boolean_filterF, null, null, false, 4);
AllTypes alltypes = new AllTypes();
alltypes.setboolean(true);
run_booleanQuery(boolean_filterObj, AllTypesParameter, alltypes, true, 6);
alltypes.setboolean(false);
run_booleanQuery(boolean_filterObj, AllTypesParameter, alltypes, false, 4);
run_byteQuery(byte_filterL, byteParameter, new Byte((byte)50), (byte)50, 8);
run_byteQuery(byte_filterR, byteParameter, new Byte(Byte.MIN_VALUE), Byte.MIN_VALUE, 9);
run_byteQuery(byte_filterL, ByteParameter, new Byte((byte)20), (byte)20, 10);
run_byteQuery(byte_filterR, ByteParameter, new Byte(Byte.MAX_VALUE), Byte.MAX_VALUE, 9);
run_byteQuery(byte_filterL, shortParameter, new Short((short)50), (byte)50, 8);
run_byteQuery(byte_filterR, shortParameter, new Short((short)50), (byte)50, 8);
run_byteQuery(byte_filterL, ShortParameter, new Short((short)-100), (byte)-100, 9);
run_byteQuery(byte_filterR, ShortParameter, new Short((short)-100), (byte)-100, 9);
run_byteQuery(byte_filterL, charParameter, new Character((char)50), (byte)50, 8);
run_byteQuery(byte_filterR, charParameter, new Character((char)50), (byte)50, 8);
run_byteQuery(byte_filterL, CharacterParameter, new Character((char)50), (byte)50, 8);
run_byteQuery(byte_filterR, CharacterParameter, new Character((char)100), (byte)100, 9);
run_byteQuery(byte_filterL, intParameter, new Integer(50), (byte)50, 8);
run_byteQuery(byte_filterR, intParameter, new Integer(50), (byte)50, 8);
run_byteQuery(byte_filterL, IntegerParameter, new Integer(-100), (byte)-100, 9);
run_byteQuery(byte_filterR, IntegerParameter, new Integer(-100), (byte)-100, 9);
run_byteQuery(byte_filterL, longParameter, new Long(50), (byte)50, 8);
run_byteQuery(byte_filterR, longParameter, new Long(50), (byte)50, 8);
run_byteQuery(byte_filterL, LongParameter, new Long(-100), (byte)-100, 9);
run_byteQuery(byte_filterR, LongParameter, new Long(-100), (byte)-100, 9);
run_byteQuery(byte_filterL, floatParameter, new Float(50), (byte)50, 8);
run_byteQuery(byte_filterR, floatParameter, new Float(50), (byte)50, 8);
run_byteQuery(byte_filterL, FloatParameter, new Float(-100), (byte)-100, 9);
run_byteQuery(byte_filterR, FloatParameter, new Float(-100), (byte)-100, 9);
run_byteQuery(byte_filterL, doubleParameter, new Double(50), (byte)50, 8);
run_byteQuery(byte_filterR, doubleParameter, new Double(50), (byte)50, 8);
run_byteQuery(byte_filterL, DoubleParameter, new Double(-100), (byte)-100, 9);
run_byteQuery(byte_filterR, DoubleParameter, new Double(-100), (byte)-100, 9);
run_byteQuery(byte_filterL, BigIntegerParameter, new BigInteger("50"), (byte)50, 8);
run_byteQuery(byte_filterR, BigIntegerParameter, new BigInteger("-100"), (byte)-100, 9);
run_byteQuery(byte_filterL, BigDecimalParameter, new BigDecimal("100.0"), (byte)100, 9);
run_byteQuery(byte_filterR, BigDecimalParameter, new BigDecimal("10.0"), (byte)10, 9);
alltypes.setbyte((byte)50);
run_byteQuery(byte_filterObj, AllTypesParameter, alltypes, (byte)50, 8);
alltypes.setbyte((byte)45);
run_byteQuery(byte_filterObj, AllTypesParameter, alltypes, (byte)45, 10);
run_byteQuery(byte_filterVal, null, null, (byte)100, 9);
run_shortQuery(short_filterL, shortParameter, new Short((short)100), (short)100, 8);
run_shortQuery(short_filterR, shortParameter, new Short((short)100), (short)100, 8);
run_shortQuery(short_filterL, ShortParameter, new Short(Short.MIN_VALUE), Short.MIN_VALUE, 9);
run_shortQuery(short_filterR, ShortParameter, new Short((short)253), (short)253, 10);
run_shortQuery(short_filterR, shortParameter, new Short((short)1000), (short)1000, 9);
run_shortQuery(short_filterL, byteParameter, new Byte((byte)75), (short)75, 10);
run_shortQuery(short_filterR, byteParameter, new Byte((byte)75), (short)75, 10);
run_shortQuery(short_filterL, ByteParameter, new Byte((byte)100), (short)100, 8);
run_shortQuery(short_filterR, ByteParameter, new Byte((byte)100), (short)100, 8);
run_shortQuery(short_filterL, charParameter, new Character((char)75), (short)75, 10);
run_shortQuery(short_filterR, charParameter, new Character((char)75), (short)75, 10);
run_shortQuery(short_filterL, CharacterParameter, new Character((char)100), (short)100, 8);
run_shortQuery(short_filterR, CharacterParameter, new Character((char)100), (short)100, 8);
run_shortQuery(short_filterL, intParameter, new Integer(-10000), (short)-10000, 9);
run_shortQuery(short_filterR, intParameter, new Integer(-10000), (short)-10000, 9);
run_shortQuery(short_filterL, IntegerParameter, new Integer(10000), (short)10000, 9);
run_shortQuery(short_filterR, IntegerParameter, new Integer(10000), (short)10000, 9);
run_shortQuery(short_filterL, longParameter, new Long(10000), (short) 10000, 9);
run_shortQuery(short_filterR, longParameter, new Long(10000), (short) 10000, 9);
run_shortQuery(short_filterL, LongParameter, new Long(100), (short)100, 8);
run_shortQuery(short_filterR, LongParameter, new Long(100), (short)100, 8);
run_shortQuery(short_filterL, floatParameter, new Float(23000), (short)23000, 10);
run_shortQuery(short_filterR, floatParameter, new Float(23000), (short)23000, 10);
run_shortQuery(short_filterL, FloatParameter, new Float(100), (short)100, 8);
run_shortQuery(short_filterR, FloatParameter, new Float(100), (short)100, 8);
run_shortQuery(short_filterL, doubleParameter, new Double(-10000), (short)-10000, 9);
run_shortQuery(short_filterR, doubleParameter, new Double(-10000), (short)-10000, 9);
run_shortQuery(short_filterL, DoubleParameter, new Double(23), (short)23, 10);
run_shortQuery(short_filterR, DoubleParameter, new Double(23), (short)23, 10);
run_shortQuery(short_filterL, BigIntegerParameter, new BigInteger("999"), (short)999, 10);
run_shortQuery(short_filterR, BigIntegerParameter, new BigInteger("-1000"), (short)-1000, 9);
run_shortQuery(short_filterL, BigDecimalParameter, new BigDecimal("100.0"), (short)100, 8);
run_shortQuery(short_filterR, BigDecimalParameter, new BigDecimal("0.0"), (short)0, 9);
alltypes.setshort((short)100);
run_shortQuery(short_filterObj, AllTypesParameter, alltypes, (short)100, 8);
alltypes.setshort((short)23);
run_shortQuery(short_filterObj, AllTypesParameter, alltypes, (short)23, 10);
run_shortQuery(short_filterVal, null, null, (short)1000, 9);
run_charQuery(char_filterL, charParameter, new Character(Character.MIN_VALUE), Character.MIN_VALUE, 9);
run_charQuery(char_filterR, charParameter, new Character(Character.MAX_VALUE), Character.MAX_VALUE, 9);
run_charQuery(char_filterL, charParameter, new Character('C'), 'C', 10);
run_charQuery(char_filterR, charParameter, new Character('z'), 'z', 8);
run_charQuery(char_filterL, CharacterParameter, new Character(' '), ' ', 9);
run_charQuery(char_filterR, CharacterParameter, new Character('f'), 'f', 10);
run_charQuery(char_filterL, byteParameter, new Byte((byte)Character.MIN_VALUE), (char)Character.MIN_VALUE, 9);
run_charQuery(char_filterR, byteParameter, new Byte((byte)122), 'z', 8);
run_charQuery(char_filterL, ByteParameter, new Byte((byte)'a'), 'a', 10);
run_charQuery(char_filterR, ByteParameter, new Byte((byte)'a'), 'a', 10);
run_charQuery(char_filterL, shortParameter, new Short((short)'M'), 'M', 8);
run_charQuery(char_filterR, shortParameter, new Short((short)'M'), 'M', 8);
run_charQuery(char_filterL, ShortParameter, new Short((short)'A'), 'A', 9);
run_charQuery(char_filterR, ShortParameter, new Short((short)'A'), 'A', 9);
run_charQuery(char_filterL, intParameter, new Integer('z'), 'z', 8);
run_charQuery(char_filterR, intParameter, new Integer('z'), 'z', 8);
run_charQuery(char_filterL, IntegerParameter, new Integer('B'), 'B', 9);
run_charQuery(char_filterR, IntegerParameter, new Integer('B'), 'B', 9);
run_charQuery(char_filterL, longParameter, new Long('z'), 'z', 8);
run_charQuery(char_filterR, longParameter, new Long('z'), 'z', 8);
run_charQuery(char_filterL, LongParameter, new Long('B'), 'B', 9);
run_charQuery(char_filterR, LongParameter, new Long('B'), 'B', 9);
run_charQuery(char_filterL, floatParameter, new Float(123.222), 'x', 10);
run_charQuery(char_filterR, floatParameter, new Float(123.222), 'x', 10);
run_charQuery(char_filterL, FloatParameter, new Float('z'), 'z', 8);
run_charQuery(char_filterR, FloatParameter, new Float('z'), 'z', 8);
run_charQuery(char_filterL, doubleParameter, new Double('B'), 'B', 9);
run_charQuery(char_filterR, doubleParameter, new Double('B'), 'B', 9);
run_charQuery(char_filterL, DoubleParameter, new Double('A'), 'A', 9);
run_charQuery(char_filterR, DoubleParameter, new Double('A'), 'A', 9);
run_charQuery(char_filterL, BigIntegerParameter, new BigInteger("65"), 'A', 9); // 'A' == 65
run_charQuery(char_filterR, BigIntegerParameter, new BigInteger("122"), 'z', 8); // 'z' == 122
run_charQuery(char_filterL, BigDecimalParameter, new BigDecimal("65.0"), 'A', 9);
run_charQuery(char_filterR, BigDecimalParameter, new BigDecimal("77.0"), 'M', 8); // 'M' == 77
alltypes.setchar('A');
run_charQuery(char_filterObj, AllTypesParameter, alltypes, 'A', 9);
alltypes.setchar('b');
run_charQuery(char_filterObj, AllTypesParameter, alltypes, 'b', 10);
run_charQuery(char_filterVal, null, null, 'M', 8);
run_intQuery(int_filterL, intParameter, new Integer(AllTypes.veryLargeNegativeInt), AllTypes.veryLargeNegativeInt, 9);
run_intQuery(int_filterR, intParameter, new Integer(AllTypes.veryLargePositiveInt), AllTypes.veryLargePositiveInt, 9);
run_intQuery(int_filterR, intParameter, new Integer(23), 23, 10);
run_intQuery(int_filterL, IntegerParameter, new Integer(1000000), 1000000, 9);
run_intQuery(int_filterR, IntegerParameter, new Integer(1000), 1000, 9);
run_intQuery(int_filterL, byteParameter, new Byte((byte)100), 100, 8);
run_intQuery(int_filterR, byteParameter, new Byte((byte)0), 0, 9);
run_intQuery(int_filterL, ByteParameter, new Byte((byte)100), 100, 8);
run_intQuery(int_filterR, ByteParameter, new Byte((byte)0), 0, 9);
run_intQuery(int_filterL, shortParameter, new Short((short)10000), 10000, 9);
run_intQuery(int_filterR, shortParameter, new Short((short)-1000), -1000, 9);
run_intQuery(int_filterL, ShortParameter, new Short((short)-1000), -1000, 9);
run_intQuery(int_filterR, ShortParameter, new Short((short)10000), 10000, 9);
run_intQuery(int_filterL, charParameter, new Character((char)10000), 10000, 9);
run_intQuery(int_filterR, charParameter, new Character((char)0), 0, 9);
run_intQuery(int_filterL, CharacterParameter, new Character((char)100), 100, 8);
run_intQuery(int_filterR, CharacterParameter, new Character((char)10000), 10000, 9);
run_intQuery(int_filterL, longParameter, new Long(AllTypes.veryLargePositiveInt), AllTypes.veryLargePositiveInt, 9);
run_intQuery(int_filterR, longParameter, new Long(AllTypes.veryLargeNegativeInt), AllTypes.veryLargeNegativeInt, 9);
run_intQuery(int_filterL, LongParameter, new Long(10000), 10000, 9);
run_intQuery(int_filterR, LongParameter, new Long(43), 43, 10);
run_intQuery(int_filterL, floatParameter, new Float(AllTypes.veryLargePositiveInt), AllTypes.veryLargePositiveInt, 9);
run_intQuery(int_filterR, floatParameter, new Float(AllTypes.veryLargeNegativeInt), AllTypes.veryLargeNegativeInt, 9);
run_intQuery(int_filterL, FloatParameter, new Float(10000), 10000, 9);
run_intQuery(int_filterR, FloatParameter, new Float(43), 43, 10);
run_intQuery(int_filterL, doubleParameter, new Double(AllTypes.veryLargePositiveInt), AllTypes.veryLargePositiveInt, 9);
run_intQuery(int_filterR, doubleParameter, new Double(AllTypes.veryLargeNegativeInt), AllTypes.veryLargeNegativeInt, 9);
run_intQuery(int_filterL, DoubleParameter, new Double(10000), 10000, 9);
run_intQuery(int_filterR, DoubleParameter, new Double(43), 43, 10);
run_intQuery(int_filterL, BigIntegerParameter, new BigInteger("1000000"), 1000000, 9);
run_intQuery(int_filterR, BigIntegerParameter, new BigInteger("-1000000"), -1000000, 9);
run_intQuery(int_filterL, BigDecimalParameter, new BigDecimal("1000000.0"), 1000000, 9);
run_intQuery(int_filterR, BigDecimalParameter, new BigDecimal("-1000000.0"), -1000000, 9);
alltypes.setint(100);
run_intQuery(int_filterObj, AllTypesParameter, alltypes, 100, 8);
run_intQuery(int_filterVal, null, null, 1000, 9);
run_longQuery(long_filterL, longParameter, new Long(Long.MIN_VALUE), Long.MIN_VALUE, 9);
run_longQuery(long_filterR, longParameter, new Long(Long.MAX_VALUE), Long.MAX_VALUE, 9);
run_longQuery(long_filterL, LongParameter, new Long(100), 100, 8);
run_longQuery(long_filterR, LongParameter, new Long(23), 23, 10);
run_longQuery(long_filterL, byteParameter, new Byte((byte)100), 100, 8);
run_longQuery(long_filterR, byteParameter, new Byte((byte)0), 0, 9);
run_longQuery(long_filterL, ByteParameter, new Byte((byte)100), 100, 8);
run_longQuery(long_filterR, ByteParameter, new Byte((byte)0), 0, 9);
run_longQuery(long_filterL, shortParameter, new Short((short)-1000 ), -1000, 8);
run_longQuery(long_filterR, shortParameter, new Short((short)1000), 1000, 9);
run_longQuery(long_filterL, ShortParameter, new Short((short)100), 100, 8);
run_longQuery(long_filterR, ShortParameter, new Short((short)32), 32, 10);
run_longQuery(long_filterL, charParameter, new Character((char)0), 0, 9);
run_longQuery(long_filterR, charParameter, new Character((char)100), 100, 8);
run_longQuery(long_filterL, CharacterParameter, new Character((char)23), 23, 10);
run_longQuery(long_filterR, CharacterParameter, new Character((char)0), 0, 9);
run_longQuery(long_filterL, intParameter, new Integer(100), 100, 8);
run_longQuery(long_filterR, intParameter, new Integer(0), 0, 9);
run_longQuery(long_filterL, IntegerParameter, new Integer(23), 23, 10);
run_longQuery(long_filterR, IntegerParameter, new Integer(1000000), 1000000, 9);
run_longQuery(long_filterL, floatParameter, new Float(-1000000.0), -1000000, 9);
// run_longQuery(long_filterR, floatParameter, new Float((float)Long.MAX_VALUE), Long.MAX_VALUE, 9);
run_longQuery(long_filterL, FloatParameter, new Float(100), 100, 8);
run_longQuery(long_filterR, FloatParameter, new Float(32), 32, 10);
run_longQuery(long_filterL, doubleParameter, new Double(-1000000.0), -1000000, 9);
// run_longQuery(long_filterR, doubleParameter, new Double((double)Long.MAX_VALUE), Long.MAX_VALUE, 9);
run_longQuery(long_filterL, DoubleParameter, new Double(100), 100, 8);
run_longQuery(long_filterR, DoubleParameter, new Double(32), 32, 10);
run_longQuery(long_filterL, BigIntegerParameter, new BigInteger("1000000"), 1000000, 9);
run_longQuery(long_filterR, BigIntegerParameter, new BigInteger("-1000000"), -1000000, 9);
run_longQuery(long_filterL, BigDecimalParameter, new BigDecimal("10000.0"), 10000, 10);
run_longQuery(long_filterR, BigDecimalParameter, new BigDecimal("-1000000.0"), -1000000, 9);
alltypes.setlong(100);
run_longQuery(long_filterObj, AllTypesParameter, alltypes, 100, 8);
run_longQuery(long_filterVal, null, null, 1000000, 9);
run_floatQuery(float_filterL, floatParameter, new Float(100.0f), 100.0f, 8);
run_floatQuery(float_filterR, floatParameter, new Float(100.0f), 100.0f, 8);
run_floatQuery(float_filterL, FloatParameter, new Float(0.0), 0.0f, 9);
run_floatQuery(float_filterR, FloatParameter, new Float(4.0), 4.0f, 10);
run_floatQuery(float_filterL, byteParameter, new Byte((byte)0), 0.0f, 9);
run_floatQuery(float_filterR, byteParameter, new Byte((byte)23), 23.0f, 10);
run_floatQuery(float_filterL, ByteParameter, new Byte((byte)34), 34.0f, 10);
run_floatQuery(float_filterR, ByteParameter, new Byte((byte)100), 100.0f, 8);
run_floatQuery(float_filterL, shortParameter, new Short((short)0), 0.0f, 9);
run_floatQuery(float_filterR, shortParameter, new Short((short)23), 23.0f, 10);
run_floatQuery(float_filterL, ShortParameter, new Short((short)34), 34.0f, 10);
run_floatQuery(float_filterR, ShortParameter, new Short((short)100), 100.0f, 8);
run_floatQuery(float_filterL, charParameter, new Character((char)0), 0.0f, 9);
run_floatQuery(float_filterR, charParameter, new Character((char)23), 23.0f, 10);
run_floatQuery(float_filterL, CharacterParameter, new Character((char)34), 34.0f, 10);
run_floatQuery(float_filterR, CharacterParameter, new Character((char)100), 100.0f, 8);
run_floatQuery(float_filterL, intParameter, new Integer(50000000), 50000000.0f, 9);
run_floatQuery(float_filterR, intParameter, new Integer(23), 23.0f, 10);
run_floatQuery(float_filterL, IntegerParameter, new Integer(34), 34.0f, 10);
run_floatQuery(float_filterR, IntegerParameter, new Integer(100), 100.0f, 8);
run_floatQuery(float_filterL, longParameter, new Long(50000000), 50000000.0f, 9);
run_floatQuery(float_filterR, longParameter, new Long(23), 23.0f, 10);
run_floatQuery(float_filterL, LongParameter, new Long(34), 34.0f, 10);
run_floatQuery(float_filterR, LongParameter, new Long(100), 100.0f, 8);
run_floatQuery(float_filterL, doubleParameter, new Double(50000000.0f), 50000000.0f, 9);
run_floatQuery(float_filterR, doubleParameter, new Double(0.0f), 0.0f, 9);
run_floatQuery(float_filterL, DoubleParameter, new Double(0.0f), 0.0f, 9);
run_floatQuery(float_filterR, DoubleParameter, new Double(100.0f), 100.0f, 8);
run_floatQuery(float_filterL, BigIntegerParameter, new BigInteger("0"), 0.0f, 9);
run_floatQuery(float_filterR, BigIntegerParameter, new BigInteger("1000000000"), 1000000000.0f, 9);
run_floatQuery(float_filterL, BigDecimalParameter, new BigDecimal("-234.23"), -234.23f, 9);
run_floatQuery(float_filterR, BigDecimalParameter, new BigDecimal("100.0"), 100.0f, 8);
alltypes.setfloat(23.23f);
run_floatQuery(float_filterObj, AllTypesParameter, alltypes, 23.23f, 10);
run_floatQuery(float_filterVal, null, null, 100.0f, 8);
run_doubleQuery(double_filterL, doubleParameter, new Double(350.5), 350.5, 9);
run_doubleQuery(double_filterR, doubleParameter, new Double(350.5), 350.5, 9);
run_doubleQuery(double_filterL, DoubleParameter, new Double(0.0), 0.0, 9);
run_doubleQuery(double_filterR, DoubleParameter, new Double(23.34), 23.34, 10);
run_doubleQuery(double_filterL, byteParameter, new Byte((byte)100), 100.0, 8);
run_doubleQuery(double_filterR, byteParameter, new Byte((byte)0), 0.0, 9);
run_doubleQuery(double_filterL, ByteParameter, new Byte((byte)23), 23.0, 10);
run_doubleQuery(double_filterR, ByteParameter, new Byte((byte)100), 100.0, 8);
run_doubleQuery(double_filterL, shortParameter, new Short((short)100), 100.0, 8);
run_doubleQuery(double_filterR, shortParameter, new Short((short)0), 0.0, 9);
run_doubleQuery(double_filterL, ShortParameter, new Short((short)23), 23.0, 10);
run_doubleQuery(double_filterR, ShortParameter, new Short((short)100), 100.0, 8);
run_doubleQuery(double_filterL, intParameter, new Integer(100), 100.0, 8);
run_doubleQuery(double_filterR, intParameter, new Integer(0), 0.0, 9);
run_doubleQuery(double_filterL, IntegerParameter, new Integer(23), 23.0, 10);
run_doubleQuery(double_filterR, IntegerParameter, new Integer(100), 100.0, 8);
run_doubleQuery(double_filterL, longParameter, new Long(100), 100.0, 8);
run_doubleQuery(double_filterR, longParameter, new Long(0), 0.0, 9);
run_doubleQuery(double_filterL, LongParameter, new Long(23), 23.0, 10);
run_doubleQuery(double_filterR, LongParameter, new Long(100), 100.0, 8);
run_doubleQuery(double_filterL, floatParameter, new Float(0.0f), 0.0, 9);
run_doubleQuery(double_filterR, floatParameter, new Float(100.0f), 100.0, 8);
run_doubleQuery(double_filterL, FloatParameter, new Float(100.0f), 100.0, 8);
run_doubleQuery(double_filterR, FloatParameter, new Float(69.96f), 69.96, 10);
run_doubleQuery(double_filterL, BigIntegerParameter, new BigInteger("50000000"), 50000000.0, 9);
run_doubleQuery(double_filterR, BigIntegerParameter, new BigInteger("1000000000"), 1000000000.0, 9);
run_doubleQuery(double_filterL, BigDecimalParameter, new BigDecimal("350.5"), 350.5, 9);
run_doubleQuery(double_filterR, BigDecimalParameter, new BigDecimal("-234234.234"), -234234.234, 9);
alltypes.setdouble(0.0);
run_doubleQuery(double_filterObj, AllTypesParameter, alltypes, 0.0, 9);
run_doubleQuery(double_filterVal, null, null, 100.0, 8);
run_BooleanQuery(Boolean_filterL, booleanParameter, trueBoolean, trueBoolean, 6);
run_BooleanQuery(Boolean_filterL, booleanParameter, falseBoolean, falseBoolean, 4);
run_BooleanQuery(Boolean_filterR, booleanParameter, trueBoolean, trueBoolean, 6);
run_BooleanQuery(Boolean_filterR, booleanParameter, falseBoolean, falseBoolean, 4);
run_BooleanQuery(Boolean_filterL, BooleanParameter, trueBoolean, trueBoolean, 6);
run_BooleanQuery(Boolean_filterL, BooleanParameter, falseBoolean, falseBoolean, 4);
run_BooleanQuery(Boolean_filterR, BooleanParameter, trueBoolean, trueBoolean, 6);
run_BooleanQuery(Boolean_filterR, BooleanParameter, falseBoolean, falseBoolean, 4);
run_BooleanQuery(Boolean_filterT, null, trueBoolean, trueBoolean, 6);
run_BooleanQuery(Boolean_filterF, null, falseBoolean, falseBoolean, 4);
alltypes.setBoolean(trueBoolean);
run_BooleanQuery(Boolean_filterObj, AllTypesParameter, alltypes, trueBoolean, 6);
alltypes.setBoolean(falseBoolean);
run_BooleanQuery(Boolean_filterObj, AllTypesParameter, alltypes, falseBoolean, 4);
run_ByteQuery(Byte_filterL, byteParameter, new Byte((byte)50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, byteParameter, new Byte(Byte.MIN_VALUE), new Byte(Byte.MIN_VALUE), 9);
run_ByteQuery(Byte_filterL, ByteParameter, new Byte((byte)20), new Byte((byte)20), 10);
run_ByteQuery(Byte_filterR, ByteParameter, new Byte(Byte.MAX_VALUE), new Byte(Byte.MAX_VALUE), 9);
run_ByteQuery(Byte_filterL, shortParameter, new Short((short)50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, shortParameter, new Short((short)50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterL, ShortParameter, new Short((short)-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterR, ShortParameter, new Short((short)-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterL, charParameter, new Character((char)50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, charParameter, new Character((char)50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterL, CharacterParameter, new Character((char)50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, CharacterParameter, new Character((char)75), new Byte((byte)75), 9);
run_ByteQuery(Byte_filterL, intParameter, new Integer(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, intParameter, new Integer(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterL, IntegerParameter, new Integer(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, IntegerParameter, new Integer(75), new Byte((byte)75), 9);
run_ByteQuery(Byte_filterL, longParameter, new Long(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, longParameter, new Long(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterL, LongParameter, new Long(-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterR, LongParameter, new Long(-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterL, floatParameter, new Float(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, floatParameter, new Float(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterL, FloatParameter, new Float(-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterR, FloatParameter, new Float(-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterL, doubleParameter, new Double(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, doubleParameter, new Double(50), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterL, DoubleParameter, new Double(-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterR, DoubleParameter, new Double(-100), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterL, BigIntegerParameter, new BigInteger("50"), new Byte((byte)50), 8);
run_ByteQuery(Byte_filterR, BigIntegerParameter, new BigInteger("-100"), new Byte((byte)-100), 9);
run_ByteQuery(Byte_filterL, BigDecimalParameter, new BigDecimal("100.0"), new Byte((byte)100), 9);
run_ByteQuery(Byte_filterR, BigDecimalParameter, new BigDecimal("10.0"), new Byte((byte)10), 9);
Byte val = new Byte((byte)50);
alltypes.setByte(val);
run_ByteQuery(Byte_filterObj, AllTypesParameter, alltypes, val, 8);
val = new Byte((byte)45);
alltypes.setByte(val);
run_ByteQuery(Byte_filterObj, AllTypesParameter, alltypes, val, 10);
run_ByteQuery(Byte_filterVal, null, null, new Byte((byte)100), 9);
run_ShortQuery(Short_filterL, shortParameter, new Short((short)100), new Short((short)100), 8);
run_ShortQuery(Short_filterR, shortParameter, new Short((short)100), new Short((short)100), 8);
run_ShortQuery(Short_filterL, ShortParameter, new Short(Short.MIN_VALUE), new Short(Short.MIN_VALUE), 9);
run_ShortQuery(Short_filterR, ShortParameter, new Short((short)253), new Short((short)253), 10);
run_ShortQuery(Short_filterR, shortParameter, new Short((short)1000), new Short((short)1000), 9);
run_ShortQuery(Short_filterL, byteParameter, new Byte((byte)75), new Short((short)75), 10);
run_ShortQuery(Short_filterR, byteParameter, new Byte((byte)75), new Short((short)75), 10);
run_ShortQuery(Short_filterL, ByteParameter, new Byte((byte)100), new Short((short)100), 8);
run_ShortQuery(Short_filterR, ByteParameter, new Byte((byte)100), new Short((short)100), 8);
run_ShortQuery(Short_filterL, charParameter, new Character((char)75), new Short((short)75), 10);
run_ShortQuery(Short_filterR, charParameter, new Character((char)75), new Short((short)75), 10);
run_ShortQuery(Short_filterL, CharacterParameter, new Character((char)100), new Short((short)100), 8);
run_ShortQuery(Short_filterR, CharacterParameter, new Character((char)100), new Short((short)100), 8);
run_ShortQuery(Short_filterL, intParameter, new Integer(-10000), new Short((short)-10000), 9);
run_ShortQuery(Short_filterR, intParameter, new Integer(-10000), new Short((short)-10000), 9);
run_ShortQuery(Short_filterL, IntegerParameter, new Integer(10000), new Short((short)10000), 9);
run_ShortQuery(Short_filterR, IntegerParameter, new Integer(10000), new Short((short)10000), 9);
run_ShortQuery(Short_filterL, longParameter, new Long(10000), new Short((short) 10000), 9);
run_ShortQuery(Short_filterR, longParameter, new Long(10000), new Short((short) 10000), 9);
run_ShortQuery(Short_filterL, LongParameter, new Long(100), new Short((short)100), 8);
run_ShortQuery(Short_filterR, LongParameter, new Long(100), new Short((short)100), 8);
run_ShortQuery(Short_filterL, floatParameter, new Float(23000), new Short((short)23000), 10);
run_ShortQuery(Short_filterR, floatParameter, new Float(23000), new Short((short)23000), 10);
run_ShortQuery(Short_filterL, FloatParameter, new Float(100), new Short((short)100), 8);
run_ShortQuery(Short_filterR, FloatParameter, new Float(100), new Short((short)100), 8);
run_ShortQuery(Short_filterL, doubleParameter, new Double(-10000), new Short((short)-10000), 9);
run_ShortQuery(Short_filterR, doubleParameter, new Double(-10000), new Short((short)-10000), 9);
run_ShortQuery(Short_filterL, DoubleParameter, new Double(23), new Short((short)23), 10);
run_ShortQuery(Short_filterR, DoubleParameter, new Double(23), new Short((short)23), 10);
run_ShortQuery(Short_filterL, BigIntegerParameter, new BigInteger("999"), new Short((short)999), 10);
run_ShortQuery(Short_filterR, BigIntegerParameter, new BigInteger("-1000"), new Short((short)-1000), 9);
run_ShortQuery(Short_filterL, BigDecimalParameter, new BigDecimal("100.0"), new Short((short)100), 8);
run_ShortQuery(Short_filterR, BigDecimalParameter, new BigDecimal("10000.0"), new Short((short)10000), 9);
Short sval = new Short((short)100);
alltypes.setShort(sval);
run_ShortQuery(Short_filterObj, AllTypesParameter, alltypes, sval, 8);
sval = new Short((short)23);
alltypes.setShort(sval);
run_ShortQuery(Short_filterObj, AllTypesParameter, alltypes, sval, 10);
run_ShortQuery(Short_filterVal, null, null, new Short((short)-1000), 9);
run_CharacterQuery(Character_filterL, charParameter, new Character(Character.MIN_VALUE), new Character(Character.MIN_VALUE), 9);
run_CharacterQuery(Character_filterR, charParameter, new Character(Character.MAX_VALUE), new Character(Character.MAX_VALUE), 9);
run_CharacterQuery(Character_filterL, charParameter, new Character('C'), new Character('C'), 10);
run_CharacterQuery(Character_filterR, charParameter, new Character('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterL, CharacterParameter, new Character(' '), new Character(' '), 9);
run_CharacterQuery(Character_filterR, CharacterParameter, new Character('f'), new Character('f'), 10);
run_CharacterQuery(Character_filterL, byteParameter, new Byte((byte)Character.MIN_VALUE), new Character((char)Character.MIN_VALUE), 9);
run_CharacterQuery(Character_filterR, ByteParameter, new Byte((byte)'a'), new Character('a'), 10);
run_CharacterQuery(Character_filterL, shortParameter, new Short((short)'M'), new Character('M'), 8);
run_CharacterQuery(Character_filterR, shortParameter, new Short((short)'F'), new Character('F'), 9);
run_CharacterQuery(Character_filterL, ShortParameter, new Short((short)'A'), new Character('A'), 9);
run_CharacterQuery(Character_filterR, ShortParameter, new Short((short)'A'), new Character('A'), 9);
run_CharacterQuery(Character_filterL, intParameter, new Integer('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterR, intParameter, new Integer('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterL, IntegerParameter, new Integer('B'), new Character('B'), 9);
run_CharacterQuery(Character_filterR, IntegerParameter, new Integer('B'), new Character('B'), 9);
run_CharacterQuery(Character_filterL, longParameter, new Long('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterR, longParameter, new Long('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterL, LongParameter, new Long('B'), new Character('B'), 9);
run_CharacterQuery(Character_filterR, LongParameter, new Long('B'), new Character('B'), 9);
run_CharacterQuery(Character_filterL, floatParameter, new Float(123.222), new Character('x'), 10);
run_CharacterQuery(Character_filterR, floatParameter, new Float(123.222), new Character('x'), 10);
run_CharacterQuery(Character_filterL, FloatParameter, new Float('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterR, FloatParameter, new Float('z'), new Character('z'), 8);
run_CharacterQuery(Character_filterL, doubleParameter, new Double('B'), new Character('B'), 9);
run_CharacterQuery(Character_filterR, doubleParameter, new Double('B'), new Character('B'), 9);
run_CharacterQuery(Character_filterL, DoubleParameter, new Double('A'), new Character('A'), 9);
run_CharacterQuery(Character_filterR, DoubleParameter, new Double('A'), new Character('A'), 9);
run_CharacterQuery(Character_filterL, BigIntegerParameter, new BigInteger("65"), new Character('A'), 9); // 'A' == 65
run_CharacterQuery(Character_filterR, BigIntegerParameter, new BigInteger("122"), new Character('z'), 8); // 'z' == 122
run_CharacterQuery(Character_filterL, BigDecimalParameter, new BigDecimal("65.000000"), new Character('A'), 9);
run_CharacterQuery(Character_filterR, BigDecimalParameter, new BigDecimal("77.0"), new Character('M'), 8); // 'M' == 77
alltypes.setCharacter(new Character('A'));
run_CharacterQuery(Character_filterObj, AllTypesParameter, alltypes, new Character('A'), 9);
alltypes.setCharacter(new Character('b'));
run_CharacterQuery(Character_filterObj, AllTypesParameter, alltypes, new Character('b'), 10);
run_CharacterQuery(Character_filterVal, null, null, new Character('z'), 8);
run_IntegerQuery(Integer_filterL, intParameter, new Integer(AllTypes.veryLargeNegativeInt), new Integer(AllTypes.veryLargeNegativeInt), 9);
run_IntegerQuery(Integer_filterR, intParameter, new Integer(AllTypes.veryLargePositiveInt), new Integer(AllTypes.veryLargePositiveInt), 9);
run_IntegerQuery(Integer_filterR, intParameter, new Integer(23), new Integer(23), 10);
run_IntegerQuery(Integer_filterL, IntegerParameter, new Integer(1000000), new Integer(1000000), 9);
run_IntegerQuery(Integer_filterR, IntegerParameter, new Integer(1000), new Integer(1000), 9);
run_IntegerQuery(Integer_filterL, byteParameter, new Byte((byte)100), new Integer(100), 8);
run_IntegerQuery(Integer_filterR, byteParameter, new Byte((byte)0), new Integer(0), 9);
run_IntegerQuery(Integer_filterL, ByteParameter, new Byte((byte)100), new Integer(100), 8);
run_IntegerQuery(Integer_filterR, ByteParameter, new Byte((byte)0), new Integer(0), 9);
run_IntegerQuery(Integer_filterL, shortParameter, new Short((short)10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterR, shortParameter, new Short((short)-1000), new Integer(-1000), 9);
run_IntegerQuery(Integer_filterL, ShortParameter, new Short((short)-1000), new Integer(-1000), 9);
run_IntegerQuery(Integer_filterL, charParameter, new Character((char)10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterR, charParameter, new Character((char)100), new Integer(100), 8);
run_IntegerQuery(Integer_filterL, CharacterParameter, new Character((char)10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterR, CharacterParameter, new Character((char)10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterL, longParameter, new Long(AllTypes.veryLargePositiveInt), new Integer(AllTypes.veryLargePositiveInt), 9);
run_IntegerQuery(Integer_filterR, longParameter, new Long(AllTypes.veryLargeNegativeInt), new Integer(AllTypes.veryLargeNegativeInt), 9);
run_IntegerQuery(Integer_filterL, LongParameter, new Long(10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterR, LongParameter, new Long(43), new Integer(43), 10);
run_IntegerQuery(Integer_filterL, floatParameter, new Float(AllTypes.veryLargePositiveInt), new Integer(AllTypes.veryLargePositiveInt), 9);
run_IntegerQuery(Integer_filterR, floatParameter, new Float(AllTypes.veryLargeNegativeInt), new Integer(AllTypes.veryLargeNegativeInt), 9);
run_IntegerQuery(Integer_filterL, FloatParameter, new Float(10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterR, FloatParameter, new Float(43), new Integer(43), 10);
run_IntegerQuery(Integer_filterL, doubleParameter, new Double(AllTypes.veryLargePositiveInt), new Integer(AllTypes.veryLargePositiveInt), 9);
run_IntegerQuery(Integer_filterR, doubleParameter, new Double(AllTypes.veryLargeNegativeInt), new Integer(AllTypes.veryLargeNegativeInt), 9);
run_IntegerQuery(Integer_filterL, DoubleParameter, new Double(10000), new Integer(10000), 9);
run_IntegerQuery(Integer_filterR, DoubleParameter, new Double(43), new Integer(43), 10);
run_IntegerQuery(Integer_filterL, BigIntegerParameter, new BigInteger("1000000"), new Integer(1000000), 9);
run_IntegerQuery(Integer_filterR, BigIntegerParameter, new BigInteger("-1000000"), new Integer(-1000000), 9);
run_IntegerQuery(Integer_filterL, BigDecimalParameter, new BigDecimal("1000000.0"), new Integer(1000000), 9);
run_IntegerQuery(Integer_filterR, BigDecimalParameter, new BigDecimal("-100000.0"), new Integer(-100000), 10);
alltypes.setInteger(new Integer(100));
run_IntegerQuery(Integer_filterObj, AllTypesParameter, alltypes, new Integer(100), 8);
run_IntegerQuery(Integer_filterVal, null, null, new Integer(100), 8);
run_LongQuery(Long_filterL, longParameter, new Long(Long.MIN_VALUE), new Long(Long.MIN_VALUE), 9);
run_LongQuery(Long_filterR, longParameter, new Long(Long.MAX_VALUE), new Long(Long.MAX_VALUE), 9);
run_LongQuery(Long_filterL, LongParameter, new Long(100), new Long(100), 8);
run_LongQuery(Long_filterR, LongParameter, new Long(23), new Long(23), 10);
run_LongQuery(Long_filterL, byteParameter, new Byte((byte)100), new Long(100), 8);
run_LongQuery(Long_filterR, byteParameter, new Byte((byte)0), new Long(0), 9);
run_LongQuery(Long_filterL, ByteParameter, new Byte((byte)100), new Long(100), 8);
run_LongQuery(Long_filterR, ByteParameter, new Byte((byte)0), new Long(0), 9);
run_LongQuery(Long_filterL, shortParameter, new Short((short)-1000 ), new Long(-1000), 8);
run_LongQuery(Long_filterR, shortParameter, new Short((short)1000), new Long(1000), 9);
run_LongQuery(Long_filterL, ShortParameter, new Short((short)100), new Long(100), 8);
run_LongQuery(Long_filterR, ShortParameter, new Short((short)32), new Long(32), 10);
run_LongQuery(Long_filterL, charParameter, new Character((char)0), new Long(0), 9);
run_LongQuery(Long_filterR, charParameter, new Character((char)100), new Long(100), 8);
run_LongQuery(Long_filterL, CharacterParameter, new Character((char)23), new Long(23), 10);
run_LongQuery(Long_filterR, CharacterParameter, new Character((char)0), new Long(0), 9);
run_LongQuery(Long_filterL, intParameter, new Integer(100), new Long(100), 8);
run_LongQuery(Long_filterR, intParameter, new Integer(0), new Long(0), 9);
run_LongQuery(Long_filterL, IntegerParameter, new Integer(23), new Long(23), 10);
run_LongQuery(Long_filterR, IntegerParameter, new Integer(1000000), new Long(1000000), 9);
run_LongQuery(Long_filterL, floatParameter, new Float(-1000000.0), new Long(-1000000), 9);
// run_LongQuery(Long_filterR, floatParameter, new Float((float)Long.MAX_VALUE), new Long(Long.MAX_VALUE), 9);
run_LongQuery(Long_filterL, FloatParameter, new Float(100), new Long(100), 8);
run_LongQuery(Long_filterR, FloatParameter, new Float(32), new Long(32), 10);
run_LongQuery(Long_filterL, doubleParameter, new Double(-1000000.0), new Long(-1000000), 9);
// run_LongQuery(Long_filterR, doubleParameter, new Double((double)Long.MAX_VALUE), new Long(Long.MAX_VALUE), 9);
run_LongQuery(Long_filterL, DoubleParameter, new Double(100), new Long(100), 8);
run_LongQuery(Long_filterR, DoubleParameter, new Double(32), new Long(32), 10);
run_LongQuery(Long_filterL, BigIntegerParameter, new BigInteger("1000000"), new Long(1000000), 9);
run_LongQuery(Long_filterR, BigIntegerParameter, new BigInteger("-1000000"), new Long(-1000000), 9);
run_LongQuery(Long_filterL, BigDecimalParameter, new BigDecimal("-1000.0"), new Long(-1000), 8);
run_LongQuery(Long_filterR, BigDecimalParameter, new BigDecimal("-1000000.0"), new Long(-1000000), 9);
alltypes.setLong(new Long(100));
run_LongQuery(Long_filterObj, AllTypesParameter, alltypes, new Long(100), 8);
run_LongQuery(Long_filterVal, null, null, new Long(-1000), 8);
run_FloatQuery(Float_filterL, floatParameter, new Float(100.0f), new Float(100.0f), 8);
run_FloatQuery(Float_filterR, floatParameter, new Float(100.0f), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, FloatParameter, new Float(0.0), new Float(0.0f), 9);
run_FloatQuery(Float_filterR, FloatParameter, new Float(4.0), new Float(4.0f), 10);
run_FloatQuery(Float_filterL, byteParameter, new Byte((byte)0), new Float(0.0f), 9);
run_FloatQuery(Float_filterR, byteParameter, new Byte((byte)23), new Float(23.0f), 10);
run_FloatQuery(Float_filterL, ByteParameter, new Byte((byte)34), new Float(34.0f), 10);
run_FloatQuery(Float_filterR, ByteParameter, new Byte((byte)100), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, shortParameter, new Short((short)0), new Float(0.0f), 9);
run_FloatQuery(Float_filterR, shortParameter, new Short((short)23), new Float(23.0f), 10);
run_FloatQuery(Float_filterL, ShortParameter, new Short((short)34), new Float(34.0f), 10);
run_FloatQuery(Float_filterR, ShortParameter, new Short((short)100), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, charParameter, new Character((char)0), new Float(0.0f), 9);
run_FloatQuery(Float_filterR, charParameter, new Character((char)23), new Float(23.0f), 10);
run_FloatQuery(Float_filterL, CharacterParameter, new Character((char)34), new Float(34.0f), 10);
run_FloatQuery(Float_filterR, CharacterParameter, new Character((char)100), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, intParameter, new Integer(50000000), new Float(50000000.0f), 9);
run_FloatQuery(Float_filterR, intParameter, new Integer(23), new Float(23.0f), 10);
run_FloatQuery(Float_filterL, IntegerParameter, new Integer(34), new Float(34.0f), 10);
run_FloatQuery(Float_filterR, IntegerParameter, new Integer(100), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, longParameter, new Long(50000000), new Float(50000000.0f), 9);
run_FloatQuery(Float_filterR, longParameter, new Long(23), new Float(23.0f), 10);
run_FloatQuery(Float_filterL, LongParameter, new Long(34), new Float(34.0f), 10);
run_FloatQuery(Float_filterR, LongParameter, new Long(100), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, doubleParameter, new Double(50000000.0f), new Float(50000000.0f), 9);
run_FloatQuery(Float_filterR, doubleParameter, new Double(100.0f), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, DoubleParameter, new Double(0.0f), new Float(0.0f), 9);
run_FloatQuery(Float_filterR, DoubleParameter, new Double(100.0f), new Float(100.0f), 8);
run_FloatQuery(Float_filterL, BigIntegerParameter, new BigInteger("50000000"), new Float(50000000.0f), 9);
run_FloatQuery(Float_filterR, BigIntegerParameter, new BigInteger("1000000000"), new Float(1000000000.0f), 9);
run_FloatQuery(Float_filterL, BigDecimalParameter, new BigDecimal("350.5"), new Float(350.5f), 9);
run_FloatQuery(Float_filterR, BigDecimalParameter, new BigDecimal("50000000.0"), new Float(50000000.0f), 9);
alltypes.setFloat(new Float(23.23f));
run_FloatQuery(Float_filterObj, AllTypesParameter, alltypes, new Float(23.23f), 10);
run_FloatQuery(Float_filterVal, null, null, new Float(100.0f), 8);
run_DoubleQuery(Double_filterL, doubleParameter, new Double(-25.5), new Double(-25.5), 9);
run_DoubleQuery(Double_filterR, doubleParameter, new Double(-25.5), new Double(-25.5), 9);
run_DoubleQuery(Double_filterL, DoubleParameter, new Double(0.0), new Double(0.0), 9);
run_DoubleQuery(Double_filterR, DoubleParameter, new Double(23.34), new Double(23.34), 10);
run_DoubleQuery(Double_filterL, byteParameter, new Byte((byte)100), new Double(100.0), 8);
run_DoubleQuery(Double_filterR, byteParameter, new Byte((byte)0), new Double(0.0), 9);
run_DoubleQuery(Double_filterL, ByteParameter, new Byte((byte)23), new Double(23.0), 10);
run_DoubleQuery(Double_filterR, ByteParameter, new Byte((byte)100), new Double(100.0), 8);
run_DoubleQuery(Double_filterL, shortParameter, new Short((short)100), new Double(100.0), 8);
run_DoubleQuery(Double_filterR, shortParameter, new Short((short)0), new Double(0.0), 9);
run_DoubleQuery(Double_filterL, ShortParameter, new Short((short)23), new Double(23.0), 10);
run_DoubleQuery(Double_filterR, ShortParameter, new Short((short)100), new Double(100.0), 8);
run_DoubleQuery(Double_filterL, charParameter, new Character((char)100), new Double(100.0), 8);
run_DoubleQuery(Double_filterR, charParameter, new Character((char)0), new Double(0.0), 9);
run_DoubleQuery(Double_filterL, CharacterParameter, new Character((char)23), new Double(23.0), 10);
run_DoubleQuery(Double_filterR, CharacterParameter, new Character((char)100), new Double(100.0), 8);
run_DoubleQuery(Double_filterL, intParameter, new Integer(100), new Double(100.0), 8);
run_DoubleQuery(Double_filterR, intParameter, new Integer(0), new Double(0.0), 9);
run_DoubleQuery(Double_filterL, IntegerParameter, new Integer(23), new Double(23.0), 10);
run_DoubleQuery(Double_filterR, IntegerParameter, new Integer(100), new Double(100.0), 8);
run_DoubleQuery(Double_filterL, longParameter, new Long(100), new Double(100.0), 8);
run_DoubleQuery(Double_filterR, longParameter, new Long(0), new Double(0.0), 9);
run_DoubleQuery(Double_filterL, LongParameter, new Long(23), new Double(23.0), 10);
run_DoubleQuery(Double_filterR, LongParameter, new Long(100), new Double(100.0), 8);
run_DoubleQuery(Double_filterL, floatParameter, new Float(0.0f), new Double(0.0), 9);
run_DoubleQuery(Double_filterR, floatParameter, new Float(100.0f), new Double(100.0), 8);
run_DoubleQuery(Double_filterL, FloatParameter, new Float(100.0f), new Double(100.0), 8);
run_DoubleQuery(Double_filterR, FloatParameter, new Float(69.96f), new Double(69.96), 10);
run_DoubleQuery(Double_filterL, BigIntegerParameter, new BigInteger("50000000"), new Double(50000000.0f), 9);
run_DoubleQuery(Double_filterR, BigIntegerParameter, new BigInteger("1000000000"), new Double(1000000000.0f), 9);
run_DoubleQuery(Double_filterL, BigDecimalParameter, new BigDecimal("350.5"), new Double(350.5f), 9);
run_DoubleQuery(Double_filterR, BigDecimalParameter, new BigDecimal("50000000.0"), new Double(50000000.0f), 9);
alltypes.setDouble(new Double(0.0));
run_DoubleQuery(Double_filterObj, AllTypesParameter, alltypes, new Double(0.0), 9);
run_DoubleQuery(Double_filterVal, null, null, new Double(100.0), 8);
run_StringQuery(String_filterL, StringParameter, new String("JDO"), new String("JDO"), 9);
run_StringQuery(String_filterR, StringParameter, new String("JDBC"), new String("JDBC"), 10);
alltypes.setString(new String("abcde"));
run_StringQuery(String_filterObj, AllTypesParameter, alltypes, new String("abcde"), 9);
run_StringQuery(String_filterVal1, null, null, new String("Java"), 8);
run_StringQuery(String_filterVal2, null, null, new String(""), 9);
run_LocaleQuery(Locale_filterL, LocaleParameter, Locale.CANADA_FRENCH, Locale.CANADA_FRENCH, 10);
run_LocaleQuery(Locale_filterR, LocaleParameter, Locale.US, Locale.US, 9);
alltypes.setLocale(Locale.UK);
run_LocaleQuery(Locale_filterObj, AllTypesParameter, alltypes, Locale.UK, 9);
BigDecimal bd = new BigDecimal("100.0");
run_BigDecimalQuery(BigDecimal_filterL, BigDecimalParameter, bd, bd, 8);
bd = new BigDecimal("-234234.23333");
run_BigDecimalQuery(BigDecimal_filterR, BigDecimalParameter, bd, bd, 9);
bd = new BigDecimal("989899.33304953");
run_BigDecimalQuery(BigDecimal_filterL, BigDecimalParameter, bd, bd, 10);
bd = new BigDecimal("-1123123.22");
run_BigDecimalQuery(BigDecimal_filterR, BigDecimalParameter, bd, bd, 9);
alltypes.setBigDecimal(bd);
run_BigDecimalQuery(BigDecimal_filterObj, AllTypesParameter, alltypes, bd, 9);
BigInteger bi = new BigInteger("987034534985043985");
run_BigIntegerQuery(BigInteger_filterL, BigIntegerParameter, bi, bi, 9);
bi = new BigInteger("-999999999999999999");
run_BigIntegerQuery(BigInteger_filterR, BigIntegerParameter, bi, bi, 9);
bi = new BigInteger("-99999999999999999");
run_BigIntegerQuery(BigInteger_filterR, BigIntegerParameter, bi, bi, 10);
bi = new BigInteger("1333330");
alltypes.setBigInteger(bi);
run_BigIntegerQuery(BigInteger_filterObj, AllTypesParameter, alltypes, bi, 9);
GregorianCalendar gc = new GregorianCalendar(TimeZone.getTimeZone("GMT"), Locale.UK);
gc.clear();
gc.set(1999, Calendar.DECEMBER, 31, 9, 0, 0);
Date d = gc.getTime();
run_DateQuery(Date_filterL, DateParameter, d, d, 9);
gc.set(1992, Calendar.NOVEMBER, 22, 9, 0, 0);
d = gc.getTime();
run_DateQuery(Date_filterR, DateParameter, d, d, 9);
gc.set(1959, Calendar.OCTOBER, 9, 9, 0, 0);
d = gc.getTime();
run_DateQuery(Date_filterR, DateParameter, d, d, 10);
gc.set(1995, Calendar.JUNE, 14, 9, 0, 0);
d = gc.getTime();
alltypes.setDate(d);
run_DateQuery(Date_filterObj, AllTypesParameter, alltypes, d, 9);
}
private void run_booleanQuery(String filter, String parameter, Object parameterValue, boolean value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while(iter.hasNext()){
AllTypes obj = (AllTypes) iter.next();
boolean val = obj.getboolean();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns object with incorrect value", filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_byteQuery(String filter, String parameter, Object parameterValue, byte value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
byte val = obj.getbyte();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", byte parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_shortQuery(String filter, String parameter, Object parameterValue, short value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
short val = obj.getshort();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", short parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_charQuery(String filter, String parameter, Object parameterValue, char value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
char val = obj.getchar();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", char parameter value: " + value + ", char integer value: " + (int)value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_intQuery(String filter, String parameter, Object parameterValue, int value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
int val = obj.getint();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", int parameter value: "+ value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_longQuery(String filter, String parameter, Object parameterValue, long value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
long val = obj.getlong();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", long parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_floatQuery(String filter, String parameter, Object parameterValue, float value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
float val = obj.getfloat();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", float parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_doubleQuery(String filter, String parameter, Object parameterValue, double value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
double val = obj.getdouble();
if( val == value ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", double parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_BooleanQuery(String filter, String parameter, Object parameterValue, Boolean value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while(iter.hasNext()){
AllTypes obj = (AllTypes) iter.next();
Boolean val = obj.getBoolean();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns object with incorrect value, retrieved value: " + val + ", Boolean parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count )
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
query.close(query_result);
tx.rollback();
}
private void run_ByteQuery(String filter, String parameter, Object parameterValue, Byte value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Byte val = obj.getByte();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Byte parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_ShortQuery(String filter, String parameter, Object parameterValue, Short value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Short val = obj.getShort();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Short parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_CharacterQuery(String filter, String parameter, Object parameterValue, Character value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Character val = obj.getCharacter();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Character parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_IntegerQuery(String filter, String parameter, Object parameterValue, Integer value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Integer val = obj.getInteger();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Integer parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_LongQuery(String filter, String parameter, Object parameterValue, Long value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Long val = obj.getLong();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Long parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_FloatQuery(String filter, String parameter, Object parameterValue, Float value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Float val = obj.getFloat();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Float parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_DoubleQuery(String filter, String parameter, Object parameterValue, Double value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Double val = obj.getDouble();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", Double parameter value: " + value + ", Object parameter value: " + parameterValue, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_StringQuery(String filter, String parameter, Object parameterValue, String value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
String val = obj.getString();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", parameter value: " + value, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_LocaleQuery(String filter, String parameter, Object parameterValue, Locale value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Locale val = obj.getLocale();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", parameter value: " + value, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_BigDecimalQuery(String filter, String parameter, Object parameterValue, BigDecimal value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
BigDecimal val = obj.getBigDecimal();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", parameter value: " + value, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_BigIntegerQuery(String filter, String parameter, Object parameterValue, BigInteger value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
BigInteger val = obj.getBigInteger();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", parameter value: " + value, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
private void run_DateQuery(String filter, String parameter, Object parameterValue, Date value, int expected_count)
{
tx.begin();
runQuery(pm, filter, parameter, parameterValue, ASSERTION_FAILED);
if( query_result == null )
return;
Iterator iter = query_result.iterator();
int cnt = 0;
while( iter.hasNext() ){
AllTypes obj = (AllTypes) iter.next();
Date val = obj.getDate();
if( val.equals(value) ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns incorrect value, retrieved value: " + val + ", parameter value: " + value, filter, parameter);
}
cnt++;
}
if( cnt != expected_count ){
fail(ASSERTION_FAILED, "JDOQL NotEquals test returns wrong number of instances, expected " + expected_count + ", got " + cnt, filter, parameter);
}
query.close(query_result);
tx.rollback();
}
}