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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbi_socket_connector.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:07:06  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbi_socket_connector.c,v 1000.0 2003/10/29 17:07: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:  Denis Vakatov
  35.  *
  36.  * File Description:
  37.  *   Standard test for the the SOCK-based CONNECTOR
  38.  *
  39.  */
  40. #include "ncbi_conntest.h"
  41. #include "../ncbi_ansi_ext.h"
  42. #include "../ncbi_priv.h"
  43. #include <connect/ncbi_socket_connector.h>
  44. #include <connect/ncbi_util.h>
  45. #include <stdlib.h>
  46. /* This header must go last */
  47. #include "test_assert.h"
  48. int main(int argc, const char* argv[])
  49. {
  50.     STimeout  timeout;
  51.     CONNECTOR connector;
  52.     FILE*     data_file;
  53. #define MIN_PORT 5001
  54.     const char*    env;
  55.     const char*    host;
  56.     unsigned short port;
  57.     unsigned int   max_try;
  58.     SOCK           sock;
  59.     /* defaults */
  60.     host         = 0;
  61.     port         = 0;
  62.     max_try      = 2;
  63.     timeout.sec  = 5;
  64.     timeout.usec = 123456;
  65.     /* parse cmd.-line args */
  66.     switch ( argc ) {
  67.     case 5: { /* timeout */
  68.         float fff = 0;
  69.         if (sscanf(argv[4], "%f", &fff) != 1  ||  fff < 0)
  70.             break;
  71.         timeout.sec  = (unsigned int) fff;
  72.         timeout.usec = (unsigned int) ((fff - timeout.sec) * 1000000);
  73.     }
  74.     case 4: { /* max_try  */
  75.         long lll;
  76.         if (sscanf(argv[3], "%ld", &lll) != 1  ||  lll <= 0)
  77.             break;
  78.         max_try = (unsigned int) lll;
  79.     }
  80.     case 3: { /* host, port */
  81.         int iii;
  82.         if (sscanf(argv[2], "%d", &iii) != 1  ||
  83.             iii < MIN_PORT  ||  65535 <= iii)
  84.             break;
  85.         port = (unsigned short) iii;
  86.         if ( !*argv[1] )
  87.             break;
  88.         host = argv[1];
  89.     }
  90.     default:
  91.         break;
  92.     }
  93.     /* bad args? -- Usage */
  94.     if ( !host ) {
  95.         fprintf(stderr,
  96.                 "Usage: %s <host> <port> [max_try [timeout]]n  where"
  97.                 "  <port> not less than %d; timeout is a float(in sec)n",
  98.                 argv[0], (int) MIN_PORT);
  99.         return 1 /*error*/;
  100.     }
  101.     /* log and data log streams */
  102.     CORE_SetLOGFormatFlags(fLOG_None          | fLOG_Level   |
  103.                            fLOG_OmitNoteLevel | fLOG_DateTime);
  104.     CORE_SetLOGFILE(stderr, 0/*false*/);
  105.     data_file = fopen("test_ncbi_socket_connector.log", "ab");
  106.     assert(data_file);
  107.     if ((env = getenv("CONN_DEBUG_PRINTOUT")) != 0 &&
  108.         (strcasecmp(env, "true") == 0 || strcasecmp(env, "1") == 0 ||
  109.          strcasecmp(env, "data") == 0 || strcasecmp(env, "all") == 0)) {
  110.         SOCK_SetDataLoggingAPI(eOn);
  111.     }
  112.     /* Tests for SOCKET CONNECTOR */
  113.     fprintf(stderr,
  114.             "Starting the SOCKET CONNECTOR test...n"
  115.             "%s:%hu,  timeout = %u.%06u, max # of retry = %un",
  116.             host, port, timeout.sec, timeout.usec, max_try);
  117.     connector = SOCK_CreateConnector(host, port, max_try);
  118.     CONN_TestConnector(connector, &timeout, data_file, fTC_SingleBouncePrint);
  119.     connector = SOCK_CreateConnector(host, port, max_try);
  120.     CONN_TestConnector(connector, &timeout, data_file, fTC_SingleBounceCheck);
  121.     connector = SOCK_CreateConnector(host, port, max_try);
  122.     CONN_TestConnector(connector, &timeout, data_file, fTC_Everything);
  123.     /* Tests for OnTop SOCKET CONNECTOR connector */
  124.     fprintf(stderr,
  125.             "Starting the SOCKET CONNECTOR test for "OnTop" connectors...n"
  126.             "%s:%hu,  timeout = %u.%06u, max # of retry = %un",
  127.             host, port, timeout.sec, timeout.usec, max_try);
  128.     if (SOCK_Create(host, port, &timeout, &sock) != eIO_Success)
  129.         CORE_LOG(eLOG_Fatal, "Cannot create socket");
  130.     connector = SOCK_CreateConnectorOnTop(sock, max_try);
  131.     CONN_TestConnector(connector, &timeout, data_file, fTC_Everything);
  132.     /* cleanup, exit */
  133.     fclose(data_file);
  134.     CORE_SetLOG(0);
  135.     return 0/*okay*/;
  136. }
  137. /*
  138.  * --------------------------------------------------------------------------
  139.  * $Log: test_ncbi_socket_connector.c,v $
  140.  * Revision 1000.0  2003/10/29 17:07:06  gouriano
  141.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.8
  142.  *
  143.  * Revision 6.8  2003/05/14 03:58:43  lavr
  144.  * Match changes in respective APIs of the tests
  145.  *
  146.  * Revision 6.7  2002/12/04 19:50:31  lavr
  147.  * #include "../ncbi_ansi_ext.h" instead of <string.h> to define strcasecmp()
  148.  *
  149.  * Revision 6.6  2002/12/04 16:57:11  lavr
  150.  * Toggle verbose logging from environment; move change log to end
  151.  *
  152.  * Revision 6.5  2002/03/22 19:47:55  lavr
  153.  * Test_assert.h made last among the include files
  154.  *
  155.  * Revision 6.4  2002/01/16 21:23:15  vakatov
  156.  * Utilize header "test_assert.h" to switch on ASSERTs in the Release mode too
  157.  *
  158.  * Revision 6.3  2001/12/04 15:55:33  lavr
  159.  * +Test for SOCK_CreateConnectorOnTop()
  160.  *
  161.  * Revision 6.2  2000/04/12 15:21:15  vakatov
  162.  * Moved the log initialization to after the cmd.line args' parsing
  163.  *
  164.  * Revision 6.1  2000/04/07 20:06:45  vakatov
  165.  * Initial revision
  166.  *
  167.  * ==========================================================================
  168.  */