blob: 052a76d14a4f22901dc812eaf4e82979a96eeda5 [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.checkin;
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 java.net.URL;
/**
*
*
*/
public class ToNextSelectionTest extends BasicCursorTestCase {
public ToNextSelectionTest(String sName) {
super(sName);
}
public static Test suite() {
return new TestSuite(ToNextSelectionTest.class);
}
public void testToNextSelectionMultipleReturns() throws Exception {
String sXml = "<foo><b>0</b><b>1</b><b>2</b><b>3</b><b>4</b><b>5</b><b>6</b></foo>";
m_xc = XmlObject.Factory.parse(sXml).newCursor();
m_xc.selectPath("$this//b");
m_xc.toNextSelection();
for (int i = 0; i < 6; i++) {
assertEquals("" + i, m_xc.getTextValue());
assertEquals(true, m_xc.toNextSelection());
}
assertEquals("6", m_xc.getTextValue());
assertEquals(false, m_xc.toNextSelection());
}
public void testToNextSelectionAfterClear() throws Exception {
String sXml = "<foo><b>0</b><b>1</b><b>2</b><b>3</b><b>4</b><b>5</b><b>6</b></foo>";
m_xc = XmlObject.Factory.parse(sXml).newCursor();
m_xc.selectPath("$this//b");
m_xc.toNextSelection();
for (int i = 0; i < 3; i++) {
assertEquals("" + i, m_xc.getTextValue());
assertEquals(true, m_xc.toNextSelection());
}
m_xc.clearSelections();
assertEquals("3", m_xc.getTextValue());
assertEquals(false, m_xc.toNextSelection());
}
public void testToNextSelectionBeforeSelect() throws Exception {
String sXml = "<foo><b>0</b><b>1</b><b>2</b><b>3</b><b>4</b><b>5</b><b>6</b></foo>";
m_xc = XmlObject.Factory.parse(sXml).newCursor();
assertEquals(false, m_xc.toNextSelection());
m_xc.selectPath("$this//b");
m_xc.toNextSelection();
for (int i = 0; i < 6; i++) {
assertEquals("" + i, m_xc.getTextValue());
assertEquals(true, m_xc.toNextSelection());
}
assertEquals("6", m_xc.getTextValue());
assertEquals(false, m_xc.toNextSelection());
}
public void testToNextSelectionOtherCursor() throws Exception {
String sXml = "<foo><b>0</b><b>1</b><b>2</b><b>3</b><b>4</b><b>5</b><b>6</b></foo>";
m_xc = XmlObject.Factory.parse(sXml).newCursor();
XmlCursor xc0 = m_xc.newCursor();
try {
m_xc.selectPath("$this//b");
assertEquals(false, xc0.toNextSelection());
} finally {
xc0.dispose();
}
}
public void testToNextSelectionTwoCursorsDifferentSelections() throws Exception {
String sXml = "<foo><a>X</a><b>0</b><a>Y</a><b>1</b><a>Z</a><b>2</b></foo>";
m_xc = XmlObject.Factory.parse(sXml).newCursor();
XmlCursor xc0 = m_xc.newCursor();
try {
xc0.selectPath("$this//a");
xc0.toNextSelection();
assertEquals(3, xc0.getSelectionCount());
m_xc.selectPath("$this//b");
m_xc.toNextSelection();
assertEquals(3, m_xc.getSelectionCount());
assertEquals(true, xc0.toNextSelection());
assertEquals("Y", xc0.getTextValue());
assertEquals(true, m_xc.toNextSelection());
assertEquals("1", m_xc.getTextValue());
} finally {
xc0.dispose();
}
}
public void testToNextSelectionTwoCursorsSameSelections() throws Exception {
String sXml = "<foo><a>X</a><b>0</b><a>Y</a><b>1</b><a>Z</a><b>2</b></foo>";
m_xc = XmlObject.Factory.parse(sXml).newCursor();
XmlCursor xc0 = m_xc.newCursor();
try {
xc0.selectPath("$this//b");
xc0.toNextSelection();
assertEquals(3, xc0.getSelectionCount());
m_xc.selectPath("$this//b");
m_xc.toNextSelection();
assertEquals(3, m_xc.getSelectionCount());
assertEquals(true, xc0.toNextSelection());
assertEquals("1", xc0.getTextValue());
assertEquals(true, m_xc.toNextSelection());
assertEquals("1", m_xc.getTextValue());
assertEquals(true, xc0.toNextSelection());
assertEquals("2", xc0.getTextValue());
assertEquals(true, m_xc.toNextSelection());
assertEquals("2", m_xc.getTextValue());
assertEquals(false, xc0.toNextSelection());
assertEquals(false, m_xc.toNextSelection());
} finally {
xc0.dispose();
}
}
}