blob: 9979b1983efa53324b0c9616e5b4a8576265b69c [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.sdo.model.dataobject.xpathpositional;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.SDOProperty;
public class SDODataObjectGetLongByPositionalPathTest extends SDODataObjectGetByPositionalPathTestCases {
public SDODataObjectGetLongByPositionalPathTest(String name) {
super(name);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.model.dataobject.xpathpositional.SDODataObjectGetLongByPositionalPathTest" };
TestRunner.main(arguments);
}
//1. purpose: getLong with boolean property
public void testGetLongFromBoolean() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_BOOLEAN);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
dataObject_c.set(property_c, false);
try {
long value = dataObject_a.getLong(propertyPath_a_b_c);
long controlValue = 0;
assertEquals(controlValue, value);
//TODO: conversion not supported by sdo spec but is supported by TopLink
} catch (ClassCastException e) {
}
}
//2. purpose: getLong with Defined Byte Property
public void testGetLongConversionFromDefinedByteProperty() {
// dataObject's type add boolean property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_BYTE);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
byte by = 12;
dataObject_a.setByte(propertyPath_a_b_c, by);// add it to instance list
assertEquals(by, dataObject_a.getLong(propertyPath_a_b_c));
}
//3. purpose: getLong with Undefined Byte Property
public void testGetLongConversionFromUnDefinedByteProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_BYTE);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//4. purpose: getLong with character property
public void testGetLongFromCharacter() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_CHARACTER);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//5. purpose: getLong with Defined Double Property
public void testGetLongConversionFromDefinedDoubleProperty() {
// dataObject's type add boolean property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_DOUBLE);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
double db = 12;
dataObject_a.setDouble(propertyPath_a_b_c, db);// add it to instance list
assertEquals((long)db, dataObject_a.getLong(propertyPath_a_b_c));
}
//6. purpose: getLong with Undefined Double Property
public void testGetLongConversionFromUnDefinedDoubleProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_DOUBLE);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//7. purpose: getLong with Defined float Property
public void testGetLongConversionFromDefinedFloatProperty() {
// dataObject's type add float property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_FLOAT);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
float fl = 12;
dataObject_a.setFloat(propertyPath_a_b_c, fl);// add it to instance list
assertEquals((long)fl, dataObject_a.getLong(propertyPath_a_b_c));
}
//8. purpose: getLong with Undefined float Property
public void testGetLongConversionFromUnDefinedFloatProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_FLOAT);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//9. purpose: getLong with Defined int Property
public void testGetLongConversionFromDefinedIntProperty() {
// dataObject's type add int property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_INT);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
int in = 12;
dataObject_a.setInt(propertyPath_a_b_c, in);// add it to instance list
assertEquals(in, dataObject_a.getLong(property));
}
//10. purpose: getLong with Undefined int Property
public void testGetLongConversionFromUnDefinedIntProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_INT);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//11. purpose: getLong with Defined long Property
public void testGetLongConversionFromDefinedLongProperty() {
// dataObject's type add short property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_LONG);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
long lg = 12;
dataObject_a.setLong(propertyPath_a_b_c, lg);// add it to instance list
assertEquals(lg, dataObject_a.getLong(propertyPath_a_b_c));
}
//1. purpose: getBoolean with Defined Boolean Property
public void testGetBooleanConversionWithPathFromDefinedBooleanPropertyBracketPositionalSet() {
// dataObject's type add boolean property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_LONG);
property_c.setMany(true);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
long lg = 12;
List b = new ArrayList();
//b.add(bb);
dataObject_c.set(property_c, b);// c dataobject's a property has value boolean 'true'
dataObject_a.setLong(property3, lg);
assertEquals(lg, dataObject_a.getLong(property3));
}
//1. purpose: getBoolean with Defined Boolean Property
public void testGetBooleanConversionWithPathFromDefinedBooleanPropertyDotPositionalSet() {
// dataObject's type add boolean property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_LONG);
property_c.setMany(true);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
long lg = 12;
List b = new ArrayList();
dataObject_c.set(property_c, b);// c dataobject's a property has value boolean 'true'
dataObject_a.setLong(property + ".0", lg);
assertEquals(lg, dataObject_a.getLong(property + ".0"));
}
//1. purpose: getBoolean with Defined Boolean Property
public void testGetBooleanConversionWithPathFromDefinedBooleanPropertyBracketInPathMiddle() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_LONG);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
long lg = 12;
dataObject_a.setLong(property1, lg);// c dataobject's a property has value boolean 'true'
assertEquals(lg, dataObject_a.getLong(property1));
}
/*public void testGetBooleanConversionWithPathFromDefinedBooleanPropertyEqualSignBracketInPathDotSet() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_LONG);
property_c.setMany(true);
type_c.addDeclaredProperty(property_c);
dataObject_c.setType(type_c);
long lg = 12;
List b = new ArrayList();
dataObject_c.set(property_c, b);// c dataobject's a property has value boolean 'true'
dataObject_a.setLong(property2+"[number=1]", lg);
this.assertEquals(lg, dataObject_a.getLong(property2+"[number=1]"));
}*/
//12. purpose: getLong with Undefined long Property
public void testGetLongConversionFromUnDefinedLongProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_LONG);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//13. purpose: getLong with Defined short Property
public void testGetLongConversionFromDefinedShortProperty() {
// dataObject's type add short property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_SHORT);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
short shr = 12;
dataObject_a.setShort(propertyPath_a_b_c, shr);// add it to instance list
assertEquals(shr, dataObject_a.getLong(propertyPath_a_b_c));
}
//14. purpose: getLong with Undefined short Property
public void testGetLongConversionFromUnDefinedShortProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_SHORT);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//15. purpose: getLong with Defined String Property
public void testGetLongConversionFromDefinedStringProperty() {
// dataObject's type add int property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_STRING);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
String str = "12";
Long s_d = Long.valueOf(str);
dataObject_a.setString(propertyPath_a_b_c, str);// add it to instance list
assertEquals(s_d.longValue(), dataObject_a.getLong(propertyPath_a_b_c));
}
//16. purpose: getLong with Undefined string Property
public void testGetLongConversionFromUnDefinedStringProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_STRING);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//17. purpose: getLong with bytes property
public void testGetLongFromBytes() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_BYTES);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
byte[] bytes = new byte[]{10, 10};
dataObject_c.set(property_c, bytes);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//18. purpose: getLong with Defined Decimal Property
public void testGetLongConversionFromDefinedDecimalProperty() {
// dataObject's type add int property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_DECIMAL);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
long db = 12;
BigDecimal bd = new BigDecimal(db);
dataObject_a.setBigDecimal(propertyPath_a_b_c, bd);// add it to instance list
assertEquals(bd.longValue(), dataObject_a.getLong(propertyPath_a_b_c));
}
//19. purpose: getLong with Undefined decimal Property
public void testGetLongConversionFromUnDefinedDecimalProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_DECIMAL);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//20. purpose: getLong with Defined integer Property
public void testGetLongConversionFromDefinedIntegerProperty() {
// dataObject's type add int property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_INTEGER);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
BigInteger bi = new BigInteger("12");
dataObject_a.setBigInteger(propertyPath_a_b_c, bi);// add it to instance list
assertEquals(bi.longValue(), dataObject_a.getLong(propertyPath_a_b_c));
}
//21. purpose: getLong with Undefined Integer Property
public void testGetLongConversionFromUnDefinedIntegerProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_INTEGER);
// type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//22. purpose: getLong with Defined date Property
public void testGetLongConversionFromDefinedDateProperty() {
// dataObject's type add int property
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_DATE);
type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
long d = 120000;
Date bi = new Date(d);
dataObject_a.setDate(propertyPath_a_b_c, bi);// add it to instance list
assertEquals(bi.getTime(), dataObject_a.getLong(propertyPath_a_b_c));
}
//23. purpose: getLong with Undefined date Property
public void testGetLongConversionFromUnDefinedDateProperty() {
property_c = new SDOProperty(aHelperContext);
property_c.setName(PROPERTY_NAME_C);
property_c.setType(SDOConstants.SDO_DATE);
//type_c.addDeclaredProperty(property_c);
dataObject_c._setType(type_c);
try {
dataObject_a.getLong(propertyPath_a_b_c);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//purpose: getLong with nul value
public void testGetIntWithNullArgument() {
try {
String p = null;
dataObject_a.getLong(p);
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
}