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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbi_sendmail.c,v $
  4.  * PRODUCTION Revision 1000.1  2004/02/12 21:56:55  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_001] Dev-tree R6.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbi_sendmail.c,v 1000.1 2004/02/12 21:56:55 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.  *   Simple test for CORE_Sendmail
  38.  *
  39.  */
  40. #include "../ncbi_priv.h"               /* CORE logging facilities */
  41. #include <connect/ncbi_sendmail.h>
  42. #include <stdlib.h>
  43. #include <string.h>
  44. #include <time.h>
  45. /* This header must go last */
  46. #include "test_assert.h"
  47. #define TEST_HUGE_BODY_SIZE     (1024*100)
  48. int main(void)
  49. {
  50.     const char custom_body[] =
  51.         "Subject: Custom sized bodyn"
  52.         "n"
  53.         "Custom sized bodyn"
  54.         "0123456789n"; /* these 11 chars to ignore */
  55.     const char* body[] = {
  56.         "This is a simple test",
  57.         "This is a test withn.",
  58.         0,
  59.         ".",
  60.         "n.n",
  61.         ".n",
  62.         "",
  63.         "anbncndn.",
  64.         ".na"
  65.     };
  66.     const char* subject[] = {
  67.         0,
  68.         "CORE_SendMail Test",
  69.         "",
  70.     };
  71.     const char* to[] = {
  72.         "lavr",
  73.         "lavr@pavo",
  74.         " "Anton Lavrentiev"   <lavr@pavo>  , lavr, <lavr>   ",
  75.     };
  76.     size_t i, j, k, n, m;
  77.     const char* mx_host;
  78.     SSendMailInfo info;
  79.     const char* retval;
  80.     STimeout mx_tmo;
  81.     char* huge_body;
  82.     short mx_port;
  83.     FILE *fp;
  84.     CORE_SetLOGFormatFlags(fLOG_None          | fLOG_Level   |
  85.                            fLOG_OmitNoteLevel | fLOG_DateTime);
  86.     CORE_SetLOGFILE(stderr, 0/*false*/);
  87.     srand(time(0));
  88.     CORE_LOG(eLOG_Note, "Phase 1 of 2: Testing CORE_SendMail");
  89.     n = (sizeof(to)/sizeof(to[0]))*
  90.         (sizeof(subject)/sizeof(subject[0]))*
  91.         (sizeof(body)/sizeof(body[0]));
  92.     m = 0;
  93.     for (i = 0; i < sizeof(to)/sizeof(to[0]); i++) {
  94.         for (j = 0; j < sizeof(subject)/sizeof(subject[0]); j++)
  95.             for (k = 0; k < sizeof(body)/sizeof(body[0]); k++) {
  96.                 CORE_LOGF(eLOG_Note, ("Test %u of %u",
  97.                                       (unsigned)(++m), (unsigned)n));
  98.                 retval = CORE_SendMail(to[i], subject[j], body[k]);
  99.                 if (retval != 0)
  100.                     CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  101.             }
  102.     }
  103.     CORE_LOG(eLOG_Note, "Phase 2 of 2: Testing CORE_SendMailEx");
  104.     SendMailInfo_Init(&info);
  105.     mx_host = info.mx_host;
  106.     mx_port = info.mx_port;
  107.     mx_tmo  = info.mx_timeout;
  108.     info.mx_host = "localhost";
  109.     CORE_LOG(eLOG_Note, "Testing bad port");
  110.     info.mx_port = 10;
  111.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", "Test", &info);
  112.     if (!retval)
  113.         CORE_LOG(eLOG_Fatal, "Test failed");
  114.     CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  115.     CORE_LOG(eLOG_Note, "Testing bad protocol");
  116.     info.mx_port = 21;
  117.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", "Test", &info);
  118.     if (!retval)
  119.         CORE_LOG(eLOG_Fatal, "Test failed");
  120.     CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  121.     CORE_LOG(eLOG_Note, "Testing timeout");
  122.     info.mx_host = "www.ncbi.nlm.nih.gov";
  123.     info.mx_timeout.sec = 5;
  124.     info.mx_port = 80;
  125.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", "Test", &info);
  126.     if (!retval)
  127.         CORE_LOG(eLOG_Error, "Test failed");
  128.     else
  129.         CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  130.     info.mx_port = mx_port;
  131.     info.mx_timeout = mx_tmo;
  132.     CORE_LOG(eLOG_Note, "Testing bad host");
  133.     info.mx_host = "abrakadabra";
  134.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", "Test", &info);
  135.     if (!retval)
  136.         CORE_LOG(eLOG_Fatal, "Test failed");
  137.     CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  138.     info.mx_host = "localhost";
  139.     CORE_LOG(eLOG_Note, "Testing cc");
  140.     info.cc = "vakatov";
  141.     retval = CORE_SendMailEx("", "CORE_SendMailEx Test", "Test", &info);
  142.     if (retval)
  143.         CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  144.     CORE_LOG(eLOG_Note, "Test passed");
  145.     CORE_LOG(eLOG_Note, "Testing bcc");
  146.     info.cc = 0;
  147.     info.bcc = "vakatov";
  148.     retval = CORE_SendMailEx(0, "CORE_SendMailEx Test", "Test", &info);
  149.     if (retval)
  150.         CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  151.     CORE_LOG(eLOG_Note, "Test passed");
  152.     CORE_LOG(eLOG_Note, "Testing huge body");
  153.     info.cc = 0;
  154.     info.bcc = 0;
  155.     if (!(huge_body = (char*) malloc(TEST_HUGE_BODY_SIZE)))
  156.         CORE_LOG(eLOG_Fatal, "Test failed: Cannot allocate memory");
  157.     for (i = 0; i < TEST_HUGE_BODY_SIZE - 1; i++)
  158.         huge_body[i] = "0123456789nABCDEFGHIJKLMNOPQRSTUVWXYZ ."[rand() % 39];
  159.     huge_body[i] = 0;
  160.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", huge_body, &info);
  161.     if (retval)
  162.         CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  163.     if (!(fp = fopen("test_ncbi_sendmail.out", "w")) ||
  164.         fwrite(huge_body, TEST_HUGE_BODY_SIZE - 1, 1, fp) != 1) {
  165.         CORE_LOG(eLOG_Error, "Test failed: Cannot store huge body to file");
  166.     } else {
  167.         fclose(fp);
  168.         CORE_LOG(eLOG_Note, "Success: Check test_ncbi_sendmail.out");
  169.     }
  170.     free(huge_body);
  171.     CORE_LOG(eLOG_Note, "Testing custom headers");
  172.     info.header = "Organization: NCBI/NLM/NIHnReference: abcdefghijk";
  173.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test",
  174.                              "Custom header test", &info);
  175.     if (retval)
  176.         CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  177.     CORE_LOG(eLOG_Note, "Test passed");
  178.     CORE_LOG(eLOG_Note, "Testing no recipients");
  179.     retval = CORE_SendMailEx(0, "CORE_SendMailEx Test", "Test", &info);
  180.     if (!retval)
  181.         CORE_LOG(eLOG_Fatal, "Test failed");
  182.     CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  183.     CORE_LOG(eLOG_Note, "Testing AS-IS message");
  184.     info.mx_no_header = 1/*true*/;
  185.     retval = CORE_SendMailEx("lavr",
  186.                              "BAD SUBJECT SHOULD NOT APPEAR BUT IGNORED",
  187.                              "From: yourselfn"
  188.                              "To: yourselfn"
  189.                              "Subject: AS-IS messagen"
  190.                              "n"
  191.                              "AS-IS",
  192.                              &info);
  193.     if (retval)
  194.         CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  195.     CORE_LOG(eLOG_Note, "Test passed");
  196.     CORE_LOG(eLOG_Note, "Testing AS-IS custom sized message");
  197.     info.body_size = strlen(custom_body) - 11/*to ignore*/;
  198.     retval = CORE_SendMailEx("<lavr@pavo>",
  199.                              "BAD SUBJECT SHOULD NOT APPEAR BUT IGNORED",
  200.                              custom_body,
  201.                              &info);
  202.     if (retval)
  203.         CORE_LOGF(eLOG_Fatal, ("Test failed: %s", retval));
  204.     CORE_LOG(eLOG_Note, "Test passed");
  205.     info.body_size = 0;
  206.     info.mx_no_header = 0;
  207.     info.mx_host = mx_host;
  208.     CORE_LOG(eLOG_Note, "Testing bad from");
  209.     strcpy(info.from, "blahblah@blahblah");
  210.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", "Test", &info);
  211.     if (!retval)
  212.         CORE_LOG(eLOG_Error, "Test failed");
  213.     else
  214.         CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  215.     CORE_LOG(eLOG_Note, "Testing bad magic");
  216.     info.magic_number = 0;
  217.     retval = CORE_SendMailEx("lavr", "CORE_SendMailEx Test", "Test", &info);
  218.     if (!retval)
  219.         CORE_LOG(eLOG_Fatal, "Test failed");
  220.     CORE_LOGF(eLOG_Note, ("Test passed: %s", retval));
  221.     CORE_LOG(eLOG_Note, "Test completed");
  222.     return 0;
  223. }
  224. /*
  225.  * --------------------------------------------------------------------------
  226.  * $Log: test_ncbi_sendmail.c,v $
  227.  * Revision 1000.1  2004/02/12 21:56:55  gouriano
  228.  * PRODUCTION: UPGRADED [CORE_001] Dev-tree R6.11
  229.  *
  230.  * Revision 6.11  2003/12/09 15:39:30  lavr
  231.  * Added new test of custom-sized message body
  232.  *
  233.  * Revision 6.10  2003/12/05 18:39:35  lavr
  234.  * Test multiple recipients and as-is message
  235.  *
  236.  * Revision 6.9  2003/05/14 03:58:43  lavr
  237.  * Match changes in respective APIs of the tests
  238.  *
  239.  * Revision 6.8  2002/09/12 16:53:50  lavr
  240.  * Do not write '' into test file; log moved to end
  241.  *
  242.  * Revision 6.7  2002/04/15 19:21:45  lavr
  243.  * +#include "../test/test_assert.h"
  244.  *
  245.  * Revision 6.6  2002/03/22 19:48:58  lavr
  246.  * Removed <stdio.h>: included from ncbi_util.h or ncbi_priv.h
  247.  *
  248.  * Revision 6.5  2001/03/07 20:49:29  lavr
  249.  * Forgotten #include <string.h> added
  250.  *
  251.  * Revision 6.4  2001/03/06 04:32:31  lavr
  252.  * Custom header test added
  253.  *
  254.  * Revision 6.3  2001/03/02 20:01:53  lavr
  255.  * "../ncbi_priv.h" explained
  256.  *
  257.  * Revision 6.2  2001/02/28 17:48:07  lavr
  258.  * Huge body test added
  259.  *
  260.  * Revision 6.1  2001/02/28 00:53:45  lavr
  261.  * Initial revision
  262.  *
  263.  * ==========================================================================
  264.  */