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

流媒体/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 DataTest02_cxx_Version =
  51.     "$Id: DataTest02.cxx,v 1.5 2000/12/18 23:49:23 bko Exp $";
  52. #include "mstring.hxx"
  53. #include "cpLog.h"
  54. #include "Data.hxx"
  55. #include <iostream>
  56. int main()
  57. {
  58.     const int MAX_TESTS = 25;
  59.     Data data[MAX_TESTS];
  60.     bool testPassed[MAX_TESTS];
  61.     for (int i = 0; i < MAX_TESTS; i++)
  62.     {
  63.         testPassed[i] = false;
  64.     }
  65.     data[0] = "Testing Data";
  66.     if (strcmp(data[0].getData(), "Testing Data") == 0)
  67.     {
  68.         testPassed[0] = true;
  69.     }
  70.     data[1] = data[0];
  71.     if (strcmp(data[1].getData(), "Testing Data") == 0)
  72.     {
  73.         testPassed[1] = true;
  74.     }
  75.     data[2] = "Testing Data";
  76.     data[2] += "added data";
  77.     if (strcmp(data[2].getData(), "Testing Dataadded data") == 0)
  78.     {
  79.         testPassed[2] = true;
  80.     }
  81.     else
  82.     {
  83.         cerr << "test2: " << data[2].getData() << endl;
  84.     }
  85.     data[3] = data[1] + data[2];
  86.     if (data[3] == "Testing DataTesting Dataadded data")
  87.     {
  88.         testPassed[3] = true;
  89.     }
  90.     string str("This is a string");
  91.     Data data4(str);
  92.     if (data4 == "This is a string")
  93.     {
  94.         testPassed[4] = true;
  95.     }
  96.     mstring mstr("This is a mstring");
  97.     Data data5(mstr);
  98.     if (data5 == "This is a mstring")
  99.     {
  100.         testPassed[5] = true;
  101.     }
  102.     int value = 5;
  103.     Data data6(value);
  104.     if (data6 == "5")
  105.     {
  106.         testPassed[6] = true;
  107.     }
  108.     Data testData;
  109.     testData = "alphb";
  110.     data[7] = "alpha";
  111.     if ((data[7] < testData) &&
  112.             !(data[7] == testData) &&
  113.             !(data[7] > testData) &&
  114.             (data[7] != testData))
  115.     {
  116.         testPassed[7] = true;
  117.     }
  118.     else
  119.     {
  120.         cerr << "test 7: " << endl;
  121.         cerr << "x < testData : " << (data[7] < testData) << endl;
  122.         cerr << "x > testData : " << (data[7] > testData) << endl;
  123.         cerr << "x == testData : " << (data[7] == testData) << endl;
  124.         cerr << "x != testData : " << (data[7] != testData) << endl;
  125.     }
  126.     data[8] = "alphc";
  127.     if ((data[8] > testData) &&
  128.             !(data[8] == testData) &&
  129.             !(data[8] < testData) &&
  130.             (data[8] != testData))
  131.     {
  132.         testPassed[8] = true;
  133.     }
  134.     else
  135.     {
  136.         cerr << "test 8: " << endl;
  137.         cerr << "x < testData : " << (data[8] < testData) << endl;
  138.         cerr << "x > testData : " << (data[8] > testData) << endl;
  139.         cerr << "x == testData : " << (data[8] == testData) << endl;
  140.         cerr << "x != testData : " << (data[8] != testData) << endl;
  141.     }
  142.     data[9] = "alphb";
  143.     if ((data[9] == testData) &&
  144.             !(data[9] < testData) &&
  145.             !(data[9] > testData) &&
  146.             !(data[9] != testData))
  147.     {
  148.         testPassed[9] = true;
  149.     }
  150.     else
  151.     {
  152.         cerr << "test 9: " << endl;
  153.         cerr << "x < testData : " << (data[9] < testData) << endl;
  154.         cerr << "x > testData : " << (data[9] > testData) << endl;
  155.         cerr << "x == testData : " << (data[9] == testData) << endl;
  156.         cerr << "x != testData : " << (data[9] != testData) << endl;
  157.     }
  158.     data[10] = "alphbx";
  159.     if ((data[10] > testData) &&
  160.             !(data[10] < testData) &&
  161.             !(data[10] == testData) &&
  162.             (data[10] != testData))
  163.     {
  164.         testPassed[10] = true;
  165.     }
  166.     else
  167.     {
  168.         cerr << "test 10: " << endl;
  169.         cerr << "x < testData : " << (data[10] < testData) << endl;
  170.         cerr << "x > testData : " << (data[10] > testData) << endl;
  171.         cerr << "x == testData : " << (data[10] == testData) << endl;
  172.         cerr << "x != testData : " << (data[10] != testData) << endl;
  173.     }
  174.     data[11] = "hello, world!";
  175.     char newstr[256];
  176.     strcpy(newstr, data[11].getData());
  177.     if ((strcmp(newstr, "hello, world!") == 0) && (data[11].length() == 13))
  178.     {
  179.         testPassed[11] = true;
  180.     }
  181.     int myMax = 11;
  182.     int allPassed = 0;
  183.     cout << "START test program: " << __FILE__ << endl;
  184.     for (int j = 0; j <= myMax; j++)
  185.     {
  186.         if (testPassed[j])
  187.         {
  188.             cout << "test " << j << " passed." << endl;
  189.         }
  190.         else
  191.         {
  192.             cout << "test " << j << " FAILED." << endl;
  193.             allPassed = -1;
  194.         }
  195.     }
  196.     cout << "END test program: " << __FILE__ << endl;
  197.     return allPassed;
  198. }