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

词法分析

开发平台:

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_BitSet.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:47  twl
  73.  * Initial checkin
  74.  *
  75.  * Revision 1.2  1999/11/08 20:42:26  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/BitSet.hpp>
  84. // ---------------------------------------------------------------------------
  85. //  Local testing methods
  86. // ---------------------------------------------------------------------------
  87. static bool basicTests()
  88. {
  89.     //
  90.     //  Create a bitset with 32 bits. We just happen to know that this is
  91.     //  the unit of expansion, so it should come back with exactly that
  92.     //  number of bits of size.
  93.     //
  94.     BitSet setTest(32);
  95.     if (setTest.size() != 32)
  96.     {
  97.         std::wcout  << L"    Ctor did not create set of correct size"
  98.                     << std::endl;
  99.         return false;
  100.     }
  101.     //
  102.     //  Check the value of all of the bits and make sure that they all come
  103.     //  back zero.
  104.     //
  105.     const unsigned int count = setTest.size();
  106.     unsigned int index;
  107.     for (index = 0; index < count; index++)
  108.     {
  109.         if (setTest.get(index))
  110.         {
  111.             std::wcout << L"    A bit's initial value was not zero"
  112.                        << std::endl;
  113.             return false;
  114.         }
  115.     }
  116.     // Make sure that allAreCleared() agrees
  117.     if (!setTest.allAreCleared())
  118.     {
  119.         std::wcout  << L"    allAreCleared() disagrees with individual bit gets"
  120.                     << std::endl;
  121.         return false;
  122.     }
  123.     // Set and clear each bit and make sure that they come back right
  124.     for (index = 0; index < count; index++)
  125.     {
  126.         setTest.set(index);
  127.         if (!setTest.get(index))
  128.         {
  129.             std::wcout << L"    Bit was set but get returned false"
  130.                        << std::endl;
  131.             return false;
  132.         }
  133.         setTest.clear(index);
  134.         if (setTest.get(index))
  135.         {
  136.             std::wcout  << L"    Bit was cleared but get returned true"
  137.                         << std::endl;
  138.             return false;
  139.         }
  140.     }
  141.     // And once more make sure they are all zero
  142.     for (index = 0; index < count; index++)
  143.     {
  144.         if (setTest.get(index))
  145.         {
  146.             std::wcout << L"    A bit remained set after clearing"
  147.                        << std::endl;
  148.             return false;
  149.         }
  150.     }
  151.     //
  152.     //  Set some bits, then copy construct another bitset from this one. Then
  153.     //  see if they come out equal.
  154.     //
  155.     setTest.set(1);
  156.     setTest.set(16);
  157.     setTest.set(20);
  158.     setTest.set(24);
  159.     BitSet setTest2(setTest);
  160.     if (!setTest.equals(setTest2))
  161.     {
  162.         std::wcout  << L"    Copy ctor did not create equal sets"
  163.                     << std::endl;
  164.         return false;
  165.     }
  166.     // Clear all bits of the copy and make sure they are all cleared
  167.     setTest2.clearAll();
  168.     for (index = 0; index < count; index++)
  169.     {
  170.         if (setTest2.get(index))
  171.         {
  172.             std::wcout  << L"    clearAll() did not clear all bits"
  173.                         << std::endl;
  174.             return false;
  175.         }
  176.     }
  177.     // Set a bit beyond the current size
  178.     setTest2.set(32);
  179.     // Make sure it expanded
  180.     if (setTest2.size() != 64)
  181.     {
  182.         std::wcout  << L"    Set of bit beyond size did not expand"
  183.                     << std::endl;
  184.         return false;
  185.     }
  186.     // Set all the bits
  187.     for (index = 0; index < count; index++)
  188.         setTest.set(index);
  189.     // Make sure that allAreSet() sees them all set
  190.     if (!setTest.allAreSet())
  191.     {
  192.         std::wcout  << L"    After setting all bits, allAreSet() returned false"
  193.                     << std::endl;
  194.         return false;
  195.     }
  196.     return true;
  197. }
  198. static bool bitopsTests()
  199. {
  200.     // Create a bit set to test
  201.     BitSet setTest(48);
  202.     // Set some bits
  203.     setTest.set(1);
  204.     setTest.set(10);
  205.     setTest.set(16);
  206.     setTest.set(21);
  207.     setTest.set(33);
  208.     setTest.set(41);
  209.     // Create another set to do ops on
  210.     BitSet setTest2(48);
  211.     // Or with the new set
  212.     setTest2.orWith(setTest);
  213.     // They should be equal now
  214.     if (!setTest.equals(setTest2))
  215.     {
  216.         std::wcout  << L"    OR of set with empty set did not create equal sets"
  217.                     << std::endl;
  218.         return false;
  219.     }
  220.     // Xor with original which should get back an empty set
  221.     setTest2.xorWith(setTest);
  222.     if (!setTest2.allAreCleared())
  223.     {
  224.         std::wcout  << L"    XOR against original set did not get back original"
  225.                     << std::endl;
  226.         return false;
  227.     }
  228.     // And them, which should have no effect
  229.     setTest2.andWith(setTest);
  230.     if (!setTest2.allAreCleared())
  231.     {
  232.         std::wcout << L"    AND against empty set changed bits" << std::endl;
  233.         return false;
  234.     }
  235.     return true;
  236. }
  237. // ---------------------------------------------------------------------------
  238. //  Test entry point
  239. // ---------------------------------------------------------------------------
  240. bool testBitSet()
  241. {
  242.     std::wcout  << L"----------------------------------n"
  243.                 << L"Testing BitSet classn"
  244.                 << L"----------------------------------" << std::endl;
  245.     bool retVal = true;
  246.     try
  247.     {
  248.         std::wcout << L"Testing basic BitSet methods" << std::endl;
  249.         if (!basicTests())
  250.         {
  251.             std::wcout << L"Bitset basic test methods failed" << std::endl;
  252.             retVal = false;
  253.         }
  254.          else
  255.         {
  256.             std::wcout << L"Bitset basic tests passed" << std::endl;
  257.         }
  258.         std::wcout << std::endl;
  259.         std::wcout << L"Testing BitSet logical bit ops methods" << std::endl;
  260.         if (!bitopsTests())
  261.         {
  262.             std::wcout << L"Bitset logical bit ops failed" << std::endl;
  263.             retVal = false;
  264.         }
  265.          else
  266.         {
  267.             std::wcout << L"Bitset logical bit ops passed" << std::endl;
  268.         }
  269.         std::wcout << std::endl;
  270.     }
  271.     catch(const XMLException& toCatch)
  272.     {
  273.         std::wcout << L"  ERROR: Unexpected exception!n   Msg: "
  274.                 << toCatch.getMessage() << std::endl;
  275.         return false;
  276.     }
  277.     return retVal;
  278. }