CoreTests_RefArray.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:9k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer. 
  13.  * 
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  * 
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:  
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  * 
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written 
  29.  *    permission, please contact apache@apache.org.
  30.  * 
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  * 
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  * 
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: CoreTests_RefArray.cpp,v $
  58.  * Revision 1.4  2000/03/02 19:55:48  roddey
  59.  * This checkin includes many changes done while waiting for the
  60.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  61.  * available elsewhere.
  62.  *
  63.  * Revision 1.3  2000/02/06 07:48:39  rahulj
  64.  * Year 2K copyright swat.
  65.  *
  66.  * Revision 1.2  2000/01/19 00:59:06  roddey
  67.  * Get rid of dependence on old utils output streams.
  68.  *
  69.  * Revision 1.1.1.1  1999/11/09 01:01:52  twl
  70.  * Initial checkin
  71.  *
  72.  * Revision 1.2  1999/11/08 20:42:27  rahul
  73.  * Swat for adding in Product name and CVS comment log variable.
  74.  *
  75.  */
  76. // ---------------------------------------------------------------------------
  77. //  XML4C2 includes
  78. // ---------------------------------------------------------------------------
  79. #include "CoreTests.hpp"
  80. #include <util/RefArrayOf.hpp>
  81. #include <util/ArrayIndexOutOfBoundsException.hpp>
  82. // ---------------------------------------------------------------------------
  83. //  Force a full instantiation of our array and its enumerator, just to
  84. //  insure that all methods get instantiated and compiled.
  85. // ---------------------------------------------------------------------------
  86. template RefArrayOf<int>;
  87. template RefArrayEnumerator<int>;
  88. // ---------------------------------------------------------------------------
  89. //  Local functions
  90. // ---------------------------------------------------------------------------
  91. static bool constructorTests()
  92. {
  93.     // Some values to test with
  94.     double testVals[16];
  95.     unsigned int index;
  96.     for (index = 0; index < 16; index++)
  97.         testVals[index] = index;
  98.     // Do a basic constructor with just the count of elements
  99.     RefArrayOf<double> testArray1(255);
  100.     // Make sure that it has the right initial size
  101.     if (testArray1.length() != 255)
  102.     {
  103.         std::wcout  << L"    The ctor created wrong length() value"
  104.                     << std::endl;
  105.         return false;
  106.     }
  107.     // Copy construct another array from it and test the length
  108.     RefArrayOf<double> testArray2(testArray1);
  109.     if (testArray2.length() != 255)
  110.     {
  111.         std::wcout  << L"    The copy ctor created wrong length() value"
  112.                     << std::endl;
  113.         return false;
  114.     }
  115.     // Test the equality of the two arrays
  116.     if (testArray1 != testArray2)
  117.     {
  118.         std::wcout  << L"    The copy ctor created unequal arrays"
  119.                     << std::endl;
  120.         return false;
  121.     }
  122.     //
  123.     //  Do another one where we provide the initial values.
  124.     //
  125.     double* initValues[16];
  126.     for (index = 0; index < 16; index++)
  127.         initValues[index ] = &testVals[index];
  128.     RefArrayOf<double> testArray3(initValues, 16);
  129.     if (testArray3.length() != 16)
  130.     {
  131.         std::wcout  << L"    The init values ctor created wrong length() value"
  132.                     << std::endl;
  133.         return false;
  134.     }
  135.     // Make sure the initial values are correct
  136.     for (index = 0; index < 16; index++)
  137.     {
  138.         if (*testArray3[index] != (double)index)
  139.         {
  140.             std::wcout  << L"    The init values ctor did not init contents correctly"
  141.                         << std::endl;
  142.             return false;
  143.         }
  144.     }
  145.     //
  146.     //  Create another array of a different size and assign one of the
  147.     //  existing ones to it and make sure that they are equal.
  148.     //
  149.     RefArrayOf<double> testArray4(15);
  150.     testArray4 = testArray3;
  151.     if (testArray4 != testArray3)
  152.     {
  153.         std::wcout  << L"    Assignment did not create equal arrays"
  154.                     << std::endl;
  155.         return false;
  156.     }
  157.     return true;
  158. }
  159. static bool accessTests()
  160. {
  161.     // Some values to test with
  162.     unsigned int testVals[16];
  163.     unsigned int index;
  164.     for (index = 0; index < 16; index++)
  165.         testVals[index] = index;
  166.     RefArrayOf<unsigned int> testArray1(16);
  167.     // Fill in the array
  168.     for (index = 0; index < 16; index++)
  169.         testArray1[index] = &testVals[index];
  170.     // Read them back again
  171.     for (index = 0; index < 16; index++)
  172.     {
  173.         if (testArray1[index] != &testVals[index])
  174.         {
  175.             std::wcout  << L"    Failed to read back values just set"
  176.                         << std::endl;
  177.             return false;
  178.         }
  179.     }
  180.     // Make sure we get the expected array index error
  181.     bool caughtIt = false;
  182.     try
  183.     {
  184.         testArray1[16];
  185.     }
  186.     catch(const ArrayIndexOutOfBoundsException&)
  187.     {
  188.         caughtIt = true;
  189.     }
  190.     if (!caughtIt)
  191.     {
  192.         std::wcout << L"    Failed to catch index error" << std::endl;
  193.         return false;
  194.     }
  195.     return true;
  196. }
  197. // ---------------------------------------------------------------------------
  198. //  Test entry point
  199. // ---------------------------------------------------------------------------
  200. bool testRefArray()
  201. {
  202.     std::wcout  << L"----------------------------------n"
  203.                 << L"Testing RefArrayOf template classn"
  204.                 << L"----------------------------------" << std::endl;
  205.     bool retVal = true;
  206.     try
  207.     {
  208.         // Call other local methods to do specific tests
  209.         std::wcout << L"Testing RefArrayOf contructors" << std::endl;
  210.         if (!constructorTests())
  211.         {
  212.             std::wcout  << L"RefArrayOf constructor tests failed"
  213.                         << std::endl;
  214.             retVal = false;
  215.         }
  216.          else
  217.         {
  218.             std::wcout  << L"RefArrayOf constructor tests passed"
  219.                         << std::endl;
  220.         }
  221.         std::wcout << std::endl;
  222.         std::wcout << L"Testing RefArrayOf element access" << std::endl;
  223.         if (!accessTests())
  224.         {
  225.             std::wcout  << L"RefArrayOf element access tests failed"
  226.                         << std::endl;
  227.             retVal = false;
  228.         }
  229.          else
  230.         {
  231.             std::wcout  << L"RefArrayOf element access tests passed"
  232.                         << std::endl;
  233.         }
  234.         std::wcout << std::endl;
  235.     }
  236.     catch(const XMLException& toCatch)
  237.     {
  238.         std::wcout  << L"  ERROR: Unexpected exception!n   Msg: "
  239.                     << toCatch.getMessage() << std::endl;
  240.         return false;
  241.     }
  242.     return retVal;
  243. }