blob: 2602b57e19eacb462a7fd24ec953486143a4f23a [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.xpathquery;
import java.util.ArrayList;
import java.util.List;
import junit.framework.TestCase;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.SDODataObject;
import org.eclipse.persistence.sdo.SDOProperty;
import org.eclipse.persistence.sdo.SDOType;
public class SDODataObjectGetListConversionByXPathQueryTest extends SDODataObjectGetByXPathQueryTestCases {
public SDODataObjectGetListConversionByXPathQueryTest(String name) {
super(name);
}
public void testGetBooleanConversionWithPathFromDefinedBooleanPropertyEqualSignBracketInPathDotSet() {
SDOProperty prop = dataObject_c0.getType().getProperty("test");
prop.setType(SDOConstants.SDO_BOOLEAN);
prop.setMany(true);
Boolean bb = Boolean.valueOf(true);
List b = new ArrayList();
b.add(bb);
//dataObject_c.set(property_c, b);// c dataobject's a property has value boolean 'true'
dataObject_a.setList(propertyTest + "test", b);
List lista = dataObject_a.getList(propertyTest + "test");
prop.setMany(false);
assertEquals(b, lista );
}
//2. purpose: getDataObject with property value is not dataobject
public void testGetDataObjectConversionFromUndefinedProperty() {
SDOType dataObjectType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.DATAOBJECT);
SDOProperty prop = dataObject_c0.getType().getProperty("test");
prop.setType(dataObjectType);
dataObject_c0.set("test", new SDODataObject());
try {
dataObject_a.getList(propertyTest + "test");
} catch (Exception e) {
fail("No Exception expected, but caught " + e.getClass());
}
}
//3. purpose: getDataObject with property set to boolean value
public void testGetDataObjectConversionFromProperty() {
//try {
assertNull(dataObject_a.getDataObject("PName-a/notExistedTest"));
//fail("IllegalArgumentException should be thrown.");
//} catch (IllegalArgumentException e) {
//}
}
//purpose: getDataObject with nul value
public void testGetDataObjectConversionWithNullArgument() {
String p = null;
assertNull(dataObject_a.getDataObject(p));
}
/* public void testSetGetDataObjectWithQueryPath(){
SDOProperty property_c1_object = new SDOProperty();
property_c1_object.setName("PName-c1");
property_c1_object.setContainment(true);
property_c1_object.setMany(true);
property_c1_object.setType(SDOConstants.SDO_BOOLEAN);
type_c0.addDeclaredProperty(property_c1_object);
Boolean b = Boolean.valueOf(true);
dataObject_a.setBoolean("PName-a0/PName-b0[number='1']/PName-c1.0", true);
this.assertEquals(true, dataObject_a.getBoolean("PName-a0/PName-b0[number='1']/PName-c1.0"));
}*/
}