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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const AllDataTest_cxx_Version =
  51.     "$Id: AllDataTest.cxx,v 1.7 2001/07/25 21:06:31 bko Exp $";
  52. #include "Verify.hxx"
  53. #include "CopyOnWriteData.hxx"
  54. #include "StringData.hxx"
  55. #include <iostream>
  56. bool debug = true;
  57. typedef char* (*func)();
  58. bool test(func c_f, func s_f)
  59. {
  60.     char* c0 = c_f();
  61.     char* s0 = s_f();
  62.     bool ok =
  63.         ( strcmp(c0, s0) == 0);
  64.     if (debug)
  65.     {
  66.         cout << "c0: " << c0 << endl;
  67.         cout << "s0: " << s0 << endl;
  68.     }
  69.     free(c0);
  70.     free(s0);
  71.     return ok;
  72. }
  73. template < class C >
  74. char* test_00_helper()
  75. {
  76.     string a = "   asdf is the testing   thing  ";
  77.     C test0 = a;
  78.     test0.removeSpaces();
  79.     return strdup(test0.getData());
  80. }
  81. bool test_00()
  82. {
  83.     return test(&test_00_helper < CopyOnWriteData > ,
  84.                 &test_00_helper < StringData > );
  85. }
  86. template < class C >
  87. char* test_01_helper()
  88. {
  89.     C test0 = "Foo: a,b,c,drn";
  90.     test0.expand(C("Foo:"), C(","), C("nFoo: "), C("n"));
  91.     return strdup(test0.getData());
  92. }
  93. bool test_01()
  94. {
  95.     return test(&test_01_helper < CopyOnWriteData > ,
  96.                 &test_01_helper < StringData > );
  97. }
  98. template < class C >
  99. char* test_02_helper()
  100. {
  101.     C test0 = "random junk asdf this is a test";
  102.     C test1;
  103.     int retn = test0.match("asdf", &test1, false);
  104.     assert(retn == FOUND);
  105.     return strdup(test1.getData());
  106. }
  107. bool test_02()
  108. {
  109.     return test(&test_02_helper < CopyOnWriteData > ,
  110.                 &test_02_helper < StringData > );
  111. }
  112. template < class C >
  113. char* test_03_helper()
  114. {
  115.     C test0 = "random junk asdf this is a test";
  116.     C test1;
  117.     int retn = test0.match("asdf", &test1, true);
  118.     assert(retn == FOUND);
  119.     return strdup(test0.getData());
  120. }
  121. bool test_03()
  122. {
  123.     return test(&test_03_helper < CopyOnWriteData > ,
  124.                 &test_03_helper < StringData > );
  125. }
  126. template < class C >
  127. char* test_04_helper()
  128. {
  129.     C test0 = "random junk asdf this is a test";
  130.     C test1;
  131.     int retn = test0.match("asdf", &test1, true, "hello");
  132.     assert(retn == FOUND);
  133.     return strdup(test0.getData());
  134. }
  135. bool test_04()
  136. {
  137.     return test(&test_04_helper < CopyOnWriteData > ,
  138.                 &test_04_helper < StringData > );
  139. }
  140. template < class C >
  141. char* test_05_helper()
  142. {
  143.     C test0 = "random junk asdf this is a test";
  144.     C test1;
  145.     int retn = test0.match("asdf", &test1, true, "hello");
  146.     assert(retn == FOUND);
  147.     return strdup(test1.getData());
  148. }
  149. bool test_05()
  150. {
  151.     return test(&test_05_helper < CopyOnWriteData > ,
  152.                 &test_05_helper < StringData > );
  153. }
  154. template < class C >
  155. char* test_06_helper()
  156. {
  157.     string a = "asdf is the testing   thing";
  158.     C test0 = a;
  159.     test0.removeSpaces();
  160.     return strdup(test0.getData());
  161. }
  162. bool test_06()
  163. {
  164.     return test(&test_06_helper < CopyOnWriteData > ,
  165.                 &test_06_helper < StringData > );
  166. }
  167. int main(int argc, char** argv)
  168. {
  169.     if (argc > 1)
  170.     {
  171.         debug = true;
  172.     }
  173.     test_verify(test_00());
  174.     test_verify(test_01());
  175.     test_verify( test_02() );
  176.     test_verify( test_03() );
  177.     test_verify( test_04() );
  178.     test_verify( test_05() );
  179.     test_verify( test_06() );
  180.     return test_return_code(6);
  181. }