blob: bfa613e64e2114f359eea6e2ec5a4ab6c67e6762 [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.CharacterDataTest;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.w3c.dom.CDATASection;
import org.w3c.dom.Node;
/**
*
*
*/
public class CDataSectionTest extends CharacterDataTest {
public CDataSectionTest(String s) {
super(s);
sXml = "<script/>";
/*
TODO:
sXml="<script>"+
"<![CDATA["+
"function matchwo(a,b){"+
"return 0 }"+
"]]>"+
"<![CDATA[foobar]]>"+
"</script>";
*/
}
public static Test suite() {
return new TestSuite(CDataSectionTest.class);
}
public void testNodeName() {
assertEquals("#cdata-section", m_node.getNodeName());
}
public void testNodeType() {
assertEquals(Node.CDATA_SECTION_NODE, m_node.getNodeType());
}
public void testNodeValue() {
assertEquals("function matchwo(a,b){\"+\n\t \"return 0 }", m_node.getNodeValue());
}
public void testNextSibling() {
Node nxtSibling = m_node.getNextSibling();
assertEquals("foobar", nxtSibling.getNodeValue());
}
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("script", parent.getLocalName());
}
public void testSetNodeValue() {
m_node.setNodeValue("new CDATA");
assertEquals("new CDATA", m_node.getNodeValue());
}
public void moveToNode() {
m_node = m_doc.getDocumentElement();
CDATASection c1 = m_doc.createCDATASection("function matchwo(a,b){\"+\n" +
"\t \"return 0 }");
CDATASection c2 = m_doc.createCDATASection("foobar");
m_node.appendChild(c1);
m_node.appendChild(c2);
m_node = m_node.getFirstChild();//function
}
public void setUp() throws Exception {
super.setUp();
moveToNode();
}
}