blob: deebbbef0157539ca438f01cff2aa08ba9a63600 [file] [log] [blame]
package org.apache.axis2.schema.populate.other;
import junit.framework.TestCase;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import java.io.ByteArrayInputStream;
import java.lang.reflect.Method;
import java.lang.reflect.Array;
import java.lang.reflect.InvocationTargetException;
import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.beans.IntrospectionException;
import org.apache.axiom.om.util.StAXUtils;
/*
* 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.
*/
public class PopulateMinOccurs0Test extends TestCase {
/*
<xs:element name="A" type="xs:string" minOccurs="1" maxOccurs="unbounded"/>
<xs:element name="B" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="C" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="D" type="xs:string" minOccurs="0" maxOccurs="1"/>
*/
// element D is missing
private String xmlString1 = "<root xmlns=\"http://test.org\">" +
"<A>I am A</A>" +
"<B>I am B1</B>" +
"<B>I am B2</B>" +
"<C>I am C1</C>" +
"<C>I am C2</C>" +
"</root>";
//B elements are missing
private String xmlString2 = "<root xmlns=\"http://test.org\">" +
"<A>I am A</A>" +
"<C>I am B2</C>" +
"<C>I am B2</C>" +
"<D>I am D1</D>" +
"</root>";
//Only A is present
private String xmlString3 = "<root xmlns=\"http://test.org\">" +
"<A>I am A</A>" +
"</root>";
public void testPopulate1() throws Exception {
populateAndAssert(xmlString1, 2, "b");
populateAndAssert(xmlString1, 2, "c");
}
public void testPopulate2() throws Exception {
populateAndAssert(xmlString2, 0, "b");
populateAndAssert(xmlString2, 2, "c");
}
public void testPopulate3() throws Exception {
populateAndAssert(xmlString3, 0, "b");
populateAndAssert(xmlString3, 1, "a");
}
private void populateAndAssert(String s, int expectedCount,
String itemtoTest) throws XMLStreamException,
ClassNotFoundException, NoSuchMethodException,
IllegalAccessException, InvocationTargetException,
IntrospectionException {
XMLStreamReader reader =
StAXUtils.createXMLStreamReader(new ByteArrayInputStream(s.getBytes()));
Class clazz = Class.forName("org.test.Root");
Class innerClazz = clazz.getDeclaredClasses()[0];
Method parseMethod = innerClazz.getMethod("parse", new Class[]{XMLStreamReader.class});
Object obj = parseMethod.invoke(null, new Object[]{reader});
assertNotNull(obj);
Object stringArray = null;
BeanInfo beanInfo = Introspector.getBeanInfo(obj.getClass());
PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
Method readMethod;
for (int i = 0; i < propertyDescriptors.length; i++) {
PropertyDescriptor propertyDescriptor = propertyDescriptors[i];
if (itemtoTest.equals(propertyDescriptor.getDisplayName())) {
readMethod = propertyDescriptor.getReadMethod();
stringArray = readMethod.invoke(obj, null);
break;
}
}
if (expectedCount!=0){
assertNotNull(stringArray);
String[] array = (String[]) stringArray;
assertEquals(array.length, expectedCount);
}
}
}