test_ncbi_conn_stream.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:11k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbi_conn_stream.cpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 18:46:06  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.33
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbi_conn_stream.cpp,v 1000.4 2004/06/01 18:46:06 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anton Lavrentiev
  35.  *
  36.  * File Description:
  37.  *   Standard test for the CONN-based streams
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <connect/ncbi_conn_stream.hpp>
  42. #include <connect/ncbi_core_cxx.hpp>
  43. #include "../ncbi_priv.h"               /* CORE logging facilities */
  44. #include <stdlib.h>
  45. #include <string.h>
  46. #include <time.h>
  47. /* This header must go last */
  48. #include "test_assert.h"
  49. BEGIN_NCBI_SCOPE
  50. static const size_t kBufferSize = 1024*1024;
  51. static CNcbiRegistry* s_CreateRegistry(void)
  52. {
  53.     CNcbiRegistry* reg = new CNcbiRegistry;
  54.     // Compose a test registry
  55.     reg->Set("ID1", "CONN_" REG_CONN_HOST, DEF_CONN_HOST);
  56.     reg->Set("ID1", "CONN_" REG_CONN_PATH, DEF_CONN_PATH);
  57.     reg->Set("ID1", "CONN_" REG_CONN_ARGS, DEF_CONN_ARGS);
  58.     reg->Set(DEF_CONN_REG_SECTION, REG_CONN_HOST,     "yar.ncbi.nlm.nih.gov");
  59.     reg->Set(DEF_CONN_REG_SECTION, REG_CONN_PATH,      "/Service/bounce.cgi");
  60.     reg->Set(DEF_CONN_REG_SECTION, REG_CONN_ARGS,           "arg1+arg2+arg3");
  61.     reg->Set(DEF_CONN_REG_SECTION, REG_CONN_REQ_METHOD,     "POST");
  62.     reg->Set(DEF_CONN_REG_SECTION, REG_CONN_TIMEOUT,        "5.0");
  63.     reg->Set(DEF_CONN_REG_SECTION, REG_CONN_DEBUG_PRINTOUT, "TRUE");
  64.     return reg;
  65. }
  66. END_NCBI_SCOPE
  67. int main(void)
  68. {
  69.     USING_NCBI_SCOPE;
  70.     size_t i, j, k, l;
  71.     srand((unsigned int) time(0));
  72.     SetDiagTrace(eDT_Enable);
  73.     SetDiagPostLevel(eDiag_Info);
  74.     SetDiagPostFlag(eDPF_All);
  75.     CONNECT_Init(s_CreateRegistry());
  76.     LOG_POST(Info << "Checking error log setup"); // short explanatory mesg
  77.     ERR_POST(Info << "Test log message using C++ Toolkit posting");
  78.     CORE_LOG(eLOG_Note, "Another test message using C Toolkit posting");
  79. #if 1
  80.     {{
  81.         // Test for timeouts and memory leaks in unused stream
  82.         STimeout tmo = {8, 0};
  83.         CConn_IOStream* s  =
  84.             new CConn_ServiceStream("ID1", fSERV_Any, 0, 0, &tmo);
  85.         delete s;
  86.     }}
  87. #endif
  88.     LOG_POST("Test 1 of 3: Big buffer bounce");
  89.     CConn_HttpStream ios(0, "User-Header: My headerrn",
  90.                          fHCC_UrlEncodeArgs | fHCC_AutoReconnect);
  91.     char *buf1 = new char[kBufferSize + 1];
  92.     char *buf2 = new char[kBufferSize + 2];
  93.     for (j = 0; j < kBufferSize/1024; j++) {
  94.         for (i = 0; i < 1024 - 1; i++)
  95.             buf1[j*1024 + i] = "0123456789"[rand() % 10];
  96.         buf1[j*1024 + 1024 - 1] = 'n';
  97.     }
  98.     buf1[kBufferSize] = '';
  99.     if (!(ios << buf1)) {
  100.         ERR_POST("Error sending data");
  101.         return 1;
  102.     }
  103.     assert(ios.tellp() == (CT_POS_TYPE)((CT_OFF_TYPE)(kBufferSize)));
  104.     ios.read(buf2, kBufferSize + 1);
  105.     streamsize buflen = ios.gcount();
  106.     if (!ios.good() && !ios.eof()) {
  107.         ERR_POST("Error receiving data");
  108.         return 2;
  109.     }
  110.     LOG_POST(Info << buflen << " bytes obtained" <<
  111.              (ios.eof() ? " (EOF)" : ""));
  112.     buf2[buflen] = '';
  113.     for (i = 0; i < kBufferSize; i++) {
  114.         if (!buf2[i])
  115.             break;
  116.         if (buf2[i] != buf1[i])
  117.             break;
  118.     }
  119.     if (i < kBufferSize)
  120.         ERR_POST("Not entirely bounced, mismatch position: " << i + 1);
  121.     else if ((size_t) buflen > kBufferSize)
  122.         ERR_POST("Sent: " << kBufferSize << ", bounced: " << buflen);
  123.     else
  124.         LOG_POST(Info << "Test 1 passed");
  125.     // Clear EOF condition
  126.     ios.clear();
  127.     LOG_POST("Test 2 of 3: Random bounce");
  128.     if (!(ios << buf1)) {
  129.         ERR_POST("Error sending data");
  130.         return 1;
  131.     }
  132.     assert(ios.tellp() == (CT_POS_TYPE)((CT_OFF_TYPE)(2*kBufferSize)));
  133.     j = 0;
  134.     buflen = 0;
  135.     for (i = 0, l = 0; i < kBufferSize; i += j, l++) {
  136.         k = rand()%15 + 1;
  137.         if (i + k > kBufferSize + 1)
  138.             k = kBufferSize + 1 - i;
  139.         ios.read(&buf2[i], k);
  140.         j = ios.gcount();
  141.         if (!ios.good() && !ios.eof()) {
  142.             ERR_POST("Error receiving data");
  143.             return 2;
  144.         }
  145.         if (j != k)
  146.             LOG_POST("Bytes requested: " << k << ", received: " << j);
  147.         buflen += j;
  148.         l++;
  149.         if (!j && ios.eof())
  150.             break;
  151.     }
  152.     LOG_POST(Info << buflen << " bytes obtained in " << l << " iteration(s)" <<
  153.              (ios.eof() ? " (EOF)" : ""));
  154.     buf2[buflen] = '';
  155.     for (i = 0; i < kBufferSize; i++) {
  156.         if (!buf2[i])
  157.             break;
  158.         if (buf2[i] != buf1[i])
  159.             break;
  160.     }
  161.     if (i < kBufferSize)
  162.         ERR_POST("Not entirely bounced, mismatch position: " << i + 1);
  163.     else if ((size_t) buflen > kBufferSize)
  164.         ERR_POST("Sent: " << kBufferSize << ", bounced: " << buflen);
  165.     else
  166.         LOG_POST(Info << "Test 2 passed");
  167.     // Clear EOF condition
  168.     ios.clear();
  169.     LOG_POST("Test 3 of 3: Truly binary bounce");
  170.     for (i = 0; i < kBufferSize; i++)
  171.         buf1[i] = (char)(255/*rand()%256*/);
  172.     ios.write(buf1, kBufferSize);
  173.     if (!ios.good()) {
  174.         ERR_POST("Error sending data");
  175.         return 1;
  176.     }
  177.     assert(ios.tellp() == (CT_POS_TYPE)((CT_OFF_TYPE)(3*kBufferSize)));
  178.     ios.read(buf2, kBufferSize + 1);
  179.     buflen = ios.gcount();
  180.     if (!ios.good() && !ios.eof()) {
  181.         ERR_POST("Error receiving data");
  182.         return 2;
  183.     }
  184.     LOG_POST(Info << buflen << " bytes obtained" <<
  185.              (ios.eof() ? " (EOF)" : ""));
  186.     for (i = 0; i < kBufferSize; i++) {
  187.         if (buf2[i] != buf1[i])
  188.             break;
  189.     }
  190.     if (i < kBufferSize)
  191.         ERR_POST("Not entirely bounced, mismatch position: " << i + 1);
  192.     else if ((size_t) buflen > kBufferSize)
  193.         ERR_POST("Sent: " << kBufferSize << ", bounced: " << buflen);
  194.     else
  195.         LOG_POST(Info << "Test 3 passed");
  196.     CORE_SetREG(0);
  197.     // Do not delete lock and log here 'cause destructors may need them
  198.     delete[] buf1;
  199.     delete[] buf2;
  200.     return 0/*okay*/;
  201. }
  202. /*
  203.  * --------------------------------------------------------------------------
  204.  * $Log: test_ncbi_conn_stream.cpp,v $
  205.  * Revision 1000.4  2004/06/01 18:46:06  gouriano
  206.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.33
  207.  *
  208.  * Revision 6.33  2004/05/17 20:58:22  gorelenk
  209.  * Added include of PCH ncbi_pch.hpp
  210.  *
  211.  * Revision 6.32  2004/04/01 14:14:02  lavr
  212.  * Spell "occurred", "occurrence", and "occurring"
  213.  *
  214.  * Revision 6.31  2004/01/27 17:06:45  ucko
  215.  * Reorder headers to ensure hitting the conflicting LOG_DATA definitions
  216.  * in the right order on AIX.
  217.  *
  218.  * Revision 6.30  2004/01/14 20:25:36  lavr
  219.  * Added test of isstream::tellp()
  220.  *
  221.  * Revision 6.29  2003/11/04 03:28:23  lavr
  222.  * Use explicit streamsize->size_t casts in comparisons
  223.  *
  224.  * Revision 6.28  2003/11/04 03:10:24  lavr
  225.  * Remove special s_Read(); use standard istream::read() instead
  226.  *
  227.  * Revision 6.27  2003/05/20 21:22:24  lavr
  228.  * Do not clear() if stream is bad() in s_Read()
  229.  *
  230.  * Revision 6.26  2003/05/14 03:58:43  lavr
  231.  * Match changes in respective APIs of the tests
  232.  *
  233.  * Revision 6.25  2003/04/15 14:06:09  lavr
  234.  * Changed ray.nlm.nih.gov -> ray.ncbi.nlm.nih.gov
  235.  *
  236.  * Revision 6.24  2003/03/25 22:16:38  lavr
  237.  * Show that timeouts are set from CONN stream ctors
  238.  *
  239.  * Revision 6.23  2002/11/22 15:09:40  lavr
  240.  * Replace all occurrences of "ray" with "yar"
  241.  *
  242.  * Revision 6.22  2002/06/10 19:55:11  lavr
  243.  * Take advantage of CONNECT_Init() call
  244.  *
  245.  * Revision 6.21  2002/04/22 20:31:01  lavr
  246.  * s_Read() made independent of the compiler: should work with any now
  247.  *
  248.  * Revision 6.20  2002/03/31 02:37:19  lavr
  249.  * Additional registry entries for ID1 added
  250.  *
  251.  * Revision 6.19  2002/03/30 03:37:21  lavr
  252.  * Added test for memory leak in unused connector
  253.  *
  254.  * Revision 6.18  2002/03/24 16:25:25  lavr
  255.  * Changed "ray" -> "ray.nlm.nih.gov"
  256.  *
  257.  * Revision 6.17  2002/03/22 19:46:37  lavr
  258.  * Test_assert.h made last among the include files
  259.  *
  260.  * Revision 6.16  2002/02/05 21:45:55  lavr
  261.  * Included header files rearranged
  262.  *
  263.  * Revision 6.15  2002/01/28 20:28:28  lavr
  264.  * Changed io_bounce.cgi -> bounce.cgi
  265.  *
  266.  * Revision 6.14  2002/01/16 21:23:15  vakatov
  267.  * Utilize header "test_assert.h" to switch on ASSERTs in the Release mode too
  268.  *
  269.  * Revision 6.13  2001/12/30 19:45:50  lavr
  270.  * 'static' added to every file-scope identifiers
  271.  *
  272.  * Revision 6.12  2001/07/24 18:00:30  lavr
  273.  * New function introduced s_Read (instead of direct use of istream::read)
  274.  * This function is compiler-dependent, and specially-featured for GCC
  275.  *
  276.  * Revision 6.11  2001/04/23 18:03:06  vakatov
  277.  * Artificial cast to get rid of warning in the 64-bit compilation mode
  278.  *
  279.  * Revision 6.10  2001/03/27 23:39:16  lavr
  280.  * Explicit cast to (char) added in buffer filling
  281.  *
  282.  * Revision 6.9  2001/03/24 00:50:06  lavr
  283.  * Log typo correction
  284.  *
  285.  * Revision 6.8  2001/03/24 00:35:21  lavr
  286.  * Two more tests added: randomly sized read test, and binary (-1) read test
  287.  *
  288.  * Revision 6.7  2001/03/22 19:19:17  lavr
  289.  * Buffer size extended; random number generator seeded with current time
  290.  *
  291.  * Revision 6.6  2001/03/02 20:03:17  lavr
  292.  * "../ncbi_priv.h" explained
  293.  *
  294.  * Revision 6.5  2001/01/25 17:12:01  lavr
  295.  * Added: buffers and LOG freed upon program exit
  296.  *
  297.  * Revision 6.4  2001/01/23 23:21:03  lavr
  298.  * Added proper logging
  299.  *
  300.  * Revision 6.3  2001/01/13 00:01:26  lavr
  301.  * Changes in REG_cxx2c() prototype -> appropriate changes in the test
  302.  * Explicit registry at the end
  303.  *
  304.  * Revision 6.2  2001/01/12 05:49:31  vakatov
  305.  * Get rid of unused "argc", "argv" in main()
  306.  *
  307.  * Revision 6.1  2001/01/11 23:09:36  lavr
  308.  * Initial revision
  309.  *
  310.  * ==========================================================================
  311.  */