blob: 3784961a4fd99d98a1aa2f037d594b916389ae92 [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.changesummary;
import junit.textui.TestRunner;
import commonj.sdo.helper.XMLDocument;
public class ChangeSummaryXSDWithCSonRootUnsetSimpleManyAtRootAfterSetNullTest extends ChangeSummaryOnRootTestCases {
@Override
protected String getControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/changesummary/PurchaseOrderDeepWithCSonRootUnsetSimpleManyAtRootAfterSetNull.xml");
}
@Override
protected String getControlFileName2() {
return getControlFileName();
}
public ChangeSummaryXSDWithCSonRootUnsetSimpleManyAtRootAfterSetNullTest(String name) {
super(name);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.model.changesummary.ChangeSummaryXSDWithCSonRootUnsetSimpleManyAtRootAfterSetNullTest" };
TestRunner.main(arguments);
}
@Override
public void setUp() {
super.setUp();// watch setup redundancy
}
@Override
protected void verifyAfterLoad(XMLDocument document) {
super.verifyAfterLoad(document);
// replace global object with one from xml file (with cs pre-populated)
rootObject = document.getRootObject();
cs = rootObject.getChangeSummary();
assertCSonRootUnsetSimpleManyAtRootAfterSetNull(true);
}
public void testUnsetSimpleSingleAtRoot() {
defineTypes();
// 1. read in model from a populated XML file - via setup()
// 2. rootObject will be in pre-operation state
// 3. get references to the original object tree - before operation is performed
// 4. [perform operation]
// 5. compare new modified model with original objects - in memory
rootObject.set("comment", null);// set all "comment"s to null
cs.beginLogging();
rootObject.unset("comment");// unset all 3 comments?
assertCSonRootUnsetSimpleManyAtRootAfterSetNull(false);
}
}