| /* Copyright 2004 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 xmlcursor.detailed; |
| |
| import org.apache.xmlbeans.XmlCursor; |
| import org.apache.xmlbeans.XmlCursor.TokenType; |
| import org.apache.xmlbeans.XmlObject; |
| import org.junit.jupiter.api.Test; |
| import org.tranxml.tranXML.version40.CarLocationMessageDocument; |
| import org.tranxml.tranXML.version40.EventStatusDocument.EventStatus; |
| import org.tranxml.tranXML.version40.GeographicLocationDocument.GeographicLocation; |
| import tools.util.JarUtil; |
| import xmlcursor.common.Common; |
| |
| import static org.junit.jupiter.api.Assertions.assertEquals; |
| import static org.junit.jupiter.api.Assertions.assertNotNull; |
| |
| public class CursorVsObjectInsertRemoveTest { |
| @Test |
| void testInsertRemove() throws Exception { |
| CarLocationMessageDocument clm = |
| (CarLocationMessageDocument) XmlObject.Factory.parse( |
| JarUtil.getResourceFromJar(Common.TRANXML_FILE_CLM)); |
| assertNotNull(clm); |
| try (XmlCursor xc = clm.newCursor()) { |
| xc.toFirstChild(); |
| xc.toFirstChild(); |
| xc.toNextSibling(); |
| xc.toNextSibling(); |
| assertEquals("EventStatus", xc.getName().getLocalPart()); |
| EventStatus eventStatus; |
| eventStatus = (EventStatus) xc.getObject(); |
| assertNotNull(eventStatus, "Expected non-null EventStatus object"); |
| String sEventStatusText; |
| sEventStatusText = xc.getTextValue(); |
| |
| GeographicLocation glDest = eventStatus.getDestination().getGeographicLocation(); |
| assertNotNull(glDest, "Expected non-null GeographicLocation object"); |
| glDest.setPostalCode("90210"); |
| glDest.setCountryCode("US"); |
| try (XmlCursor xcPostalCode = glDest.xgetPostalCode().newCursor(); |
| XmlCursor xcCountryCode = glDest.xgetCountryCode().newCursor()) { |
| assertEquals("90210", xcPostalCode.getTextValue()); |
| assertEquals("US", xcCountryCode.getTextValue()); |
| xcPostalCode.setTextValue("90310"); |
| xcPostalCode.toNextChar(2); |
| assertEquals("90310", glDest.getPostalCode()); |
| eventStatus.getDestination().getGeographicLocation().unsetPostalCode(); |
| assertEquals(TokenType.START, xcPostalCode.currentTokenType()); |
| assertEquals("CountryCode", xcPostalCode.getName().getLocalPart()); |
| xcCountryCode.removeXml(); |
| assertEquals(sEventStatusText, xc.getTextValue()); |
| } |
| } |
| } |
| |
| } |
| |