Package org.apache.axis2.databinding.types.xsd

Source Code of org.apache.axis2.databinding.types.xsd.ArrayTest

/*
* 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.axis2.databinding.types.xsd;


import junit.framework.TestCase;
import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.util.StAXUtils;
import org.apache.axis2.databinding.types.soapencoding.Array;
import org.apache.axis2.databinding.types.soapencoding.ArrayE;

import javax.xml.stream.XMLStreamReader;
import java.io.ByteArrayInputStream;
import java.util.List;


public class ArrayTest extends TestCase {
    public void testArray1() throws Exception {

        ArrayE arrayElement = new ArrayE();
        Array array = new Array();

        _int testInt;
        for (int i = 1; i < 6; i++) {
            testInt = new _int();
            testInt.set_int(i);
            array.addObject(testInt);
        }

        array.setArrayTypeQName(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema","int"));
        arrayElement.setArray(array);

        OMElement omElement = arrayElement.getOMElement(ArrayE.MY_QNAME,
                OMAbstractFactory.getOMFactory());
        java.lang.String omElementString = omElement.toStringWithConsume();
        System.out.println("OMElement ==> " + omElementString);
        XMLStreamReader xmlReader = StAXUtils.createXMLStreamReader(
                new ByteArrayInputStream(omElementString.getBytes()));
        ArrayE result = ArrayE.Factory.parse(xmlReader);
        List resultList = result.getArray().getObjectList();
        for (int i = 1; i < 6; i++) {
           assertEquals(((_int)resultList.get(i-1)).get_int(),i);
        }

    }

    public void testArray2() throws Exception {

        ArrayE arrayElement = new ArrayE();
        Array array = new Array();

        Date testDate;
        for (int i = 1; i < 6; i++) {
            testDate = new Date();
            testDate.setDate(new java.util.Date());
            array.addObject(testDate);
        }

        array.setArrayTypeQName(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema","date"));
        arrayElement.setArray(array);

        OMElement omElement = arrayElement.getOMElement(ArrayE.MY_QNAME,
                OMAbstractFactory.getOMFactory());
        java.lang.String omElementString = omElement.toStringWithConsume();
        System.out.println("OMElement ==> " + omElementString);
        XMLStreamReader xmlReader = StAXUtils.createXMLStreamReader(
                new ByteArrayInputStream(omElementString.getBytes()));
        ArrayE result = ArrayE.Factory.parse(xmlReader);
        List resultList = result.getArray().getObjectList();
        assertEquals(resultList.size(),5);
    }

    public void testArray3() throws Exception {

        ArrayE arrayElement = new ArrayE();
        Array array = new Array();

        _int testInt;
        for (int i = 1; i < 6; i++) {
            testInt = new _int();
            testInt.set_int(i);
            array.addObject(testInt);
        }

        arrayElement.setArray(array);

        OMElement omElement = arrayElement.getOMElement(ArrayE.MY_QNAME,
                OMAbstractFactory.getOMFactory());
        java.lang.String omElementString = omElement.toStringWithConsume();
        System.out.println("OMElement ==> " + omElementString);
        XMLStreamReader xmlReader = StAXUtils.createXMLStreamReader(
                new ByteArrayInputStream(omElementString.getBytes()));
        ArrayE result = ArrayE.Factory.parse(xmlReader);
        List resultList = result.getArray().getObjectList();
        for (int i = 1; i < 6; i++) {
           assertEquals(((_int)resultList.get(i-1)).get_int(),i);
        }

    }

    public void testArray4() throws Exception {

        ArrayE arrayElement = new ArrayE();
        Array array = new Array();

        Date testDate;
        for (int i = 1; i < 6; i++) {
            testDate = new Date();
            testDate.setDate(new java.util.Date());
            array.addObject(testDate);
        }

        arrayElement.setArray(array);

        OMElement omElement = arrayElement.getOMElement(ArrayE.MY_QNAME,
                OMAbstractFactory.getOMFactory());
        java.lang.String omElementString = omElement.toStringWithConsume();
        System.out.println("OMElement ==> " + omElementString);
        XMLStreamReader xmlReader = StAXUtils.createXMLStreamReader(
                new ByteArrayInputStream(omElementString.getBytes()));
        ArrayE result = ArrayE.Factory.parse(xmlReader);
        List resultList = result.getArray().getObjectList();
        assertEquals(resultList.size(),5);
    }

    public void testArray5() throws Exception {

        java.lang.String omElementString = "<ns1:Array xmlns:ns1=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:s1=\"http://www.w3.org/2001/XMLSchema\"\n" +
                "           ns1:arrayType=\"s1:ur-type[5]\">\n" +
                "    <s1:int>1</s1:int>\n" +
                "    <s1:int>2</s1:int>\n" +
                "    <s1:int>3</s1:int>\n" +
                "    <s1:int>4</s1:int>\n" +
                "    <s1:int>5</s1:int>\n" +
                "</ns1:Array>";
        System.out.println("OMElement ==> " + omElementString);
        XMLStreamReader xmlReader = StAXUtils.createXMLStreamReader(
                new ByteArrayInputStream(omElementString.getBytes()));
        ArrayE result = ArrayE.Factory.parse(xmlReader);
        List resultList = result.getArray().getObjectList();
        for (int i = 1; i < 6; i++) {
           assertEquals(((_int)resultList.get(i-1)).get_int(),i);
        }

    }
}
TOP

Related Classes of org.apache.axis2.databinding.types.xsd.ArrayTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.