d85f44646b0ed5751e6ad1c3f51a278117695aa8
[utils] / support / general / src / test / java / org / wamblee / xml / DomUtilsTest.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xml;
17
18 import java.io.ByteArrayInputStream;
19 import java.io.InputStream;
20
21 import org.junit.Test;
22 import org.w3c.dom.Document;
23 import org.w3c.dom.Element;
24
25 import static junit.framework.TestCase.*;
26
27 public class DomUtilsTest {
28     
29     private InputStream getResource(String aResource) { 
30         return getClass().getResourceAsStream(aResource);
31     }
32
33     @Test
34     public void testReadWrite() throws Exception { 
35         Document doc = DomUtils.read(getResource("test.xml"));
36         Element element = doc.getDocumentElement();
37         assertEquals("http://wamblee.org/test", element.getNamespaceURI());
38         String val = DomUtils.serialize(doc);
39         // parse the written document
40         Document doc2 = DomUtils.read(new ByteArrayInputStream(val.getBytes()));
41         XmlUtils.assertEquals("", doc, doc2);
42     }
43     
44     @Test(expected = XMLException.class)
45     public void testReadNotWellFormed() throws Exception { 
46         Document doc = DomUtils.read(getResource("testNotWellFormed.xml"));
47     }
48     
49     @Test
50     public void testReadAndValidateOk() throws Exception { 
51         Document doc = DomUtils.readAndValidate(getResource("test.xml"), getResource("test.xsd"));
52         Element element = doc.getDocumentElement();
53         assertEquals("http://wamblee.org/test", element.getNamespaceURI());
54         String val = DomUtils.serialize(doc);
55         // parse the written document
56         Document doc2 = DomUtils.read(new ByteArrayInputStream(val.getBytes()));
57         XmlUtils.assertEquals("", doc, doc2);
58     }
59     
60     @Test(expected = XMLException.class)
61     public void testReadAndValidateNotOk() throws Exception { 
62         Document doc = DomUtils.readAndValidate(getResource("testInvalid.xml"), getResource("test.xsd"));
63     }
64 }