blob: 080d6a73e26131339a0e0b3bd9d2eb1b07d94699 [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 dom.checkin;
import dom.common.NodeTest;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import org.w3c.dom.ProcessingInstruction;
/**
*
*
*/
public class PITest extends NodeTest {
public PITest(String s) {
super(s);
sXml = "<bar><?xml-stylesheet type=\"text/xsl\" xmlns=\"http://openuri.org/shipping/\"?><foo>text</foo></bar>";
//inspired by Common.XML_FOO_PROCINST;
}
public static Test suite() {
return new TestSuite(PITest.class);
}
public void testNodeName() {
assertEquals("xml-stylesheet", m_node.getNodeName());
}
public void testLocalName() {
assertEquals("xml-stylesheet", m_node.getNodeName());
}
public void testNodeType() {
assertEquals(Node.PROCESSING_INSTRUCTION_NODE, m_node.getNodeType());
}
public void testNodeValue() {
assertEquals("type=\"text/xsl\" xmlns=\"http://openuri.org/shipping/\"", m_node.getNodeValue());
}
public void testNextSibling() {
Node nxtSibling = m_node.getNextSibling();
assertEquals("foo", nxtSibling.getNodeName());
}
public void testSetNodeValue() {
String sNewVal = "type=\"text/xsl\" xmlns=\"http://xbean.foo.org\"";
m_node.setNodeValue(sNewVal);
assertEquals(sNewVal, m_node.getNodeValue());
}
public void testNormalize() {
//TODO
}
public void testReplaceChild() {
}
public void testRemoveChild() {
}
public void testAppendChild() {
}
public void testInsertBefore() {
}
public void testPreviousSibling() {
Node prSibling = m_node.getPreviousSibling();
assertEquals(null, prSibling);
}
public void testParent() {
Node parent = m_node.getParentNode();
assertEquals(m_doc.getFirstChild(), parent);
assertEquals("bar", parent.getLocalName());
}
public void testGetData() {
assertEquals("type=\"text/xsl\" xmlns=\"http://openuri.org/shipping/\"", ((ProcessingInstruction) m_node).getData());
}
public void testGetTarget() {
assertEquals("xml-stylesheet", ((ProcessingInstruction) m_node).getTarget());
}
public void testSetData(String data) {
((ProcessingInstruction) m_node).setData("\"type=\\\"text/xsl\\\" xmlns=\\\"http://newURI.org/shipping/\\\"\"");
assertEquals("type=\"text/xsl\" xmlns=\"http://newURI.org/shipping/\"", ((ProcessingInstruction) m_node).getData());
}
public void moveToNode() {
m_node = m_doc.getDocumentElement().getFirstChild();//pi
assertFalse(m_node == null);
}
//TODO: Test PI with funky but legal chatacters in the name, eg. :
public void testPiTargetChars(){
ProcessingInstruction node=m_doc.createProcessingInstruction("foo:123-_","some body");
m_node.getParentNode().appendChild(node);
m_node= m_node.getParentNode().getLastChild();
assertEquals("foo:123-_", ((ProcessingInstruction) m_node).getTarget());
}
//TODO: Test Illegal PI Targets: xml target, starting with a digit
public void testPiTargetIllegalChars(){
ProcessingInstruction node;
try{
node=m_doc.createProcessingInstruction("7foo:?123-&","some body");
fail("Can't start w/ a digit");
}catch(DOMException e){
assertEquals(DOMException.INVALID_CHARACTER_ERR,e.code);
}
try{
node=m_doc.createProcessingInstruction("xml","foo");
fail("Can't be xml");
}catch(DOMException e){
assertEquals(DOMException.INVALID_CHARACTER_ERR,e.code);
}
}
public void setUp() throws Exception {
super.setUp();
moveToNode();
}
}