/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.sdo.helper.xsdhelper.generate; import commonj.sdo.DataObject; import commonj.sdo.Type; import java.util.ArrayList; import java.util.List; import org.eclipse.persistence.sdo.SDOConstants; import org.eclipse.persistence.sdo.SDOType; import org.eclipse.persistence.testing.sdo.SDOTestCase; import junit.textui.TestRunner; public class DontModifyListJIRA254TestCases extends SDOTestCase { public DontModifyListJIRA254TestCases(String name) { super(name); } public static void main(String[] args) { String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xsdhelper.generate.DontModifyListJIRA254TestCases" }; TestRunner.main(arguments); } public void testListIsNotModified() { SDOType typeType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.TYPE); DataObject childTypeDO = dataFactory.create(typeType); childTypeDO.set("uri", "someUri"); childTypeDO.set("name", "childName"); addProperty(childTypeDO, "name", SDOConstants.SDO_STRING, false, false, true); Type childType = typeHelper.define(childTypeDO); DataObject testTypeDO = dataFactory.create(typeType); testTypeDO.set("uri", "someUri"); testTypeDO.set("name", "testName"); addProperty(testTypeDO, "id", SDOConstants.SDO_STRING, false, false, true); addProperty(testTypeDO, "childType", childType, true, false, true); Type testType = typeHelper.define(testTypeDO); List types = new ArrayList(); types.add(testType); assertEquals(1, types.size()); xsdHelper.generate(types); assertEquals(1, types.size()); } }