CoreTests_ValueArray.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_ValueArray.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:49  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:02:07  twl
  73.  * Initial checkin
  74.  *
  75.  * Revision 1.2  1999/11/08 20:42:28  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/ValueArrayOf.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 ValueArrayOf<int>;
  90. template ValueArrayEnumerator<int>;
  91. // ---------------------------------------------------------------------------
  92. //  Local functions
  93. // ---------------------------------------------------------------------------
  94. static bool constructorTests()
  95. {
  96.     // Do a basic constructor with just the count of elements
  97.     ValueArrayOf<double> testArray1(255);
  98.     // Make sure that it has the right initial size
  99.     if (testArray1.length() != 255)
  100.     {
  101.         std::wcout  << L"    The ctor created wrong length() value"
  102.                     << std::endl;
  103.         return false;
  104.     }
  105.     // Copy construct another array from it and test the length
  106.     ValueArrayOf<double> testArray2(testArray1);
  107.     if (testArray2.length() != 255)
  108.     {
  109.         std::wcout << L"    The copy ctor created wrong length() value"
  110.                 << std::endl;
  111.         return false;
  112.     }
  113.     // Test the equality of the two arrays
  114.     if (testArray1 != testArray2)
  115.     {
  116.         std::wcout  << L"    The copy ctor created unequal arrays"
  117.                     << std::endl;
  118.         return false;
  119.     }
  120.     //
  121.     //  Do another one where we provide the initial values.
  122.     //
  123.     double initValues[] = { 1.1, 2.2, 3.3, 4.4 };
  124.     ValueArrayOf<double> testArray3(initValues, 4);
  125.     if (testArray3.length() != 4)
  126.     {
  127.         std::wcout  << L"    The init values ctor created wrong length() value"
  128.                     << std::endl;
  129.         return false;
  130.     }
  131.     // Make sure the initial values are correct
  132.     if ((testArray3[0] != 1.1)
  133.     ||  (testArray3[1] != 2.2)
  134.     ||  (testArray3[2] != 3.3)
  135.     ||  (testArray3[3] != 4.4))
  136.     {
  137.         std::wcout  << L"    The init values ctor did not init contents correctly"
  138.                     << std::endl;
  139.         return false;
  140.     }
  141.     //
  142.     //  Create another array of a different size and assign one of the
  143.     //  existing ones to it and make sure that they are equal.
  144.     //
  145.     ValueArrayOf<double> testArray4(15);
  146.     testArray4 = testArray3;
  147.     if (testArray4 != testArray3)
  148.     {
  149.         std::wcout  << L"    Assignment did not create equal arrays"
  150.                     << std::endl;
  151.         return false;
  152.     }
  153.     return true;
  154. }
  155. static bool accessTests()
  156. {
  157.     ValueArrayOf<unsigned int> testArray1(16);
  158.     // Fill in the array
  159.     unsigned int index;
  160.     for (index = 0; index < 16; index++)
  161.         testArray1[index] = index;
  162.     // Read them back again
  163.     for (index = 0; index < 16; index++)
  164.     {
  165.         if (testArray1[index] != index)
  166.         {
  167.             std::wcout  << L"    Failed to read back values just set"
  168.                         << std::endl;
  169.             return false;
  170.         }
  171.     }
  172.     // Make sure we get the expected array index error
  173.     bool caughtIt = false;
  174.     try
  175.     {
  176.         index = testArray1[16];
  177.     }
  178.     catch(const ArrayIndexOutOfBoundsException&)
  179.     {
  180.         caughtIt = true;
  181.     }
  182.     if (!caughtIt)
  183.     {
  184.         std::wcout << L"    Failed to catch index error" << std::endl;
  185.         return false;
  186.     }
  187.     return true;
  188. }
  189. // ---------------------------------------------------------------------------
  190. //  Test entry point
  191. // ---------------------------------------------------------------------------
  192. bool testValueArray()
  193. {
  194.     std::wcout  << L"----------------------------------n"
  195.                 << L"Testing ValueArrayOf template classn"
  196.                 << L"----------------------------------" << std::endl;
  197.     bool retVal = true;
  198.     try
  199.     {
  200.         // Call other local methods to do specific tests
  201.         std::wcout << L"Testing ValueArrayOf contructors" << std::endl;
  202.         if (!constructorTests())
  203.         {
  204.             std::wcout  << L"ValueArrayOf constructor tests failed"
  205.                         << std::endl;
  206.             retVal = false;
  207.         }
  208.          else
  209.         {
  210.             std::wcout  << L"ValueArrayOf constructor tests passed"
  211.                         << std::endl;
  212.         }
  213.         std::wcout << std::endl;
  214.         std::wcout << L"Testing ValueArrayOf element access" << std::endl;
  215.         if (!accessTests())
  216.         {
  217.             std::wcout  << L"ValueArrayOf element access tests failed"
  218.                         << std::endl;
  219.             retVal = false;
  220.         }
  221.          else
  222.         {
  223.             std::wcout  << L"ValueArrayOf element access tests passed"
  224.                         << std::endl;
  225.         }
  226.         std::wcout << std::endl;
  227.     }
  228.     catch(const XMLException& toCatch)
  229.     {
  230.         std::wcout  << L"  ERROR: Unexpected exception!n   Msg: "
  231.                     << toCatch.getMessage() << std::endl;
  232.         return false;
  233.     }
  234.     return retVal;
  235. }