01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.schema.populate.other;
20:
21: import junit.framework.TestCase;
22:
23: import javax.xml.stream.XMLInputFactory;
24: import javax.xml.stream.XMLStreamReader;
25: import java.beans.BeanInfo;
26: import java.beans.Introspector;
27: import java.beans.PropertyDescriptor;
28: import java.io.ByteArrayInputStream;
29: import java.lang.reflect.Method;
30:
31: import org.apache.axiom.om.util.StAXUtils;
32:
33: public class PopulateArrayInArrayTest extends TestCase {
34: private String xmlString = "<myobject xmlns=\"http://soapinterop.org/xsd\">"
35: + "<soapStructures>"
36: + "<varFloat>3.3</varFloat>"
37: + "<varInt>5</varInt>"
38: + "<varString>Hello11</varString>"
39: + "<varString>Hello11</varString>"
40: + "<varString>Hello12</varString>"
41: + "<varString>Hello13</varString>"
42: + "</soapStructures>"
43: + "<soapStructures>"
44: + "<varFloat>3.31</varFloat>"
45: + "<varInt>51</varInt>"
46: + "<varString>Hello21</varString>"
47: + "<varString>Hello21</varString>"
48: + "<varString>Hello22</varString>"
49: + "<varString>Hello23</varString>"
50: + "</soapStructures>"
51: + "</myobject>";
52:
53: public void testPopulate() throws Exception {
54:
55: XMLStreamReader reader = StAXUtils
56: .createXMLStreamReader(new ByteArrayInputStream(
57: xmlString.getBytes()));
58: Class clazz = Class.forName("org.soapinterop.xsd.Myobject");
59: Class innerClazz = clazz.getDeclaredClasses()[0];
60: Method parseMethod = innerClazz.getMethod("parse",
61: new Class[] { XMLStreamReader.class });
62: Object obj = parseMethod.invoke(null, new Object[] { reader });
63:
64: Object myObject = null;
65: BeanInfo beanInfo = Introspector.getBeanInfo(obj.getClass());
66: PropertyDescriptor[] propertyDescriptors = beanInfo
67: .getPropertyDescriptors();
68: for (int i = 0; i < propertyDescriptors.length; i++) {
69: PropertyDescriptor propertyDescriptor = propertyDescriptors[i];
70: if ("myobject".equals(propertyDescriptor.getDisplayName())) {
71: Method readMethod = propertyDescriptor.getReadMethod();
72: myObject = readMethod.invoke(obj, new Object[] {});
73: break;
74: }
75:
76: }
77:
78: assertNotNull(myObject);
79: }
80: }
|