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

词法分析

开发平台:

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_RefVector.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:01:59  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/RefVectorOf.hpp>
  84. #include <xercesc/util/ArrayIndexOutOfBoundsException.hpp>
  85. // ---------------------------------------------------------------------------
  86. //  Force a full instantiation of the vector and its enumerator just to insure
  87. //  that all methods get instantiated and compiled.
  88. // ---------------------------------------------------------------------------
  89. template RefVectorOf<int>;
  90. template RefVectorEnumerator<int>;
  91. // ---------------------------------------------------------------------------
  92. //  Templatized testing code. These allow the exact same tests to be run
  93. //  for any number of instantiation types over the by value vectors.
  94. // ---------------------------------------------------------------------------
  95. template <class T> bool commonRefTests()
  96. {
  97.     const unsigned int  testMax = 3;
  98.     bool                caughtIt;
  99.     //
  100.     //  Create a vector of testMax of the instantiation type. Tell it that
  101.     //  we adopt elements.
  102.     //
  103.     RefVectorOf<T> testVec(testMax, true);
  104.     // Make sure the initial capacity is what we set
  105.     if (testVec.curCapacity() != testMax)
  106.     {
  107.         std::wcout << L"   Init capacity was incorrect" << std::endl;
  108.         return false;
  109.     }
  110.     // Make sure the initial size is zero
  111.     if (testVec.size() != 0)
  112.     {
  113.         std::wcout << L"   Init size was not correct" << std::endl;
  114.         return false;
  115.     }
  116.     // Add a value and check the count is 1
  117.     testVec.addElement(new T);
  118.     if (testVec.size() != 1)
  119.     {
  120.         std::wcout << L"   Adding one element caused bad size" << std::endl;
  121.         return false;
  122.     }
  123.     // Add another value and check the count is 2
  124.     testVec.addElement(new T);
  125.     if (testVec.size() != 2)
  126.     {
  127.         std::wcout  << L"   Adding another element caused bad size"
  128.                     << std::endl;
  129.         return false;
  130.     }
  131.     // Add two more, which should cause an expansion of the vector
  132.     testVec.addElement(new T);
  133.     testVec.addElement(new T);
  134.     if (testVec.curCapacity() == testMax)
  135.     {
  136.         std::wcout  << L"   Adding another element failed to cause an expansion"
  137.                     << std::endl;
  138.         return false;
  139.     }
  140.     // Check that we get an array bounds exception after an expansion
  141.     caughtIt = false;
  142.     try
  143.     {
  144.         testVec.elementAt(4);
  145.     }
  146.     catch(const ArrayIndexOutOfBoundsException&)
  147.     {
  148.         caughtIt = true;
  149.     }
  150.     if (!caughtIt)
  151.     {
  152.         std::wcout  << L"   Failed to catch array bounds error at element 4"
  153.                     << std::endl;
  154.         return false;
  155.     }
  156.     // Remove an item and see if the count went down by one
  157.     testVec.removeElementAt(0);
  158.     if (testVec.size() != 3)
  159.     {
  160.         std::wcout  << L"   Removing an element did not adjust size correctly"
  161.                     << std::endl;
  162.         return false;
  163.     }
  164.     // Remove the rest of them and make sure we hit zero
  165.     testVec.removeElementAt(0);
  166.     testVec.removeElementAt(0);
  167.     testVec.removeElementAt(0);
  168.     if (testVec.size() != 0)
  169.     {
  170.         std::wcout  << L"   Removing all elements did not zero the size"
  171.                     << std::endl;
  172.         return false;
  173.     }
  174.     // Check that we get an array bounds exception now still
  175.     caughtIt = false;
  176.     try
  177.     {
  178.         testVec.elementAt(0);
  179.     }
  180.     catch(const ArrayIndexOutOfBoundsException&)
  181.     {
  182.         caughtIt = true;
  183.     }
  184.     if (!caughtIt)
  185.     {
  186.         std::wcout  << L"   Failed to catch array bounds error at element 0"
  187.                     << std::endl;
  188.         return false;
  189.     }
  190.     // Add a few more elements back in, via insertion
  191.     testVec.insertElementAt(new T, 0);
  192.     testVec.insertElementAt(new T, 0);
  193.     testVec.insertElementAt(new T, 0);
  194.     if (testVec.size() != 3)
  195.     {
  196.         std::wcout << L"   Inserting elements caused bad size" << std::endl;
  197.         return false;
  198.     }
  199.     // Now do a remove all elements
  200.     testVec.removeAllElements();
  201.     if (testVec.size() != 0)
  202.     {
  203.         std::wcout  << L"   removeAllElements caused bad size" << std::endl;
  204.         return false;
  205.     }
  206.     return true;
  207. }
  208. template <class T> bool extendedRefTests()
  209. {
  210.     const unsigned int testMax = 8;
  211.     // Create a test vector and put in ascending test values
  212.     RefVectorOf<T> testVec(testMax, true);
  213.     testVec.addElement(new T(0));
  214.     testVec.addElement(new T(1));
  215.     testVec.addElement(new T(2));
  216.     testVec.addElement(new T(3));
  217.     testVec.addElement(new T(4));
  218.     testVec.addElement(new T(5));
  219.     testVec.addElement(new T(6));
  220.     testVec.addElement(new T(7));
  221.     // Now check that they went in that way
  222.     unsigned int index;
  223.     for (index = 0; index < testMax; index++)
  224.     {
  225.         if (*testVec.elementAt(index) != T(index))
  226.         {
  227.             std::wcout  << L"   addElement put elements in wrong order"
  228.                         << std::endl;
  229.             return false;
  230.         }
  231.     }
  232.     // Remove the zero'th element and test again
  233.     testVec.removeElementAt(0);
  234.     for (index = 0; index < testMax-1; index++)
  235.     {
  236.         if (*testVec.elementAt(index) != T(index+1))
  237.         {
  238.             std::wcout  << L"   removeElement at head removed wrong element"
  239.                         << std::endl;
  240.             return false;
  241.         }
  242.     }
  243.     // Test edge case by removing last element and test again
  244.     testVec.removeElementAt(6);
  245.     for (index = 0; index < testMax-2; index++)
  246.     {
  247.         if (*testVec.elementAt(index) != T(index+1))
  248.         {
  249.             std::wcout  << L"   removeElement at end removed wrong element"
  250.                         << std::endl;
  251.             return false;
  252.         }
  253.     }
  254.     return true;
  255. }
  256. // ---------------------------------------------------------------------------
  257. //  Local functions
  258. // ---------------------------------------------------------------------------
  259. static bool doBasicTests()
  260. {
  261.     bool retVal = true;
  262.     //
  263.     // Do the common reference vector tests for ints, bools and strings.
  264.     //
  265.     std::wcout << L"Testing RefVectorOf<int>, common tests" << std::endl;
  266.     if (!commonRefTests<int>())
  267.     {
  268.         std::wcout << L"RefVectorOf<int> failed" << std::endl;
  269.         retVal = false;
  270.     }
  271.      else
  272.     {
  273.         std::wcout << L"RefVectorOf<int> passed" << std::endl;
  274.     }
  275.     std::wcout << std::endl;
  276.     std::wcout << L"Testing RefVectorOf<bool>, common tests" << std::endl;
  277.     if (!commonRefTests<bool>())
  278.     {
  279.         std::wcout << L"RefVectorOf<bool> failed" << std::endl;
  280.         retVal = false;
  281.     }
  282.      else
  283.     {
  284.         std::wcout << L"RefVectorOf<bool> passed" << std::endl;
  285.     }
  286.     std::wcout << std::endl;
  287.     //
  288.     //  And now do the second round of extended tests. These require that
  289.     //  the instantiation type be of a fundamental value, because its going
  290.     //  to test element ordering issues.
  291.     //
  292.     std::wcout << L"Testing RefVectorOf<int>, extended tests" << std::endl;
  293.     if (!extendedRefTests<int>())
  294.     {
  295.         std::wcout << L"Extended RefVectorOf<int> failed" << std::endl;
  296.         retVal = false;
  297.     }
  298.      else
  299.     {
  300.         std::wcout << L"Extended RefVectorOf<int> passed" << std::endl;
  301.     }
  302.     std::wcout << std::endl;
  303.     return retVal;
  304. }
  305. static bool enumTests()
  306. {
  307.     // Create a vector and fill it in with some known values
  308.     RefVectorOf<unsigned int> testVec(32, true);
  309.     unsigned int index;
  310.     for (index = 0; index < 32; index++)
  311.         testVec.addElement(new unsigned int(index));
  312.     // Create an enumeration for it
  313.     RefVectorEnumerator<unsigned int> enumTest(&testVec);
  314.     index = 0;
  315.     while (enumTest.hasMoreElements())
  316.     {
  317.         if (enumTest.nextElement() != index++)
  318.         {
  319.             std::wcout << L"    Enumerator sequence was incorrect" << std::endl;
  320.             return false;
  321.         }
  322.     }
  323.     if (index != 32)
  324.     {
  325.         std::wcout  << L"    Enumerator did not enum enough elements"
  326.                     << std::endl;
  327.         return false;
  328.     }
  329.     return true;
  330. }
  331. // ---------------------------------------------------------------------------
  332. //  Test entry point
  333. // ---------------------------------------------------------------------------
  334. bool testRefVector()
  335. {
  336.     std::wcout  << L"----------------------------------n"
  337.                 << L"Testing RefVectorOf template classn"
  338.                 << L"----------------------------------" << std::endl;
  339.     bool retVal = true;
  340.     try
  341.     {
  342.         // Do the basic suite of tests
  343.         if (!doBasicTests())
  344.             retVal = false;
  345.         // Test the enumerator
  346.         std::wcout << L"Testing RefVectorEnumerator" << std::endl;
  347.         if (!enumTests())
  348.         {
  349.             std::wcout << L"RefVectorEnumeration failed" << std::endl;
  350.             retVal = false;
  351.         }
  352.          else
  353.         {
  354.             std::wcout << L"RefVectorEnumeration passed" << std::endl;
  355.         }
  356.         std::wcout << std::endl;
  357.     }
  358.     catch(const XMLException& toCatch)
  359.     {
  360.         std::wcout  << L"  ERROR: Unexpected exception!n   Msg: "
  361.                     << toCatch.getMessage() << std::endl;
  362.         return false;
  363.     }
  364.     return retVal;
  365. }