blob: 8a54a34bc98c33dbb75b897a2ae636428553d958 [file] [log] [blame]
/*
* Copyright 2004,2005 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 org.apache.axiom.om;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Iterator;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import org.apache.axiom.om.impl.builder.StAXOMBuilder;
import org.apache.axiom.om.impl.llom.factory.OMXMLBuilderFactory;
import org.custommonkey.xmlunit.Diff;
import org.custommonkey.xmlunit.XMLTestCase;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
public class SpacesTest extends XMLTestCase {
private static final String filePath = "test-resources/xml/spaces.xml";
private static final String filePath2 = "test-resources/xml/spaces2.xml";
private OMElement rootElement;
public void testCData() throws Exception {
checkOMConformance(new FileInputStream(filePath));
}
private void checkOMConformance(InputStream iStream) throws Exception {
try {
XMLInputFactory factory = XMLInputFactory.newInstance();
StAXOMBuilder staxOMBuilder = OMXMLBuilderFactory.
createStAXOMBuilder(OMAbstractFactory.getOMFactory(),
factory.createXMLStreamReader(
iStream));
staxOMBuilder.setDoDebug(true);
rootElement = staxOMBuilder.getDocumentElement();
boolean hasCDataNode = hasCDataNode(rootElement);
String file = hasCDataNode ? filePath : filePath2;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
((OMDocument) rootElement.getParent()).serialize(baos);
InputSource resultXML = new InputSource(new InputStreamReader(
new ByteArrayInputStream(baos.toByteArray())));
Document dom1 = newDocument(new InputSource(new FileInputStream(file)));
Document dom2 = newDocument(resultXML);
Diff diff = compareXML(dom1, dom2);
assertXMLEqual(diff, true);
} catch (XMLStreamException e) {
fail(e.getMessage());
throw new Exception(e);
} catch (ParserConfigurationException e) {
fail(e.getMessage());
throw new Exception(e);
} catch (SAXException e) {
fail(e.getMessage());
throw new Exception(e);
} catch (IOException e) {
fail(e.getMessage());
throw new Exception(e);
}
}
private boolean hasCDataNode(OMNode pNode) {
switch (pNode.getType()) {
case OMNode.CDATA_SECTION_NODE:
return true;
case OMNode.ELEMENT_NODE:
OMElement e = (OMElement) pNode;
for (Iterator iter = e.getChildren(); iter.hasNext(); ) {
if (hasCDataNode((OMNode) iter.next())) {
return true;
}
}
break;
default:
break;
}
return false;
}
public Document newDocument(InputSource in)
throws ParserConfigurationException, SAXException, IOException {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
DocumentBuilder db = dbf.newDocumentBuilder();
return db.parse(in);
}
}