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

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