blob: 832a9a1aa42c66560a4b3744af058d71fca49d0a [file] [log] [blame]
/* 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.XmlOptions;
import junit.framework.*;
import junit.framework.Assert.*;
import java.io.*;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlCursor;
import org.apache.xmlbeans.XmlBeans;
import org.apache.xmlbeans.XmlCursor.TokenType;
import org.apache.xmlbeans.XmlDocumentProperties;
import org.apache.xmlbeans.XmlCursor.XmlBookmark;
import javax.xml.namespace.QName;
import org.apache.xmlbeans.impl.store.Cursor;
import xmlcursor.common.*;
import tools.util.JarUtil;
import java.net.URL;
/**
*
*
*/
public class ToBookmarkTest extends BasicCursorTestCase {
private SimpleBookmark _theBookmark = new SimpleBookmark("value");
private SimpleBookmark _theBookmark1 = new SimpleBookmark("value1");
public ToBookmarkTest(String sName) {
super(sName);
}
public static Test suite() {
return new TestSuite(ToBookmarkTest.class);
}
public void testToBookmarkPrior() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_TEXT);
m_xc = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.START);
m_xc.setBookmark(_theBookmark);
XmlCursor xc1 = m_xc.newCursor();
xc1.toEndDoc();
assertEquals(true, xc1.toBookmark(_theBookmark));
try {
assertEquals(true, m_xc.isAtSamePositionAs(xc1));
SimpleBookmark sa = (SimpleBookmark) xc1.getBookmark(_theBookmark.getClass());
assertEquals("value", sa.text);
} finally {
xc1.dispose();
}
}
public void testToBookmarkPost() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_TEXT);
m_xc = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.START);
m_xc.setBookmark(_theBookmark);
XmlCursor xc1 = m_xc.newCursor();
xc1.toStartDoc();
assertEquals(true, xc1.toBookmark(_theBookmark));
try {
assertEquals(true, m_xc.isAtSamePositionAs(xc1));
SimpleBookmark sa = (SimpleBookmark) xc1.getBookmark(_theBookmark.getClass());
assertEquals("value", sa.text);
} finally {
xc1.dispose();
}
}
public void testToBookmarkNULL() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_TEXT);
m_xc = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.START);
m_xc.setBookmark(_theBookmark);
XmlCursor xc1 = m_xc.newCursor();
xc1.toEndDoc();
assertEquals(false, xc1.toBookmark(null));
try {
assertEquals(false, m_xc.isAtSamePositionAs(xc1));
assertEquals(TokenType.ENDDOC, xc1.currentTokenType());
} finally {
xc1.dispose();
}
}
public void testToBookmarkDifferentDoc() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_TEXT);
m_xc = m_xo.newCursor();
XmlObject xo = XmlObject.Factory.parse(Common.XML_FOO);
XmlCursor xc1 = xo.newCursor();
assertEquals(false, m_xc.isInSameDocument(xc1));
toNextTokenOfType(m_xc, TokenType.START);
m_xc.setBookmark(_theBookmark);
try {
assertEquals(false, xc1.toBookmark(_theBookmark));
assertEquals(false, m_xc.isInSameDocument(xc1));
} finally {
xc1.dispose();
}
}
public void testPostMoveBookmarkInsideMove() throws Exception {
m_xo = XmlObject.Factory.parse(
JarUtil.getResourceFromJar(Common.XMLCASES_JAR,
Common.TRANXML_FILE_XMLCURSOR_PO));
String ns="declare namespace po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
String exp_ns="xmlns:po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
m_xc = m_xo.newCursor();
XmlCursor xc1 = m_xo.newCursor();
m_xc.selectPath(ns+" $this//po:shipTo/po:city");
while (m_xc.toNextSelection()){
m_xc.setBookmark(_theBookmark);
xc1.selectPath(ns+" $this//po:billTo/po:city");
while (xc1.toNextSelection()){
m_xc.moveXml(xc1);
try {
assertEquals(true, xc1.toBookmark(_theBookmark));
assertEquals("<po:city "+exp_ns+">Mill Valley</po:city>", xc1.xmlText());
xc1.toNextSibling();
assertEquals("<po:city "+exp_ns+">Old Town</po:city>", xc1.xmlText());
} catch (Exception e){}
}
}
xc1.dispose();
}
public void testPostMoveBookmarkToRightOfMove() throws Exception {
m_xo = XmlObject.Factory.parse(
JarUtil.getResourceFromJar(Common.XMLCASES_JAR,
Common.TRANXML_FILE_XMLCURSOR_PO));
String ns="declare namespace po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
String exp_ns="xmlns:po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
m_xc = m_xo.newCursor();
XmlCursor xc1 = m_xo.newCursor();
m_xc.selectPath(ns+" $this//po:shipTo/po:city");
while (m_xc.toNextSelection()){
m_xc.setBookmark(_theBookmark);
toNextTokenOfType(m_xc, TokenType.TEXT);
m_xc.toNextToken();
m_xc.toNextToken(); // move to behind the <city>Mill Valley</city> element
assertEquals(TokenType.TEXT, m_xc.currentTokenType());
m_xc.setBookmark(_theBookmark1);
m_xc.toBookmark(_theBookmark);
xc1.selectPath(ns+" $this//po:billTo/po:city");
while (xc1.toNextSelection()){
m_xc.moveXml(xc1);
m_xc.toStartDoc();
try {
assertEquals(true, xc1.toBookmark(_theBookmark1));
xc1.toPrevSibling();
assertEquals("<po:street "+exp_ns+">123 Maple Street</po:street>", xc1.xmlText());
}catch (Exception e){}
}
}
xc1.dispose();
}
public void testToBookmarkPostCopy() throws Exception {
m_xo = XmlObject.Factory.parse(
JarUtil.getResourceFromJar(Common.XMLCASES_JAR,
Common.TRANXML_FILE_XMLCURSOR_PO));
m_xc = m_xo.newCursor();
XmlCursor xc1 = m_xo.newCursor();
String ns="declare namespace po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
String exp_ns="xmlns:po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
m_xc.selectPath(ns+" $this//po:shipTo/po:city");
while ( m_xc.toNextSelection()){
m_xc.setBookmark(_theBookmark);
xc1.selectPath(ns+"$this//po:billTo/po:city");
while (xc1.toNextSelection()){
m_xc.copyXml(xc1);
try {
assertEquals(true, xc1.toBookmark(_theBookmark));
assertEquals("<po:city "+exp_ns+">Mill Valley</po:city>", xc1.xmlText());
xc1.toNextSibling();
assertEquals("<po:state "+exp_ns+">CA</po:state>", xc1.xmlText());
} catch(Exception e){}
}
}
xc1.dispose();
}
public void testToBookmarkPostMoveChars() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_DIGITS);
m_xc = m_xo.newCursor();
XmlCursor xc1 = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.TEXT);
xc1.toCursor(m_xc);
xc1.toNextChar(1);
xc1.setBookmark(_theBookmark); // set an Bookmark at the '1'
xc1.toNextChar(2); // move xc1 to the '3'
try {
assertEquals("34", xc1.getTextValue());
assertEquals(2, m_xc.moveChars(2, xc1));
assertEquals("20134", m_xc.getTextValue());
assertEquals("34", xc1.getTextValue());
xc1.toBookmark(_theBookmark);
assertEquals("134", xc1.getTextValue());
} finally {
xc1.dispose();
}
}
public void testToBookmarkPostCopyChars() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_DIGITS);
m_xc = m_xo.newCursor();
XmlCursor xc1 = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.TEXT);
xc1.toCursor(m_xc);
xc1.toNextChar(1);
xc1.setBookmark(_theBookmark); // set an Bookmark at the '1'
xc1.toNextChar(2); // move xc1 to the '3'
try {
assertEquals("34", xc1.getTextValue());
assertEquals(2, m_xc.copyChars(2, xc1));
assertEquals("0120134", m_xc.getTextValue());
assertEquals("34", xc1.getTextValue());
xc1.toBookmark(_theBookmark);
assertEquals("120134", xc1.getTextValue());
} finally {
xc1.dispose();
}
}
public void testToBookmarkPostRemove() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_BAR_TEXT);
m_xc = m_xo.newCursor();
m_xc.selectPath(".//bar");
while(m_xc.toNextSelection())
assertEquals("<bar>text</bar>", m_xc.xmlText());
m_xc.toNextToken();
m_xc.setBookmark(_theBookmark); // set annot. at 'text'
m_xc.toStartDoc();
XmlCursor xc1 = m_xc.newCursor();
xc1.toBookmark(_theBookmark);
SimpleBookmark sa = (SimpleBookmark) xc1.getBookmark(SimpleBookmark.class);
assertEquals("value", sa.text);
xc1.toEndDoc();
m_xc.selectPath("$this//bar");
while(m_xc.toNextSelection()){
m_xc.removeXml();
m_xc.toStartDoc();
try {
assertEquals("<foo/>", m_xc.xmlText());
assertEquals(false, xc1.toBookmark(_theBookmark));
sa = (SimpleBookmark) xc1.getBookmark(SimpleBookmark.class);
assertNull(sa);
assertEquals(TokenType.ENDDOC, xc1.currentTokenType());
}catch(Exception e){}
}
xc1.dispose();
}
public void testToBookmarkPostRemoveAttribute() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_1ATTR_TEXT);
m_xc = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.ATTR);
m_xc.setBookmark(_theBookmark); // set annot. at attribute
m_xc.toStartDoc();
XmlCursor xc1 = m_xc.newCursor();
xc1.toBookmark(_theBookmark);
SimpleBookmark sa = (SimpleBookmark) xc1.getBookmark(SimpleBookmark.class);
assertEquals("value", sa.text);
xc1.toEndDoc();
toNextTokenOfType(m_xc, TokenType.START);
m_xc.removeAttribute(new QName("attr0"));
m_xc.toStartDoc();
try {
assertEquals("<foo>text</foo>", m_xc.xmlText());
assertEquals(false, xc1.toBookmark(_theBookmark));
} finally {
xc1.dispose();
}
}
public void testToBookmarkPostRemoveChars() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_DIGITS);
m_xc = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.TEXT);
m_xc.toNextChar(2);
assertEquals("234", m_xc.getTextValue());
m_xc.setBookmark(_theBookmark); // set annot. at '2'
m_xc.toPrevChar(2);
assertEquals(3, m_xc.removeChars(3)); // '2' should be deleted
assertEquals("34", m_xc.getTextValue());
XmlCursor xc1 = m_xc.newCursor();
xc1.toEndDoc();
try {
assertEquals(false, xc1.toBookmark(_theBookmark));
SimpleBookmark sa = (SimpleBookmark) xc1.getBookmark(SimpleBookmark.class);
assertNull(sa);
assertEquals(TokenType.ENDDOC, xc1.currentTokenType());
} finally {
xc1.dispose();
}
}
public void testToBookmarkPostSetTextValue() throws Exception {
m_xo = XmlObject.Factory.parse(Common.XML_FOO_TEXT);
m_xc = m_xo.newCursor();
toNextTokenOfType(m_xc, TokenType.TEXT);
m_xc.toNextChar(2);
assertEquals("xt", m_xc.getTextValue());
m_xc.setBookmark(_theBookmark); // set annot. in middle of TEXT
XmlCursor xc1 = m_xc.newCursor();
xc1.toEndDoc();
m_xc.toPrevToken();
m_xc.setTextValue("changed");
m_xc.toStartDoc();
assertEquals("<foo>changed</foo>", m_xc.xmlText());
try {
assertEquals(false, xc1.toBookmark(_theBookmark));
SimpleBookmark sa = (SimpleBookmark) xc1.getBookmark(SimpleBookmark.class);
assertNull(sa);
assertEquals(TokenType.ENDDOC, xc1.currentTokenType());
} finally {
xc1.dispose();
}
}
public class SimpleBookmark extends XmlCursor.XmlBookmark {
public String text;
public SimpleBookmark(String text) {
this.text = text;
}
}
}