blob: 92a0f12e8107f0fb96a225b16cd6c5e182045341 [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 org.junit.Before;
import org.junit.Test;
import org.w3c.dom.Node;
import org.w3c.dom.Text;
import xmlcursor.common.Common;
import static org.junit.Assert.assertEquals;
public class CommentTest extends CharacterDataTest {
public CommentTest() {
sXml = Common.XML_FOO_COMMENT;
sXmlNS = sXml;
}
@Test
public void testNodeName() {
assertEquals("#comment", m_node.getNodeName());
}
@Test
public void testNodeValue() {
System.out.println("Comment testNodeValue");
assertEquals(" comment text ", m_node.getNodeValue());
System.out.println("Comment testNodeValue DONE");
}
@Test
public void testNodeType() {
assertEquals(Node.COMMENT_NODE, m_node.getNodeType());
}
@Test
public void testNextSibling() {
Node nxtSibling = m_node.getNextSibling();
assertEquals("foo", nxtSibling.getLocalName());
assertEquals(m_doc.getChildNodes().item(1), nxtSibling);
assertEquals(1, nxtSibling.getChildNodes().getLength());
assertEquals("text", ((Text) nxtSibling.getFirstChild()).getData());
}
@Test
public void testPreviousSibling() {
Node prSibling = m_node.getPreviousSibling();
assertEquals(null, prSibling);
}
@Test
public void testParent() {
Node parent = m_node.getParentNode();
assertEquals(m_doc, parent);
}
@Test
public void testSetNodeValue() {
m_node.setNodeValue("new comment");
assertEquals("new comment", m_doc.getFirstChild().getNodeValue());
}
public void moveToNode() {
m_node = m_doc.getFirstChild();
}
@Before
public void setUp() throws Exception {
super.setUp();
moveToNode();
}
}