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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbi_http_connector.c,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/12 17:06:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R6.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbi_http_connector.c,v 1000.2 2004/04/12 17:06:48 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 HTTP-based CONNECTOR
  38.  *
  39.  */
  40. #include "ncbi_conntest.h"
  41. #include "../ncbi_ansi_ext.h"
  42. #include <connect/ncbi_http_connector.h>
  43. #include <connect/ncbi_util.h>
  44. /* This header must go last */
  45. #include "test_assert.h"
  46. /* Hard-coded pseudo-registry getter
  47.  */
  48. #define TEST_HOST            "yar.ncbi.nlm.nih.gov"
  49. #define TEST_PORT            "6224"
  50. #define TEST_PATH            "/tools/vakatov/con_url.cgi"
  51. #define TEST_ARGS            "arg1+arg2+arg3"
  52. #define TEST_DEBUG_PRINTOUT  "yes"
  53. #define TEST_REQ_METHOD      "any"
  54. #if defined(__cplusplus)
  55. extern "C" {
  56.     static void s_REG_Get(void* user_data,
  57.                           const char* section, const char* name,
  58.                           char* value, size_t value_size);
  59. }
  60. #endif /* __cplusplus */
  61. /*ARGSUSED*/
  62. static void s_REG_Get
  63. (void*       user_data,
  64.  const char* section,
  65.  const char* name,
  66.  char*       value,
  67.  size_t      value_size)
  68. {
  69.     if (strcmp(section, DEF_CONN_REG_SECTION) != 0) {
  70.         assert(0);
  71.         return;
  72.     }
  73. #define X_GET_VALUE(x_name, x_value)            
  74.   if (strcmp(name, x_name) == 0) {              
  75.       strncpy0(value, x_value, value_size - 1); 
  76.       return;                                   
  77.   }
  78.     X_GET_VALUE(REG_CONN_HOST,           TEST_HOST);
  79.     X_GET_VALUE(REG_CONN_PORT,           TEST_PORT);
  80.     X_GET_VALUE(REG_CONN_PATH,           TEST_PATH);
  81.     X_GET_VALUE(REG_CONN_ARGS,           TEST_ARGS);
  82.     X_GET_VALUE(REG_CONN_REQ_METHOD,     TEST_REQ_METHOD);
  83.     X_GET_VALUE(REG_CONN_DEBUG_PRINTOUT, TEST_DEBUG_PRINTOUT);
  84. }
  85. /*****************************************************************************
  86.  *  MAIN
  87.  */
  88. int main(void)
  89. {
  90.     STimeout    timeout;
  91.     CONNECTOR   connector;
  92.     FILE*       data_file;
  93.     const char* user_header = 0;
  94.     THCC_Flags  flags;
  95.     /* Log and data-log streams */
  96.     CORE_SetLOGFormatFlags(fLOG_None          | fLOG_Level   |
  97.                            fLOG_OmitNoteLevel | fLOG_DateTime);
  98.     CORE_SetLOGFILE(stderr, 0/*false*/);
  99.     data_file = fopen("test_ncbi_http_connector.log", "ab");
  100.     assert(data_file);
  101.     /* Tune to the test URL using hard-coded pseudo-registry */
  102.     CORE_SetREG( REG_Create(0, s_REG_Get, 0, 0, 0) );
  103.     /* Connection timeout */
  104.     timeout.sec  = 5;
  105.     timeout.usec = 123456;
  106.     /* Printout all socket traffic */
  107.     /* SOCK_SetDataLoggingAPI(eOn); */
  108.     /* Run the tests */
  109.     flags = fHCC_KeepHeader | fHCC_UrlCodec | fHCC_UrlEncodeArgs;
  110.     connector = HTTP_CreateConnector(0, user_header, flags);
  111.     CONN_TestConnector(connector, &timeout, data_file, fTC_SingleBouncePrint);
  112.     flags = 0;
  113.     connector = HTTP_CreateConnector(0, user_header, flags);
  114.     CONN_TestConnector(connector, &timeout, data_file, fTC_SingleBounceCheck);
  115.     flags = fHCC_AutoReconnect;
  116.     connector = HTTP_CreateConnector(0, user_header, flags);
  117.     CONN_TestConnector(connector, &timeout, data_file, fTC_Everything);
  118.     flags = fHCC_AutoReconnect | fHCC_UrlCodec;
  119.     connector = HTTP_CreateConnector(0, user_header, flags);
  120.     CONN_TestConnector(connector, &timeout, data_file, fTC_Everything);
  121.     /* Cleanup and Exit */
  122.     CORE_SetREG(0);
  123.     fclose(data_file);
  124.     CORE_SetLOG(0);
  125.     return 0;
  126. }
  127. /*
  128.  * --------------------------------------------------------------------------
  129.  * $Log: test_ncbi_http_connector.c,v $
  130.  * Revision 1000.2  2004/04/12 17:06:48  gouriano
  131.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R6.15
  132.  *
  133.  * Revision 6.15  2004/04/01 14:14:02  lavr
  134.  * Spell "occurred", "occurrence", and "occurring"
  135.  *
  136.  * Revision 6.14  2003/11/04 12:26:06  lavr
  137.  * s_GetReg() marked with ARGSUSED, because user_data is not used in there
  138.  *
  139.  * Revision 6.13  2003/05/14 03:58:43  lavr
  140.  * Match changes in respective APIs of the tests
  141.  *
  142.  * Revision 6.12  2003/04/15 14:06:09  lavr
  143.  * Changed ray.nlm.nih.gov -> ray.ncbi.nlm.nih.gov
  144.  *
  145.  * Revision 6.11  2002/12/04 16:59:21  lavr
  146.  * Open log file in append mode
  147.  *
  148.  * Revision 6.10  2002/11/22 15:09:40  lavr
  149.  * Replace all occurrences of "ray" with "yar"
  150.  *
  151.  * Revision 6.9  2002/10/28 15:47:12  lavr
  152.  * Use "ncbi_ansi_ext.h" privately and use strncpy0()
  153.  *
  154.  * Revision 6.8  2002/03/22 19:47:16  lavr
  155.  * Test_assert.h made last among the include files
  156.  *
  157.  * Revision 6.7  2002/01/16 21:23:15  vakatov
  158.  * Utilize header "test_assert.h" to switch on ASSERTs in the Release mode too
  159.  *
  160.  * Revision 6.6  2001/01/11 16:42:50  lavr
  161.  * Registry Get/Set methods got the 'user_data' argument, forgotten earlier
  162.  *
  163.  * Revision 6.5  2001/01/08 23:48:51  lavr
  164.  * REQ_METHOD "any" added to SConnNetInfo
  165.  *
  166.  * Revision 6.4  2000/11/15 17:29:52  vakatov
  167.  * Fixed path to the test CGI application.
  168.  *
  169.  * Revision 6.3  2000/09/27 15:58:17  lavr
  170.  * Registry entries adjusted
  171.  *
  172.  * Revision 6.2  2000/05/30 23:25:03  vakatov
  173.  * Cosmetic fix for the C++ compilation
  174.  *
  175.  * Revision 6.1  2000/04/21 19:57:02  vakatov
  176.  * Initial revision
  177.  *
  178.  * ==========================================================================
  179.  */