CoreTestsMain.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: CoreTestsMain.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:47  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:07  roddey
  70.  * Get rid of dependence on old utils output streams.
  71.  *
  72.  * Revision 1.1.1.1  1999/11/09 01:01:44  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. //  Includes
  81. // ---------------------------------------------------------------------------
  82. #include "CoreTests.hpp"
  83. #include <xercesc/util/PlatformUtils.hpp>
  84. // ---------------------------------------------------------------------------
  85. //  Externs for our testing methods. There is just one per file so a header
  86. //  for each one is a little overkill, so we just do it the old fashioned way.
  87. // ---------------------------------------------------------------------------
  88. extern bool testTranscoders();
  89. extern bool testCountedPointer();
  90. extern bool testBitSet();
  91. extern bool testRefArray();
  92. extern bool testRefHashTable();
  93. extern bool testRefStack();
  94. extern bool testRefVector();
  95. extern bool testString();
  96. extern bool testURL();
  97. extern bool testValueArray();
  98. extern bool testValueStack();
  99. extern bool testValueVector();
  100. int main()
  101. {
  102.     // Do the platform initialization
  103.     try
  104.     {
  105.         XMLPlatformUtils::Initialize();
  106.     }
  107.     catch(const XMLException& toCatch)
  108.     {
  109.         std::wcout << L"Parser Init Failed!n   INFO: ("
  110.                    << toCatch.getSrcFile() << L"." << toCatch.getSrcLine()
  111.                    << L") -" << toCatch.getMessage() << std::endl;
  112.         return 0xFFFF;
  113.     }
  114.     std::wcout << L"nXML4C2 Core Utilities Unit Testern" << std::endl;
  115.     // This value will return the number of failed tests
  116.     int retVal = 0;
  117.     try
  118.     {
  119.         // -------------------------------------------------------------------
  120.         // Test the basic transcoding services
  121.         // -------------------------------------------------------------------
  122.         if (!testTranscoders())
  123.         {
  124.             std::wcout << L"Transcoder tests failed" << std::endl;
  125.             retVal++;
  126.         }
  127.         std::wcout << std::endl;
  128.         // -------------------------------------------------------------------
  129.         // Test the String class
  130.         // -------------------------------------------------------------------
  131.         if (!testString())
  132.         {
  133.             std::wcout << L"String tests failed" << std::endl;
  134.             retVal++;
  135.         }
  136.         std::wcout << std::endl;
  137.         // -------------------------------------------------------------------
  138.         // Test the CountedPointerTo template class
  139.         // -------------------------------------------------------------------
  140.         if (!testCountedPointer())
  141.         {
  142.             std::wcout << L"CountedPointerTo tests failed" << std::endl;
  143.             retVal++;
  144.         }
  145.         std::wcout << std::endl;
  146.         // -------------------------------------------------------------------
  147.         // Test the URL class
  148.         // -------------------------------------------------------------------
  149.         if (!testURL())
  150.         {
  151.             std::wcout << L"URL tests failed" << std::endl;
  152.             retVal++;
  153.         }
  154.         std::wcout << std::endl;
  155.         // -------------------------------------------------------------------
  156.         // Test the ValueVectorOf template class
  157.         // -------------------------------------------------------------------
  158.         if (!testValueVector())
  159.         {
  160.             std::wcout << L"ValueVectorOf tests failed" << std::endl;
  161.             retVal++;
  162.         }
  163.         std::wcout << std::endl;
  164.         // -------------------------------------------------------------------
  165.         // Test the ValueArrayOf template class
  166.         // -------------------------------------------------------------------
  167.         if (!testValueArray())
  168.         {
  169.             std::wcout << L"ValueArrayOf tests failed" << std::endl;
  170.             retVal++;
  171.         }
  172.         std::wcout << std::endl;
  173.         // -------------------------------------------------------------------
  174.         // Test the ValueStackOf template class
  175.         // -------------------------------------------------------------------
  176.         if (!testValueStack())
  177.         {
  178.             std::wcout << L"ValueStackOf tests failed" << std::endl;
  179.             retVal++;
  180.         }
  181.         std::wcout << std::endl;
  182.         // -------------------------------------------------------------------
  183.         // Test the RefArrayOf template class
  184.         // -------------------------------------------------------------------
  185.         if (!testRefArray())
  186.         {
  187.             std::wcout << L"RefArrayOf tests failed" << std::endl;
  188.             retVal++;
  189.         }
  190.         std::wcout << std::endl;
  191.         // -------------------------------------------------------------------
  192.         // Test the RefStackOf template class
  193.         // -------------------------------------------------------------------
  194.         if (!testRefStack())
  195.         {
  196.             std::wcout << L"RefStackOf tests failed" << std::endl;
  197.             retVal++;
  198.         }
  199.         std::wcout << std::endl;
  200.         // -------------------------------------------------------------------
  201.         // Test the RefVectorOf template class
  202.         // -------------------------------------------------------------------
  203.         if (!testRefVector())
  204.         {
  205.             std::wcout << L"RefVectorOf tests failed" << std::endl;
  206.             retVal++;
  207.         }
  208.         std::wcout << std::endl;
  209.         // -------------------------------------------------------------------
  210.         // Test the RefHashtableOf template class
  211.         // -------------------------------------------------------------------
  212.         if (!testRefHashTable())
  213.         {
  214.             std::wcout << L"RefHashTableOf tests failed" << std::endl;
  215.             retVal++;
  216.         }
  217.         std::wcout << std::endl;
  218.         // -------------------------------------------------------------------
  219.         // Test the BitSet class
  220.         // -------------------------------------------------------------------
  221.         if (!testBitSet())
  222.         {
  223.             std::wcout << L"BitSet tests failed" << std::endl;
  224.             retVal++;
  225.         }
  226.         std::wcout << std::endl;
  227.     }
  228.     catch(const XMLException& toCatch)
  229.     {
  230.         std::wcout  << L"Exception During Test!n   INFO: ("
  231.                     << toCatch.getSrcFile() << L"."
  232.                     << toCatch.getSrcLine() << L") -"
  233.                     << toCatch.getMessage() << std::endl;
  234.         return 0xFFFF;
  235.     }
  236.     // If we failed any tests, display a message
  237.     std::wcout << L"--------------------------------n";
  238.     if (retVal == 0)
  239.         std::wcout << L"<<PASSED>>: All tests passedn";
  240.     else
  241.         std::wcout << L"<<FAILED>>: Some tests failedn";
  242.     std::wcout << L"--------------------------------n" << std::endl;
  243.     return retVal;
  244. }