str_test.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:10k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Test of all stringfunktions that is coded in assembler */
  14. #include <my_global.h>
  15. #include <stdarg.h>
  16. #include "m_string.h"
  17. #define F_LEN 8
  18. #define F_CHAR 'A'
  19. #define F_FILL 'B'
  20. #define T_LEN 15
  21. #define T_CHAR 'D'
  22. #define T_FILL 'E'
  23. #define F_PREFILL '0'
  24. #define T_PREFILL '1'
  25. static char from_buff[100],to_buff[100];
  26. static my_string from,to;
  27. static int errors,tests;
  28. static int test_strarg(const char *name,...);
  29. static void init_strings (void); /* Init from and to */
  30. void test_arg (const char *message,long func_value,long value);
  31. int compare_buff(const char *message,my_string b1,my_string b2,int length,
  32.   pchar fill, pchar prefill);
  33. static int my_test(int a)
  34. {
  35.   return a ? 1 : 0;
  36. }
  37. int main(void)
  38. {
  39.   static char v1[]="Monty",v2[]="on",v3[]="Montys",v4[]="ty",v5[]="gr",
  40.               v6[]="hohohoo",v7[]="hohoo",v8[]="hohooo",v9[]="t",
  41.       cont[]="qwet";
  42.   errors=tests=0;
  43.   init_strings();
  44.   test_arg("bcmp(from,to,5)",(long) my_test(bcmp(from,to,5)),1L);
  45.   test_arg("bcmp(from,from,5)",(long) bcmp(from,from,5),0L);
  46.   test_arg("bcmp(from,to,0)",(long) bcmp(from,to,0),0L);
  47.   test_arg("strend(from)",(long) strend(from),(long) from+F_LEN);
  48.   test_arg("strchr(v1,'M')",(long) strchr(v1,'M'),(long) v1);
  49.   test_arg("strchr(v1,'y')",(long) strchr(v1,'y'),(long) v1+4);
  50.   test_arg("strchr(v1,'x')",(long) strchr(v1,'x'),0L);
  51.   test_arg("strcont(v1,cont)",(long) strcont(v1,cont),(long) v1+3);
  52.   test_arg("strcont(v1,v2)",(long) strcont(v1,v2),(long) v1+1);
  53.   test_arg("strcont(v1,v5)",(long) strcont(v1,v5),0L);
  54.   test_arg("is_prefix(v3,v1)",(long) is_prefix(v3,v1),1L);
  55.   test_arg("is_prefix(v1,v3)",(long) is_prefix(v1,v3),0L);
  56.   test_arg("is_prefix(v3,v4)",(long) is_prefix(v3,v4),0L);
  57.   test_arg("strstr(v1,v1)",(long) strstr(v1,v1),(long) v1);
  58.   test_arg("strstr(v1,v2)",(long) strstr(v1,v2),(long) v1+1);
  59.   test_arg("strstr(v1,v4)",(long) strstr(v1,v4),(long) v1+3);
  60.   test_arg("strstr(v6,v7)",(long) strstr(v6,v7),(long) v6+2);
  61.   test_arg("strstr(v1,v9)",(long) strstr(v1,v9),(long) v1+3);
  62.   test_arg("strstr(v1,v3)",(long) strstr(v1,v3),0L);
  63.   test_arg("strstr(v1,v5)",(long) strstr(v1,v5),0L);
  64.   test_arg("strstr(v6,v8)",(long) strstr(v6,v8),0L);
  65.   test_arg("strinstr(v1,v4)",(long) strinstr(v1,v4),4L);
  66.   test_arg("strinstr(v1,v5)",(long) strinstr(v1,v5),0L);
  67.   test_arg("strlen(from)",(long) strlen(from),(long) F_LEN);
  68.   test_arg("strlen("")",(long) strlen(""),0L);
  69. #ifdef HAVE_STRNLEN
  70.   test_arg("strnlen(from,3)",(long) strnlen(from,3),3L);
  71.   test_arg("strnlen(from,0)",(long) strnlen(from,0),0L);
  72.   test_arg("strnlen(from,1000)",(long) strnlen(from,1000),(long) F_LEN);
  73. #endif
  74.   test_strarg("bfill(to,4,' ')",(bfill(to,4,' '),0L),INT_MAX32,4,' ',0,0);
  75.   test_strarg("bfill(from,0,' ')",(bfill(from,0,' '),0L),INT_MAX32,0,0);
  76.   test_strarg("bzero(to,3)",(bzero(to,3),0L),INT_MAX32,3,0,0,0);
  77.   test_strarg("bzero(to,0)",(bzero(to,0),0L),INT_MAX32,0,0);
  78.   test_strarg("bmove(to,from,4)",(bmove(to,from,4),0L),INT_MAX32,4,F_CHAR,
  79.       0,0);
  80.   test_strarg("bmove(to,from,0)",(bmove(to,from,0),0L),INT_MAX32,0,0);
  81.   test_strarg("bmove_upp(to+6,from+6,3)",(bmove_upp(to+6,from+6,3),0L),INT_MAX32,
  82.        3,T_CHAR,3,F_CHAR,0,0);
  83.   test_strarg("bmove_upp(to,from,0)",(bmove_upp(to,from,0),0L),INT_MAX32,0,0);
  84.   test_strarg("bmove_align(to,from,8)",(bmove_align(to,from,8),0L),INT_MAX32,
  85.       8,F_CHAR,0,0);
  86.   test_strarg("strappend(to,3,' ')",(strappend(to,3,' '),0L),INT_MAX32,
  87.       3,T_CHAR,1,0,T_LEN-4,T_CHAR,1,0,0,0);
  88.   test_strarg("strappend(to,T_LEN+5,' ')",(strappend(to,T_LEN+5,' '),0L),INT_MAX32,
  89.        T_LEN,T_CHAR,5,' ',1,0,0,0);
  90.   test_strarg("strcat(to,from)",strcat(to,from),to,T_LEN,T_CHAR,
  91.       F_LEN,F_CHAR,1,0,0,0);
  92.   test_strarg("strcat(to,"")",strcat(to,""),INT_MAX32,0,0);
  93.   test_strarg("strfill(to,4,' ')",strfill(to,4,' '),to+4,4,' ',1,0,0,0);
  94.   test_strarg("strfill(from,0,' ')",strfill(from,0,' '),from,0,1,0,0);
  95.   test_strarg("strmake(to,from,4)",strmake(to,from,4),to+4,4,F_CHAR,
  96.       1,0,0,0);
  97.   test_strarg("strmake(to,from,0)",strmake(to,from,0),to+0,1,0,0,0);
  98.   test_strarg("strmov(to,from)",strmov(to,from),to+F_LEN,F_LEN,F_CHAR,0,0);
  99.   test_strarg("strmov(to,"")",strmov(to,""),to,1,0,0,0);
  100.   test_strarg("strnmov(to,from,2)",strnmov(to,from,2),to+2,2,F_CHAR,0,0);
  101.   test_strarg("strnmov(to,from,F_LEN+5)",strnmov(to,from,F_LEN+5),to+F_LEN,
  102.        F_LEN,F_CHAR,1,0,0,0);
  103.   test_strarg("strnmov(to,"",2)",strnmov(to,"",2),to,1,0,0,0);
  104.   test_strarg("strxmov(to,from,"!!",NullS)",strxmov(to,from,"!!",NullS),to+F_LEN+2,F_LEN,F_CHAR,2,'!',0,0,0);
  105.   test_strarg("strxmov(to,NullS)",strxmov(to,NullS),to,1,0,0,0);
  106.   test_strarg("strxmov(to,from,from,from,from,from,'!!',from,NullS)",strxmov(to,from,from,from,from,from,"!!",from,NullS),to+F_LEN*6+2,F_LEN,F_CHAR,F_LEN,F_CHAR,F_LEN,F_CHAR,F_LEN,F_CHAR,F_LEN,F_CHAR,2,'!',F_LEN,F_CHAR,1,0,0,0);
  107.   test_strarg("strxnmov(to,100,from,"!!",NullS)",strxnmov(to,100,from,"!!",NullS),to+F_LEN+2,F_LEN,F_CHAR,2,'!',0,0,0);
  108.   test_strarg("strxnmov(to,2,NullS)",strxnmov(to,2,NullS),to,1,0,0,0);
  109.   test_strarg("strxnmov(to,100,from,from,from,from,from,'!!',from,NullS)",strxnmov(to,100,from,from,from,from,from,"!!",from,NullS),to+F_LEN*6+2,F_LEN,F_CHAR,F_LEN,F_CHAR,F_LEN,F_CHAR,F_LEN,F_CHAR,F_LEN,F_CHAR,2,'!',F_LEN,F_CHAR,1,0,0,0);
  110.   test_strarg("strxnmov(to,2,"!!!",NullS)",strxnmov(to,2,"!!!",NullS),to+2,2,'!',0,0,0);
  111.   test_strarg("strxnmov(to,2,"!!",NullS)",strxnmov(to,2,"!!","xx",NullS),to+2,2,'!',0,0,0);
  112.   test_strarg("strxnmov(to,2,"!","x","y",NullS)",strxnmov(to,2,"!","x","y",NullS),to+2,1,'!',1,'x',0,0,0);
  113.   test_strarg("bchange(to,2,from,4,6)",(bchange(to,2,from,4,6),0L),INT_MAX32,
  114.       4,F_CHAR,2,T_CHAR,0,0);
  115.   printf("tests: %d  errors: %dn",tests,errors);
  116.   if (errors)
  117.     fputs("--- Some functions doesn't work!! Fix themn",stderr);
  118.   return(errors > 0);
  119. } /* main */
  120. /* Init strings */
  121. void init_strings(void)
  122. {
  123.   reg1 int i;
  124.   reg2 char *pos;
  125.   from=from_buff+3; to=to_buff+3;
  126.   pos=from_buff; *pos++= F_FILL; *pos++=F_FILL; *pos++=F_PREFILL;
  127.   for (i=0 ; i < F_LEN ; i++)
  128.     *pos++=F_CHAR;
  129.   *pos++=0;
  130.   for (i=0; i<50 ; i++)
  131.     *pos++= F_FILL;
  132.   pos=to_buff; *pos++= T_FILL; *pos++=T_FILL; *pos++=T_PREFILL;
  133.   for (i=0 ; i < T_LEN ; i++)
  134.     *pos++=T_CHAR;
  135.   *pos++=0;
  136.   for (i=0; i<50 ; i++)
  137.     *pos++= T_FILL;
  138. } /* init_strings */
  139. /* Test that function return rigth value */
  140. void test_arg(const char *message, long int func_value, long int value)
  141. {
  142.   tests++;
  143.   printf("testing '%s'n",message);
  144.   if (func_value != value)
  145.   {
  146.     printf("func: '%s' = %ld   Should be: %ldn",message,func_value,value);
  147.     errors++;
  148.   }
  149. } /* test_arg */
  150. /* Test function return value and from and to arrays */
  151. static int test_strarg(const char *message,...)
  152. {
  153.   long func_value,value;
  154.   int error,length;
  155.   char chr,cmp_buff[100],*pos,*pos2;
  156.   va_list pvar;
  157.   tests++;
  158.   va_start(pvar,message);
  159.   func_value=va_arg(pvar,long);
  160.   value=va_arg(pvar,long);
  161.   printf("testing '%s'n",message);
  162.   if (func_value != value && value != INT_MAX32)
  163.   {
  164.     printf("func: '%s' = %ld   Should be: %ldn",message,func_value,value);
  165.     errors++;
  166.   }
  167.   pos= cmp_buff;
  168.   while ((length = va_arg(pvar, int)) != 0)
  169.   {
  170.     chr= (char) (va_arg(pvar, int));
  171.     while (length--)
  172.       *pos++=chr;
  173.   }
  174.   pos2=to+ (int)(pos-cmp_buff);
  175.   while (pos <= cmp_buff+T_LEN)
  176.     *pos++= *pos2++;
  177.   if (compare_buff(message,to,cmp_buff,(int) (pos-cmp_buff),T_FILL,T_PREFILL))
  178.   {
  179.     init_strings();
  180.     va_end(pvar);
  181.     return 1;
  182.   }
  183.   pos= cmp_buff;
  184.   while ((length = va_arg(pvar, int)) != 0)
  185.   {
  186.     chr= (char) (va_arg(pvar, int));
  187.     while (length--)
  188.       *pos++=chr;
  189.   }
  190.   pos2=from+ (int)(pos-cmp_buff);
  191.   while (pos <= cmp_buff+F_LEN)
  192.     *pos++= *pos2++;
  193.   error=compare_buff(message,from,cmp_buff,(int) (pos-cmp_buff),F_FILL,F_PREFILL);
  194.   init_strings();
  195.   va_end(pvar);
  196.   return (error != 0);
  197. } /* test_strarg */
  198. /* test if function made right value */
  199. int compare_buff(const char *message, my_string b1, my_string b2, int length,
  200.  pchar fill, pchar prefill)
  201. {
  202.   int i,error=0;
  203.   if (bcmp(b1,b2,length))
  204.   {
  205.     errors++;
  206.     printf("func: '%s'   Buffers differnIs:        ",message);
  207.     for (i=0 ; i<length ; i++)
  208.       printf("%3d ",b1[i]);
  209.     printf("nShould be: ");
  210.     for (i=0 ; i<length ; i++)
  211.       printf("%3d ",b2[i]);
  212.     puts("");
  213.   }
  214.   else if (b1[-1] != prefill || b1[-2] != fill || b1[-3] != fill)
  215.   {
  216.     printf("func: '%s'   Chars before buffer is changedn",message);
  217.     errors++;
  218.     error=1;
  219.   }
  220.   else if (b1[length] != fill || b1[length+1] != fill)
  221.   {
  222.     printf("func: '%s'   Chars after buffer is changedn",message);
  223.     errors++;
  224.     error=1;
  225.   }
  226.   return error;
  227. } /* compare_buff */
  228. /* These are here to be loaded and examined */
  229. extern void dummy_functions(void);
  230. void dummy_functions(void)
  231. {
  232.   VOID(memchr(from,'a',5));
  233.   VOID(memcmp(from,to,5));
  234.   VOID(memcpy(from,to,5));
  235.   VOID(memset(from,' ',5));
  236.   VOID(strcmp(from,to));
  237.   VOID(strcpy(from,to));
  238.   VOID(strstr(from,to));
  239.   VOID(strrchr(from,'a'));
  240.   return;
  241. }