Verify.hxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef VERIFY_HXX_
  2. #define VERIFY_HXX_
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const Verify_hxx_Version =
  53.     "$Id: Verify.hxx,v 1.7 2001/07/17 18:16:29 icahoon Exp $";
  54. #include "global.h"
  55. #include <iostream>
  56. #include <set>
  57. #include <string>
  58. using std::set;
  59. using std::string;
  60. namespace Vocal {
  61.     namespace Threads {
  62.         class Mutex;
  63.     }
  64. }
  65. using Vocal::Threads::Mutex;
  66. /* Usage:
  67.  *
  68.  * test_verify(test_condition);
  69.  *
  70.  * where test_condition is a boolean condition (like in assert).
  71.  * Unlike assert, test_verify does not stop execution.
  72.  * 
  73.  * 
  74.  *
  75.  * Here is a sample program:
  76.  *
  77.  * #include "Verify.hxx"
  78.  * int main()
  79.  * {
  80.  *     test_verify(0 == 0);  // this should pass
  81.  *     test_verify(1 == 0);  // this should fail
  82.  *     return test_return_code(1, 1);
  83.  * }
  84.  *
  85.  * the output of this program:
  86.  *
  87.  * VerifyTestShort.cxx:5: test case '1 == 0' failed
  88.  * VerifyTestShort.cxx:Passed/Expected: 1/1 Failed/Expected: 1/1
  89.  *
  90.  */
  91. /// singleton class used to count the number of test cases that pass / fail
  92. class TestStatistics
  93. {
  94.     public:
  95. /// called when a test (see below) passes
  96. static void passed();
  97. /// called when a test (see below) fails
  98. static void failed();
  99. /// called when a test (see below) is broken
  100. static void broken();
  101. /// called when a test (see below) is broken
  102. static void unexpectedPass();
  103.         /// called when a coverage point is called
  104.         static void covered(const char * filename, int line, const char * label);
  105. /// called by a global object that is constructed in Verify.cxx on finish to output a summary of results
  106. static int finish(const char* filename, int testcase_count);
  107.     protected:
  108. TestStatistics();
  109. TestStatistics(const TestStatistics&);
  110. ~TestStatistics();
  111.     private:
  112. const TestStatistics & operator=(const TestStatistics&);
  113. static TestStatistics * myInstance;
  114. static Mutex * myMutex;
  115. int myPassed;
  116. int myFailed;
  117. int myBroken;
  118. int myUnexpectedPass;
  119.         struct CoverageInfo
  120.         {
  121.             CoverageInfo(const char * pFile, int pLine, const char * pLabel)
  122.                 :   file(pFile), line(pLine), label(pLabel ? pLabel : "")
  123.             {}
  124.             
  125.             string      file;
  126.             int         line;
  127.             string      label;
  128.             
  129.             bool operator<(const CoverageInfo & src) const
  130.             {
  131.                 return ( file == src.file ? line < src.line : file < src.file );
  132.             }
  133.         };
  134.         set<CoverageInfo>   myCovered;
  135. };
  136. /** the following is a macro which implements the test system.  
  137.  * Usage:
  138.  *     test_verify(condition_to_verify);
  139.  */
  140. #define test_verify(x) 
  141.     do { 
  142.          if(!(x)) 
  143.          { 
  144.                cerr << __FILE__ << ':' << __LINE__ << ": test case '" << 
  145.             #x << "' failed" << endl;  
  146.             TestStatistics::failed(); 
  147.          } 
  148.          else 
  149.   TestStatistics::passed(); 
  150.        } while(0)
  151. /** TODO -- replace this with support for the rest of the system to
  152.  * understand the concept of brokenness.
  153.  */
  154. #define test_bug(x) 
  155.     do { 
  156.          if((x)) 
  157.          { 
  158.                cerr << __FILE__ << ':' << __LINE__ << ": test case '" << 
  159.             #x << "' unexpected pass (passed when fail expected)" << endl;  
  160.             TestStatistics::unexpectedPass(); 
  161.          } 
  162.          else 
  163.   TestStatistics::broken(); 
  164.        } while(0)
  165. /** the following is a macro which allow a programmer to insert coverage points
  166.  */
  167.  
  168. #if defined(VOCAL_TEST_COVERAGE)
  169.     #define test_covered(x) TestStatistics::covered(__FILE__, __LINE__, (x))
  170. #else
  171.     #define test_covered(x)
  172. #endif
  173. /** the following is a macro which implements the test system.  
  174.  * Usage:
  175.  *     test_return_code(testcase_count) 
  176.  */
  177. #define test_return_code(testcase_count) 
  178.     TestStatistics::finish(__FILE__, (testcase_count))
  179. #endif