CoreTests_RefArray.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:9k
源码类别:

词法分析

开发平台:

Visual 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.5  2002/02/01 22:46:28  peiyongz
  59.  * sane_include
  60.  *
  61.  * Revision 1.4  2000/03/02 19:55:48  roddey
  62.  * This checkin includes many changes done while waiting for the
  63.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  64.  * available elsewhere.
  65.  *
  66.  * Revision 1.3  2000/02/06 07:48:39  rahulj
  67.  * Year 2K copyright swat.
  68.  *
  69.  * Revision 1.2  2000/01/19 00:59:06  roddey
  70.  * Get rid of dependence on old utils output streams.
  71.  *
  72.  * Revision 1.1.1.1  1999/11/09 01:01:52  twl
  73.  * Initial checkin
  74.  *
  75.  * Revision 1.2  1999/11/08 20:42:27  rahul
  76.  * Swat for adding in Product name and CVS comment log variable.
  77.  *
  78.  */
  79. // ---------------------------------------------------------------------------
  80. //  XML4C2 includes
  81. // ---------------------------------------------------------------------------
  82. #include "CoreTests.hpp"
  83. #include <xercesc/util/RefArrayOf.hpp>
  84. #include <xercesc/util/ArrayIndexOutOfBoundsException.hpp>
  85. // ---------------------------------------------------------------------------
  86. //  Force a full instantiation of our array and its enumerator, just to
  87. //  insure that all methods get instantiated and compiled.
  88. // ---------------------------------------------------------------------------
  89. template RefArrayOf<int>;
  90. template RefArrayEnumerator<int>;
  91. // ---------------------------------------------------------------------------
  92. //  Local functions
  93. // ---------------------------------------------------------------------------
  94. static bool constructorTests()
  95. {
  96.     // Some values to test with
  97.     double testVals[16];
  98.     unsigned int index;
  99.     for (index = 0; index < 16; index++)
  100.         testVals[index] = index;
  101.     // Do a basic constructor with just the count of elements
  102.     RefArrayOf<double> testArray1(255);
  103.     // Make sure that it has the right initial size
  104.     if (testArray1.length() != 255)
  105.     {
  106.         std::wcout  << L"    The ctor created wrong length() value"
  107.                     << std::endl;
  108.         return false;
  109.     }
  110.     // Copy construct another array from it and test the length
  111.     RefArrayOf<double> testArray2(testArray1);
  112.     if (testArray2.length() != 255)
  113.     {
  114.         std::wcout  << L"    The copy ctor created wrong length() value"
  115.                     << std::endl;
  116.         return false;
  117.     }
  118.     // Test the equality of the two arrays
  119.     if (testArray1 != testArray2)
  120.     {
  121.         std::wcout  << L"    The copy ctor created unequal arrays"
  122.                     << std::endl;
  123.         return false;
  124.     }
  125.     //
  126.     //  Do another one where we provide the initial values.
  127.     //
  128.     double* initValues[16];
  129.     for (index = 0; index < 16; index++)
  130.         initValues[index ] = &testVals[index];
  131.     RefArrayOf<double> testArray3(initValues, 16);
  132.     if (testArray3.length() != 16)
  133.     {
  134.         std::wcout  << L"    The init values ctor created wrong length() value"
  135.                     << std::endl;
  136.         return false;
  137.     }
  138.     // Make sure the initial values are correct
  139.     for (index = 0; index < 16; index++)
  140.     {
  141.         if (*testArray3[index] != (double)index)
  142.         {
  143.             std::wcout  << L"    The init values ctor did not init contents correctly"
  144.                         << std::endl;
  145.             return false;
  146.         }
  147.     }
  148.     //
  149.     //  Create another array of a different size and assign one of the
  150.     //  existing ones to it and make sure that they are equal.
  151.     //
  152.     RefArrayOf<double> testArray4(15);
  153.     testArray4 = testArray3;
  154.     if (testArray4 != testArray3)
  155.     {
  156.         std::wcout  << L"    Assignment did not create equal arrays"
  157.                     << std::endl;
  158.         return false;
  159.     }
  160.     return true;
  161. }
  162. static bool accessTests()
  163. {
  164.     // Some values to test with
  165.     unsigned int testVals[16];
  166.     unsigned int index;
  167.     for (index = 0; index < 16; index++)
  168.         testVals[index] = index;
  169.     RefArrayOf<unsigned int> testArray1(16);
  170.     // Fill in the array
  171.     for (index = 0; index < 16; index++)
  172.         testArray1[index] = &testVals[index];
  173.     // Read them back again
  174.     for (index = 0; index < 16; index++)
  175.     {
  176.         if (testArray1[index] != &testVals[index])
  177.         {
  178.             std::wcout  << L"    Failed to read back values just set"
  179.                         << std::endl;
  180.             return false;
  181.         }
  182.     }
  183.     // Make sure we get the expected array index error
  184.     bool caughtIt = false;
  185.     try
  186.     {
  187.         testArray1[16];
  188.     }
  189.     catch(const ArrayIndexOutOfBoundsException&)
  190.     {
  191.         caughtIt = true;
  192.     }
  193.     if (!caughtIt)
  194.     {
  195.         std::wcout << L"    Failed to catch index error" << std::endl;
  196.         return false;
  197.     }
  198.     return true;
  199. }
  200. // ---------------------------------------------------------------------------
  201. //  Test entry point
  202. // ---------------------------------------------------------------------------
  203. bool testRefArray()
  204. {
  205.     std::wcout  << L"----------------------------------n"
  206.                 << L"Testing RefArrayOf template classn"
  207.                 << L"----------------------------------" << std::endl;
  208.     bool retVal = true;
  209.     try
  210.     {
  211.         // Call other local methods to do specific tests
  212.         std::wcout << L"Testing RefArrayOf contructors" << std::endl;
  213.         if (!constructorTests())
  214.         {
  215.             std::wcout  << L"RefArrayOf constructor tests failed"
  216.                         << std::endl;
  217.             retVal = false;
  218.         }
  219.          else
  220.         {
  221.             std::wcout  << L"RefArrayOf constructor tests passed"
  222.                         << std::endl;
  223.         }
  224.         std::wcout << std::endl;
  225.         std::wcout << L"Testing RefArrayOf element access" << std::endl;
  226.         if (!accessTests())
  227.         {
  228.             std::wcout  << L"RefArrayOf element access tests failed"
  229.                         << std::endl;
  230.             retVal = false;
  231.         }
  232.          else
  233.         {
  234.             std::wcout  << L"RefArrayOf element access tests passed"
  235.                         << std::endl;
  236.         }
  237.         std::wcout << std::endl;
  238.     }
  239.     catch(const XMLException& toCatch)
  240.     {
  241.         std::wcout  << L"  ERROR: Unexpected exception!n   Msg: "
  242.                     << toCatch.getMessage() << std::endl;
  243.         return false;
  244.     }
  245.     return retVal;
  246. }