/* * 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.tuscany.sca.databinding.xmlbeans; import java.io.StringReader; import javax.xml.stream.XMLStreamReader; import junit.framework.Assert; import junit.framework.TestCase; import org.apache.xmlbeans.XmlObject; import org.w3c.dom.Node; import com.example.ipo.xmlbeans.PurchaseOrderDocument; /** * Test cases for testing XML Object transformations. * * @version $Rev$ $Date$ */ public class XmlObjectTestCase extends TestCase { private static final String IPO_XML = "" + "" + " " + " Helen Zoe" + " 47 Eden Street" + " Cambridge" + " CB1 1JR" + " " + " " + " Robert Smith" + " 8 Oak Avenue" + " Old Town" + " PA" + " 95819" + " " + " " + " " + " Lapis necklace" + " 1" + " 99.95" + " Want this for the holidays" + " 1999-12-05" + " " + " " + ""; @Override protected void setUp() throws Exception { super.setUp(); } public void testXmlObject() throws Exception { // URL/Stream/Reader to XmlObject XmlObject object = XmlObject.Factory.parse(new StringReader(IPO_XML)); // XmlObject to XMLStreamReader XmlObject2XMLStreamReader t1 = new XmlObject2XMLStreamReader(); XMLStreamReader reader = t1.transform(object, null); // XMLStreamReader to XmlObject XMLStreamReader2XmlObject t2 = new XMLStreamReader2XmlObject(); XmlObject object2 = t2.transform(reader, null); // XmlObject to Node XmlObject2Node t3 = new XmlObject2Node(); Node node = t3.transform(object2, null); // Node to XmlObject Node2XmlObject t4 = new Node2XmlObject(); XmlObject object3 = t4.transform(node, null); Assert.assertNotNull(object3); } public void testGeneratedXmlObject() throws Exception { // URL xmlFile = getClass().getClassLoader().getResource("ipo.xml"); // URL/Stream/Reader to XmlObject PurchaseOrderDocument object = PurchaseOrderDocument.Factory.parse(new StringReader(IPO_XML)); // XmlObject to XMLStreamReader XmlObject2XMLStreamReader t1 = new XmlObject2XMLStreamReader(); XMLStreamReader reader = t1.transform(object, null); // XMLStreamReader to XmlObject XMLStreamReader2XmlObject t2 = new XMLStreamReader2XmlObject(); PurchaseOrderDocument object2 = (PurchaseOrderDocument) t2.transform(reader, null); // XmlObject to Node XmlObject2Node t3 = new XmlObject2Node(); Node node = t3.transform(object2, null); // Node to XmlObject Node2XmlObject t4 = new Node2XmlObject(); PurchaseOrderDocument object3 = (PurchaseOrderDocument) t4.transform(node, null); Assert.assertNotNull(object3); } @Override protected void tearDown() throws Exception { super.tearDown(); } }