You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ga...@apache.org on 2008/09/11 19:31:10 UTC

svn commit: r694372 - in /webservices/commons/trunk/modules/axiom/modules/axiom-dom/src: main/java/org/apache/axiom/om/impl/dom/DocumentImpl.java test/java/org/apache/axiom/om/impl/dom/TransformTest.java

Author: gawor
Date: Thu Sep 11 10:31:09 2008
New Revision: 694372

URL: http://svn.apache.org/viewvc?rev=694372&view=rev
Log:
provide basic implementation for getXmlStandalone(), getXmlVersion(), and getXmlEncoding() methods (WSCOMMONS-382)

Added:
    webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java   (with props)
Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/DocumentImpl.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/DocumentImpl.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/DocumentImpl.java?rev=694372&r1=694371&r2=694372&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/DocumentImpl.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/DocumentImpl.java Thu Sep 11 10:31:09 2008
@@ -57,6 +57,8 @@
 
     private String xmlVersion;
 
+    private boolean xmlStandalone = false;
+    
     private String charEncoding;
 
     private Vector idAttrs;
@@ -398,8 +400,7 @@
     }
 
     public String isStandalone() {
-        // TODO
-        throw new UnsupportedOperationException("TODO");
+        return (this.xmlStandalone) ? "yes" : "no";
     }
 
     public void setCharsetEncoding(String charsetEncoding) {
@@ -411,8 +412,7 @@
     }
 
     public void setStandalone(String isStandalone) {
-        // TODO
-        throw new UnsupportedOperationException("TODO");
+        this.xmlStandalone = "yes".equalsIgnoreCase(isStandalone);
     }
 
     public void serializeAndConsume(OutputStream output, OMOutputFormat format)
@@ -534,18 +534,15 @@
     }
 
     public String getXmlEncoding() {
-        // TODO TODO
-        throw new UnsupportedOperationException("TODO");
+        return this.charEncoding;
     }
 
     public boolean getXmlStandalone() {
-        // TODO TODO
-        throw new UnsupportedOperationException("TODO");
+        return this.xmlStandalone;
     }
 
     public String getXmlVersion() {
-        // TODO TODO
-        throw new UnsupportedOperationException("TODO");
+        return getXMLVersion();
     }
 
     public void normalizeDocument() {
@@ -569,14 +566,12 @@
         throw new UnsupportedOperationException("TODO");
     }
 
-    public void setXmlStandalone(boolean arg0) throws DOMException {
-        // TODO TODO
-        throw new UnsupportedOperationException("TODO");
+    public void setXmlStandalone(boolean standalone) throws DOMException {
+        this.xmlStandalone = standalone;
     }
 
-    public void setXmlVersion(String arg0) throws DOMException {
-        // TODO TODO
-        throw new UnsupportedOperationException("TODO");
+    public void setXmlVersion(String version) throws DOMException {
+        setXMLVersion(version);
     }
 
 }

Added: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java?rev=694372&view=auto
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java (added)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java Thu Sep 11 10:31:09 2008
@@ -0,0 +1,77 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.impl.dom;
+
+import java.io.ByteArrayOutputStream;
+import java.io.StringReader;
+
+import javax.xml.namespace.QName;
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
+import javax.xml.transform.Result;
+import javax.xml.transform.Transformer;
+import javax.xml.transform.TransformerFactory;
+import javax.xml.transform.dom.DOMSource;
+import javax.xml.transform.stream.StreamResult;
+
+import junit.framework.TestCase;
+
+import org.apache.axiom.om.OMDocument;
+import org.apache.axiom.om.OMElement;
+import org.apache.axiom.om.OMFactory;
+import org.apache.axiom.om.OMText;
+import org.apache.axiom.om.impl.dom.factory.OMDOMFactory;
+import org.w3c.dom.Document;
+import org.xml.sax.InputSource;
+
+public class TransformTest extends TestCase {
+    
+    public void testTransform() throws Exception {
+        OMFactory fac = new OMDOMFactory();
+        OMDocument doc = fac.createOMDocument();
+        OMElement element = fac.createOMElement(new QName("http://foo", "bar"));
+        OMText text = fac.createOMText("test");
+        element.addChild(text);
+        doc.addChild(element);
+
+        Document domDoc1 = ((ElementImpl)element).getOwnerDocument();
+        assertNotNull(domDoc1);
+        
+        ByteArrayOutputStream baos = new ByteArrayOutputStream();
+        DOMSource source = new DOMSource(domDoc1);
+        Result result = new StreamResult(baos);
+        Transformer xformer = TransformerFactory.newInstance().newTransformer();
+        xformer.transform(source, result);
+        
+        byte [] data = baos.toByteArray();
+        String xml = new String(data, 0, data.length);
+        
+        System.out.println(xml);
+        
+        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
+        dbf.setNamespaceAware(true);
+        DocumentBuilder db = dbf.newDocumentBuilder();
+        Document domDoc2 = db.parse(new InputSource(new StringReader(xml)));
+        
+        assertEquals("http://foo", domDoc2.getDocumentElement().getNamespaceURI());
+        assertEquals("bar", domDoc2.getDocumentElement().getLocalName());
+        assertEquals("test", domDoc2.getDocumentElement().getFirstChild().getNodeValue());
+    }
+}

Propchange: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/om/impl/dom/TransformTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain