| /* 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.XmlException; |
| import org.junit.jupiter.api.Disabled; |
| import org.junit.jupiter.api.Test; |
| |
| import static org.junit.jupiter.api.Assertions.assertEquals; |
| import static xmlcursor.common.BasicCursorTestCase.cur; |
| |
| public class CopyTest { |
| |
| //this is per CR128353 |
| @Test |
| @Disabled("doesn't work anymore without Piccolo Parser") |
| public void testCopyNamespaceMigration() throws XmlException { |
| String s1 = "<X xmlns=\"foo\" xmlns:xsi=\"bar\"><zzz>123</zzz></X>"; |
| String s2 = "<Y> ... [some content] ... </Y>"; |
| String exp = "<Y><foo:zzz xmlns:foo=\"foo\" xmlns:xsi=\"bar\">123</foo:zzz> ... [some content] ... </Y>"; |
| try (XmlCursor xc1 = cur(s1); |
| XmlCursor xc2 = cur(s2)) { |
| xc1.toFirstContentToken(); |
| xc1.toFirstChild(); |
| assertEquals(XmlCursor.TokenType.START, xc2.toFirstContentToken()); |
| xc2.toNextToken(); |
| xc1.copyXml(xc2); |
| xc2.toStartDoc(); |
| assertEquals(exp, xc2.xmlText()); |
| } |
| } |
| |
| } |