blob: 54c7a0f21b955ae57f9d153682097243ee007970 [file]
/* 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 dom.checkin;
import dom.common.CharacterDataTest;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import org.w3c.dom.Text;
import xmlcursor.common.Common;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
public class TextTest extends CharacterDataTest {
public TextTest() {
sXml = Common.XML_FOO_BAR_TEXT_EXT;
}
@Test
void testNodeName() {
assertEquals("#text", m_node.getNodeName());
}
@Test
void testNodeType() {
assertEquals(Node.TEXT_NODE, m_node.getNodeType());
}
@Test
void testNodeValue() {
assertEquals("extended", m_node.getNodeValue());
}
@Test
void testNextSibling() {
Node nxtSibling = m_node.getNextSibling();
assertEquals(null, nxtSibling);
}
@Test
void testPreviousSibling() {
Node prSibling = m_node.getPreviousSibling();
assertEquals("bar", prSibling.getLocalName());
assertEquals("text", ((Text) prSibling.getFirstChild()).getData());
}
@Test
void testParent() {
Node parent = m_node.getParentNode();
assertEquals(m_doc.getFirstChild(), parent);
assertEquals("foo", parent.getLocalName());
}
@Test
void testSplitTextNegative() {
DOMException de = assertThrows(DOMException.class, () -> ((Text) m_node).splitText(-1), "Deleting OOB chars");
assertEquals(de.code, DOMException.INDEX_SIZE_ERR);
}
@Test
void testSplitTextLarge() {
DOMException de = assertThrows(DOMException.class, () -> ((Text) m_node).splitText(((Text) m_node).getLength() + 1), "Deleting OOB chars");
assertEquals(de.code, DOMException.INDEX_SIZE_ERR);
}
@Test
void testSplitText() {
Node parent = m_node.getParentNode();
int nChildCount = parent.getChildNodes().getLength();
((Text) m_node).splitText(2);
assertEquals(nChildCount + 1, parent.getChildNodes().getLength());
}
@Test
void testSplitTextBorder() {
Node parent = m_node.getParentNode();
int nChildCount = parent.getChildNodes().getLength();
((Text) m_node).splitText(((Text) m_node).getLength());
assertEquals(nChildCount + 1, parent.getChildNodes().getLength());
((Text) m_node).splitText(0);
assertEquals(nChildCount + 2, parent.getChildNodes().getLength());
}
//code coverage case; not sure why it's important
@Test
void testSplitTextNoParent() {
m_node = m_doc.createTextNode("foobar");
((Text) m_node).splitText(3);
assertEquals("foo", m_node.getNodeValue());
}
@Test
void testSetNodeValue() {
m_node.setNodeValue("new text value");
assertEquals("new text value", m_node.getNodeValue());
}
public void moveToNode() {
m_node = m_doc.getFirstChild().getChildNodes().item(1);//"extended"
}
@BeforeEach
public void setUp() throws Exception {
super.setUp();
moveToNode();
}
@Test
void testDelete()throws Exception{
org.apache.xmlbeans.XmlObject o= org.apache.xmlbeans.XmlObject.Factory.parse("<foo/>");
Node d = o.newDomNode();
assertEquals("foo", d.getFirstChild().getLocalName());
}
}