mysql_test_run.c 35 KB
Newer Older
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1 2 3 4 5 6 7 8 9
/*
  Copyright (c) 2002, 2003 Novell, Inc. All Rights Reserved. 

  This program is free software; you can redistribute it and/or modify 
  it under the terms of the GNU General Public License as published by 
  the Free Software Foundation; either version 2 of the License, or 
  (at your option) any later version. 

  This program is distributed in the hope that it will be useful, 
10
  but WITHOUT ANY WARRANTY; without even the implied warranty of
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
11 12 13 14 15 16 17 18
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
  GNU General Public License for more details. 

  You should have received a copy of the GNU General Public License 
  along with this program; if not, write to the Free Software 
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ 

19 20
#include <my_global.h>
#include <m_string.h>
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
21 22 23 24 25
#include <dirent.h>
#include <screen.h>
#include <nks/vm.h>
#include <ctype.h>
#include <sys/stat.h>
26
#include <sys/mode.h>
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
27
#include "my_manage.h"
28 29
#ifdef __NETWARE__
#define strindex(a,b) ((char*)strindex(a,b))
30
#define strstr(a,b)   ((char*)strstr(a,b))
31 32
#endif

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
/******************************************************************************

  macros
  
******************************************************************************/

#define HEADER  "TEST                                           ELAPSED      RESULT      \n"
#define DASH    "------------------------------------------------------------------------\n"

#define NW_TEST_SUFFIX    ".nw-test"
#define NW_RESULT_SUFFIX  ".nw-result"
#define TEST_SUFFIX		    ".test"
#define RESULT_SUFFIX	    ".result"
#define REJECT_SUFFIX	    ".reject"
#define OUT_SUFFIX		    ".out"
#define ERR_SUFFIX		    ".err"

#define TEST_PASS		"[ pass ]"
#define TEST_SKIP		"[ skip ]"
#define TEST_FAIL		"[ fail ]"
#define TEST_BAD		"[ bad  ]"
monty@mysql.com's avatar
monty@mysql.com committed
54
#define TEST_IGNORE		"[ignore]"
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

/******************************************************************************

  global variables
  
******************************************************************************/

char base_dir[PATH_MAX]   = "sys:/mysql";
char db[PATH_MAX]         = "test";
char user[PATH_MAX]       = "root";
char password[PATH_MAX]   = "";

int master_port           = 9306;
int slave_port            = 9307;

// comma delimited list of tests to skip or empty string
monty@mysql.com's avatar
monty@mysql.com committed
71 72
char skip_test[PATH_MAX]  = " lowercase_table3 , system_mysql_db_fix ";
char ignore_test[PATH_MAX]  = "";
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

char bin_dir[PATH_MAX];
char mysql_test_dir[PATH_MAX];
char test_dir[PATH_MAX];
char mysql_tmp_dir[PATH_MAX];
char result_dir[PATH_MAX];
char master_dir[PATH_MAX];
char slave_dir[PATH_MAX];
char lang_dir[PATH_MAX];
char char_dir[PATH_MAX];

char mysqladmin_file[PATH_MAX];
char mysqld_file[PATH_MAX];
char mysqltest_file[PATH_MAX];
char master_pid[PATH_MAX];
char slave_pid[PATH_MAX];

char master_opt[PATH_MAX] = "";
char slave_opt[PATH_MAX]  = "";

char slave_master_info[PATH_MAX]  = "";

char master_init_script[PATH_MAX]  = "";
char slave_init_script[PATH_MAX]  = "";

98 99 100 101 102 103 104
// OpenSSL
char ca_cert[PATH_MAX];
char server_cert[PATH_MAX];
char server_key[PATH_MAX];
char client_cert[PATH_MAX];
char client_key[PATH_MAX];

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
105 106 107 108 109
int total_skip    = 0;
int total_pass    = 0;
int total_fail    = 0;
int total_test    = 0;

monty@mysql.com's avatar
monty@mysql.com committed
110
int total_ignore  = 0;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
111 112
double total_time = 0;

113
int use_openssl     = FALSE;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
int master_running  = FALSE;
int slave_running   = FALSE;
int skip_slave      = TRUE;
int single_test     = TRUE;

int restarts  = 0;

FILE *log_fd  = NULL;

/******************************************************************************

  functions
  
******************************************************************************/

/******************************************************************************

  prototypes
  
******************************************************************************/

void report_stats();
void install_db(char *);
void mysql_install_db();
void start_master();
void start_slave();
void mysql_start();
void stop_slave();
void stop_master();
void mysql_stop();
void mysql_restart();
int read_option(char *, char *);
void run_test(char *);
void setup(char *);
void vlog(char *, va_list);
monty@mysql.com's avatar
monty@mysql.com committed
149
void log_msg(char *, ...);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
150 151 152 153
void log_info(char *, ...);
void log_error(char *, ...);
void log_errno(char *, ...);
void die(char *);
154
char *str_tok(char *string, const char *delim);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
155 156 157 158 159 160 161 162 163 164 165 166

/******************************************************************************

  report_stats()
  
  Report the gathered statistics.

******************************************************************************/
void report_stats()
{
  if (total_fail == 0)
  {
monty@mysql.com's avatar
monty@mysql.com committed
167
    log_msg("\nAll %d test(s) were successful.\n", total_test);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
168 169 170 171 172
  }
  else
  {
    double percent = ((double)total_pass / total_test) * 100;
    
monty@mysql.com's avatar
monty@mysql.com committed
173
    log_msg("\nFailed %u/%u test(s), %.02f%% successful.\n",
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
174
      total_fail, total_test, percent);
monty@mysql.com's avatar
monty@mysql.com committed
175
		log_msg("\nThe .out and .err files in %s may give you some\n", result_dir);
176
		log_msg("hint of what went wrong.\n");
monty@mysql.com's avatar
monty@mysql.com committed
177
		log_msg("\nIf you want to report this error, please first read the documentation\n");
178
		log_msg("at: http://www.mysql.com/doc/en/MySQL_test_suite.html\n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
179 180
  }

monty@mysql.com's avatar
monty@mysql.com committed
181
  log_msg("\n%.02f total minutes elapsed in the test cases\n\n", total_time / 60);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
182 183 184 185 186 187 188 189 190 191 192
}

/******************************************************************************

  install_db()
  
  Install the a database.

******************************************************************************/
void install_db(char *datadir)
{
193
  arg_list_t al;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
194 195 196 197
  int err, i;
  char input[PATH_MAX];
  char output[PATH_MAX];
  char error[PATH_MAX];
198

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
199
  // input file
200
  snprintf(input, PATH_MAX, "%s/bin/test_db.sql", base_dir);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
201 202 203 204
  snprintf(output, PATH_MAX, "%s/install.out", datadir);
  snprintf(error, PATH_MAX, "%s/install.err", datadir);
  
  // args
205 206
  init_args(&al);
  add_arg(&al, mysqld_file);
207
  add_arg(&al, "--no-defaults");
208 209 210 211 212 213
  add_arg(&al, "--bootstrap");
  add_arg(&al, "--skip-grant-tables");
  add_arg(&al, "--basedir=%s", base_dir);
  add_arg(&al, "--datadir=%s", datadir);
  add_arg(&al, "--skip-innodb");
  add_arg(&al, "--skip-bdb");
214

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
215
  // spawn
216
  if ((err = spawn(mysqld_file, &al, TRUE, input, output, error)) != 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
217 218 219 220 221
  {
    die("Unable to create database.");
  }
  
  // free args
222
  free_args(&al);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
}

/******************************************************************************

  mysql_install_db()
  
  Install the test databases.

******************************************************************************/
void mysql_install_db()
{
  char temp[PATH_MAX];
  
  // var directory
  snprintf(temp, PATH_MAX, "%s/var", mysql_test_dir);
  
  // clean up old direcotry
  del_tree(temp);
  
  // create var directory
  mkdir(temp, S_IRWXU);
  
  // create subdirectories
monty@mysql.com's avatar
monty@mysql.com committed
246
  log_msg("Creating test-suite folders...\n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
  snprintf(temp, PATH_MAX, "%s/var/run", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/tmp", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/master-data", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/master-data/mysql", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/master-data/test", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/slave-data", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/slave-data/mysql", mysql_test_dir);
  mkdir(temp, S_IRWXU);
  snprintf(temp, PATH_MAX, "%s/var/slave-data/test", mysql_test_dir);
  mkdir(temp, S_IRWXU);

  // install databases
monty@mysql.com's avatar
monty@mysql.com committed
265
  log_msg("Creating test databases for master... \n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
266
  install_db(master_dir);
monty@mysql.com's avatar
monty@mysql.com committed
267
  log_msg("Creating test databases for slave... \n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
268 269 270 271 272 273 274 275 276 277 278 279
  install_db(slave_dir);
}

/******************************************************************************

  start_master()
  
  Start the master server.

******************************************************************************/
void start_master()
{
280
  arg_list_t al;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
281 282 283
  int err, i;
  char master_out[PATH_MAX];
  char master_err[PATH_MAX];
284 285
  char temp[PATH_MAX], temp2[PATH_MAX];

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
286 287
  // remove old berkeley db log files that can confuse the server
  removef("%s/log.*", master_dir);
288

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
289
  // remove stale binary logs
290
  removef("%s/var/log/*-bin.*", mysql_test_dir);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
291 292

  // remove stale binary logs
293
  removef("%s/var/log/*.index", mysql_test_dir);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
294 295 296 297 298 299 300 301 302

  // remove master.info file
  removef("%s/master.info", master_dir);

  // remove relay files
  removef("%s/var/log/*relay*", mysql_test_dir);

  // remove relay-log.info file
  removef("%s/relay-log.info", master_dir);
303

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
304 305 306 307
  // init script
  if (master_init_script[0] != NULL)
  {
    // run_init_script(master_init_script);
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322

    // TODO: use the scripts
    if (strindex(master_init_script, "repair_part2-master.sh") != NULL)
    {
      FILE *fp;

      // create an empty index file
      snprintf(temp, PATH_MAX, "%s/test/t1.MYI", master_dir);
      fp = fopen(temp, "wb+");

      fputs("1", fp);

      fclose(fp);
    }

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
323 324 325 326 327 328 329
  }

  // redirection files
  snprintf(master_out, PATH_MAX, "%s/var/run/master%u.out",
           mysql_test_dir, restarts);
  snprintf(master_err, PATH_MAX, "%s/var/run/master%u.err",
           mysql_test_dir, restarts);
330 331 332 333 334 335

  snprintf(temp2,PATH_MAX,"%s/var",mysql_test_dir);
  mkdir(temp2,0);
  snprintf(temp2,PATH_MAX,"%s/var/log",mysql_test_dir);
  mkdir(temp2,0);

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
336
  // args
337 338 339
  init_args(&al);
  add_arg(&al, "%s", mysqld_file);
  add_arg(&al, "--no-defaults");
340
  add_arg(&al, "--log-bin=%s/var/log/master-bin",mysql_test_dir);
341 342 343 344 345 346 347 348 349 350
  add_arg(&al, "--server-id=1");
  add_arg(&al, "--basedir=%s", base_dir);
  add_arg(&al, "--port=%u", master_port);
  add_arg(&al, "--local-infile");
  add_arg(&al, "--core");
  add_arg(&al, "--datadir=%s", master_dir);
  add_arg(&al, "--pid-file=%s", master_pid);
  add_arg(&al, "--character-sets-dir=%s", char_dir);
  add_arg(&al, "--tmpdir=%s", mysql_tmp_dir);
  add_arg(&al, "--language=%s", lang_dir);
351
  add_arg(&al, "--log-bin-trust-routine-creators");
352 353 354
#ifdef DEBUG	//only for debug builds
  add_arg(&al, "--debug");
#endif
355 356 357 358 359 360 361 362

  if (use_openssl)
  {
    add_arg(&al, "--ssl-ca=%s", ca_cert);
    add_arg(&al, "--ssl-cert=%s", server_cert);
    add_arg(&al, "--ssl-key=%s", server_key);
  }

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
363
  // $MASTER_40_ARGS
364 365
  add_arg(&al, "--rpl-recovery-rank=1");
  add_arg(&al, "--init-rpl-role=master");
366

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
367
  // $SMALL_SERVER
368 369 370 371 372 373
  add_arg(&al, "-O");
  add_arg(&al, "key_buffer_size=1M");
  add_arg(&al, "-O");
  add_arg(&al, "sort_buffer=256K");
  add_arg(&al, "-O");
  add_arg(&al, "max_heap_table_size=1M");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
374 375 376 377 378 379

  // $EXTRA_MASTER_OPT
  if (master_opt[0] != NULL)
  {
    char *p;

380 381
    p = (char *)str_tok(master_opt, " \t");
    if (!strstr(master_opt, "timezone"))
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
382
    {
383
      while (p)
384 385
      {
        add_arg(&al, "%s", p);
386
        p = (char *)str_tok(NULL, " \t");
387 388
      }
    }
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
389
  }
390

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
391 392 393 394
  // remove the pid file if it exists
  remove(master_pid);

  // spawn
395
  if ((err= spawn(mysqld_file, &al, FALSE, NULL, master_out, master_err)) == 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
396 397
  {
    sleep_until_file_exists(master_pid);
398

399 400
	if ((err = wait_for_server_start(bin_dir, user, password, master_port,
                                         mysql_tmp_dir)) == 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
401 402 403 404 405 406 407 408 409 410 411 412
    {
      master_running = TRUE;
    }
    else
    {
	  log_error("The master server went down early.");
    }
  }
  else
  {
    log_error("Unable to start master server.");
  }
413

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
414
  // free_args
415
  free_args(&al);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
416 417 418 419 420 421 422 423 424 425 426
}

/******************************************************************************

  start_slave()
  
  Start the slave server.

******************************************************************************/
void start_slave()
{
427
  arg_list_t al;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
  int err, i;
  char slave_out[PATH_MAX];
  char slave_err[PATH_MAX];
  char temp[PATH_MAX];
  
  // skip?
  if (skip_slave) return;

  // remove stale binary logs
  removef("%s/*-bin.*", slave_dir);

  // remove stale binary logs
  removef("%s/*.index", slave_dir);

  // remove master.info file
  removef("%s/master.info", slave_dir);

  // remove relay files
  removef("%s/var/log/*relay*", mysql_test_dir);

  // remove relay-log.info file
  removef("%s/relay-log.info", slave_dir);

  // init script
  if (slave_init_script[0] != NULL)
  {
    // run_init_script(slave_init_script);
    
    // TODO: use the scripts
    if (strindex(slave_init_script, "rpl000016-slave.sh") != NULL)
    {
      // create empty master.info file
      snprintf(temp, PATH_MAX, "%s/master.info", slave_dir);
461
      close(open(temp, O_WRONLY | O_CREAT,S_IRWXU|S_IRWXG|S_IRWXO));
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
462 463 464 465 466 467 468 469 470
    }
    else if (strindex(slave_init_script, "rpl000017-slave.sh") != NULL)
    {
      FILE *fp;
      
      // create a master.info file
      snprintf(temp, PATH_MAX, "%s/master.info", slave_dir);
      fp = fopen(temp, "wb+");
      
471
      fputs("master-bin.000001\n", fp);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
472 473 474
      fputs("4\n", fp);
      fputs("127.0.0.1\n", fp);
      fputs("replicate\n", fp);
475
      fputs("aaaaaaaaaaaaaaab\n", fp);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
476 477 478 479 480 481 482 483 484 485
      fputs("9306\n", fp);
      fputs("1\n", fp);
      fputs("0\n", fp);

      fclose(fp);
    }
    else if (strindex(slave_init_script, "rpl_rotate_logs-slave.sh") != NULL)
    {
      // create empty master.info file
      snprintf(temp, PATH_MAX, "%s/master.info", slave_dir);
486
      close(open(temp, O_WRONLY | O_CREAT,S_IRWXU|S_IRWXG|S_IRWXO));
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
487 488 489 490 491 492 493 494 495 496
    }
  }

  // redirection files
  snprintf(slave_out, PATH_MAX, "%s/var/run/slave%u.out",
           mysql_test_dir, restarts);
  snprintf(slave_err, PATH_MAX, "%s/var/run/slave%u.err",
           mysql_test_dir, restarts);
  
  // args
497 498 499 500 501 502 503 504 505 506 507 508 509
  init_args(&al);
  add_arg(&al, "%s", mysqld_file);
  add_arg(&al, "--no-defaults");
  add_arg(&al, "--log-bin=slave-bin");
  add_arg(&al, "--relay_log=slave-relay-bin");
  add_arg(&al, "--basedir=%s", base_dir);
  add_arg(&al, "--port=%u", slave_port);
  add_arg(&al, "--datadir=%s", slave_dir);
  add_arg(&al, "--pid-file=%s", slave_pid);
  add_arg(&al, "--character-sets-dir=%s", char_dir);
  add_arg(&al, "--core");
  add_arg(&al, "--tmpdir=%s", mysql_tmp_dir);
  add_arg(&al, "--language=%s", lang_dir);
510

511 512 513 514 515 516 517 518 519 520 521 522 523 524
  add_arg(&al, "--exit-info=256");
  add_arg(&al, "--log-slave-updates");
  add_arg(&al, "--init-rpl-role=slave");
  add_arg(&al, "--skip-innodb");
  add_arg(&al, "--skip-slave-start");
  add_arg(&al, "--slave-load-tmpdir=../../var/tmp");
  
  add_arg(&al, "--report-user=%s", user);
	add_arg(&al, "--report-host=127.0.0.1");
  add_arg(&al, "--report-port=%u", slave_port);

  add_arg(&al, "--master-retry-count=10");
  add_arg(&al, "-O");
  add_arg(&al, "slave_net_timeout=10");
525
  add_arg(&al, "--log-bin-trust-routine-creators");
526 527 528
#ifdef DEBUG	//only for debug builds
  add_arg(&al, "--debug");
#endif
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
529

530 531 532 533 534 535 536
  if (use_openssl)
  {
    add_arg(&al, "--ssl-ca=%s", ca_cert);
    add_arg(&al, "--ssl-cert=%s", server_cert);
    add_arg(&al, "--ssl-key=%s", server_key);
  }

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
537 538 539 540 541
  // slave master info
  if (slave_master_info[0] != NULL)
  {
    char *p;

542
    p = (char *)str_tok(slave_master_info, " \t");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
543 544 545

    while(p)
    {
546
      add_arg(&al, "%s", p);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
547
      
548
      p = (char *)str_tok(NULL, " \t");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
549 550 551 552
    }
  }
  else
  {
553 554 555 556 557 558 559
    add_arg(&al, "--master-user=%s", user);
    add_arg(&al, "--master-password=%s", password);
    add_arg(&al, "--master-host=127.0.0.1");
    add_arg(&al, "--master-port=%u", master_port);
    add_arg(&al, "--master-connect-retry=1");
    add_arg(&al, "--server-id=2");
    add_arg(&al, "--rpl-recovery-rank=2");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
560 561 562
  }
  
  // small server
563 564 565 566 567 568
  add_arg(&al, "-O");
  add_arg(&al, "key_buffer_size=1M");
  add_arg(&al, "-O");
  add_arg(&al, "sort_buffer=256K");
  add_arg(&al, "-O");
  add_arg(&al, "max_heap_table_size=1M");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
569 570 571 572 573 574

  // opt args
  if (slave_opt[0] != NULL)
  {
    char *p;

575
    p = (char *)str_tok(slave_opt, " \t");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
576 577 578

    while(p)
    {
579
      add_arg(&al, "%s", p);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
580
      
581
      p = (char *)str_tok(NULL, " \t");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
582 583 584 585 586 587 588
    }
  }
  
  // remove the pid file if it exists
  remove(slave_pid);

  // spawn
589
  if ((err = spawn(mysqld_file, &al, FALSE, NULL, slave_out, slave_err)) == 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
590 591 592
  {
    sleep_until_file_exists(slave_pid);
    
593 594
    if ((err = wait_for_server_start(bin_dir, user, password, slave_port,
                                     mysql_tmp_dir)) == 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
595 596
    {
      slave_running = TRUE;
monty@mysql.com's avatar
monty@mysql.com committed
597

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
598 599 600 601
    }
    else
    {
      log_error("The slave server went down early.");
monty@mysql.com's avatar
monty@mysql.com committed
602

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
603 604 605 606 607
    }
  }
  else
  {
    log_error("Unable to start slave server.");
monty@mysql.com's avatar
monty@mysql.com committed
608

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
609 610 611
  }
  
  // free args
612
  free_args(&al);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
613 614 615 616 617 618 619 620 621 622 623
}

/******************************************************************************

  mysql_start()
  
  Start the mysql servers.

******************************************************************************/
void mysql_start()
{
624
  log_info("Starting the MySQL server(s): %u", ++restarts);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
625 626 627
  start_master();

  start_slave();
628

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
629 630 631 632 633 634 635
  // activate the test screen
  ActivateScreen(getscreenhandle());
}

/******************************************************************************

  stop_slave()
636

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
637 638 639 640 641 642
  Stop the slave server.

******************************************************************************/
void stop_slave()
{
  int err;
643

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
644 645
  // running?
  if (!slave_running) return;
646

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
647
  // stop
648 649
  if ((err = stop_server(bin_dir, user, password, slave_port, slave_pid,
                         mysql_tmp_dir)) == 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
650 651 652 653 654 655 656 657 658 659 660 661
  {
    slave_running = FALSE;
  }
  else
  {
    log_error("Unable to stop slave server.");
  }
}

/******************************************************************************

  stop_master()
662

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
663 664 665 666 667 668
  Stop the master server.

******************************************************************************/
void stop_master()
{
  int err;
669

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
670 671
  // running?
  if (!master_running) return;
672

673 674
  if ((err = stop_server(bin_dir, user, password, master_port, master_pid,
                         mysql_tmp_dir)) == 0)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
675 676 677 678 679 680 681 682 683 684 685 686
  {
    master_running = FALSE;
  }
  else
  {
    log_error("Unable to stop master server.");
  }
}

/******************************************************************************

  mysql_stop()
687

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
688 689 690 691 692
  Stop the mysql servers.

******************************************************************************/
void mysql_stop()
{
693
  log_info("Stopping the MySQL server(s)...");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
694 695 696
  stop_master();

  stop_slave();
697

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
698 699 700 701 702 703 704
  // activate the test screen
  ActivateScreen(getscreenhandle());
}

/******************************************************************************

  mysql_restart()
705

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
706 707 708 709 710
  Restart the mysql servers.

******************************************************************************/
void mysql_restart()
{
711
  log_info("Restarting the MySQL server(s): %u", ++restarts);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
712 713 714 715 716 717 718 719 720

  mysql_stop();

  mysql_start();
}

/******************************************************************************

  read_option()
721

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
722 723 724 725 726 727 728 729 730
  Read the option file.

******************************************************************************/
int read_option(char *opt_file, char *opt)
{
  int fd, err;
  int result;
  char *p;
  char buf[PATH_MAX];
731

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
732 733
  // copy current option
  strncpy(buf, opt, PATH_MAX);
734

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
  // open options file
  fd = open(opt_file, O_RDONLY);
  
  err = read(fd, opt, PATH_MAX);
  
  close(fd);
  
  if (err > 0)
  {
    // terminate string
    if ((p = strchr(opt, '\n')) != NULL)
    {
      *p = NULL;
      
      // check for a '\r'
      if ((p = strchr(opt, '\r')) != NULL)
      {
        *p = NULL;
      }
    }
    else
    {
      opt[err] = NULL;
    }

    // check for $MYSQL_TEST_DIR
    if ((p = strstr(opt, "$MYSQL_TEST_DIR")) != NULL)
    {
      char temp[PATH_MAX];
      
      *p = NULL;
      
      strcpy(temp, p + strlen("$MYSQL_TEST_DIR"));
      
      strcat(opt, mysql_test_dir);
      
      strcat(opt, temp);
    }
773 774 775 776 777 778
    // Check for double backslash and replace it with single bakslash
    if ((p = strstr(opt, "\\\\")) != NULL)
    {
      /* bmove is guranteed to work byte by byte */
      bmove(p, p+1, strlen(p+1));
    }
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
  }
  else
  {
    // clear option
    *opt = NULL;
  }
  
  // compare current option with previous
  return strcmp(opt, buf);
}

/******************************************************************************

  run_test()
  
  Run the given test case.

******************************************************************************/
void run_test(char *test)
{
  char temp[PATH_MAX];
  char *rstr;
  double elapsed = 0;
monty@mysql.com's avatar
monty@mysql.com committed
802
  int skip = FALSE, ignore=FALSE;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
803 804 805 806
  int restart = FALSE;
  int flag = FALSE;
  struct stat info;
  
807 808 809 810 811
  // skip tests in the skip list
  snprintf(temp, PATH_MAX, " %s ", test);
  skip = (strindex(skip_test, temp) != NULL);
  if (skip == FALSE)
    ignore = (strindex(ignore_test, temp) != NULL);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
812
    
813
  if (ignore)
monty@mysql.com's avatar
monty@mysql.com committed
814 815
  {
    // show test
monty@mysql.com's avatar
monty@mysql.com committed
816
    log_msg("%-46s ", test);
monty@mysql.com's avatar
monty@mysql.com committed
817 818 819 820 821 822
         
    // ignore
    rstr = TEST_IGNORE;
    ++total_ignore;
  }  
  else if (!skip)     // skip test?
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
823 824 825 826 827 828 829 830 831 832
  {
    char test_file[PATH_MAX];
    char master_opt_file[PATH_MAX];
    char slave_opt_file[PATH_MAX];
    char slave_master_info_file[PATH_MAX];
    char result_file[PATH_MAX];
    char reject_file[PATH_MAX];
    char out_file[PATH_MAX];
    char err_file[PATH_MAX];
    int err;
833
    arg_list_t al;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
834 835 836 837 838 839 840 841 842 843
    NXTime_t start, stop;
    
    // skip slave?
    flag = skip_slave;
    skip_slave = (strncmp(test, "rpl", 3) != 0);
    if (flag != skip_slave) restart = TRUE;
    
    // create files
    snprintf(master_opt_file, PATH_MAX, "%s/%s-master.opt", test_dir, test);
    snprintf(slave_opt_file, PATH_MAX, "%s/%s-slave.opt", test_dir, test);
844
    snprintf(slave_master_info_file, PATH_MAX, "%s/%s.slave-mi", test_dir, test);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
845 846 847 848 849 850 851 852 853
    snprintf(reject_file, PATH_MAX, "%s/%s%s", result_dir, test, REJECT_SUFFIX);
    snprintf(out_file, PATH_MAX, "%s/%s%s", result_dir, test, OUT_SUFFIX);
    snprintf(err_file, PATH_MAX, "%s/%s%s", result_dir, test, ERR_SUFFIX);
    
    // netware specific files
    snprintf(test_file, PATH_MAX, "%s/%s%s", test_dir, test, NW_TEST_SUFFIX);
    if (stat(test_file, &info))
    {
      snprintf(test_file, PATH_MAX, "%s/%s%s", test_dir, test, TEST_SUFFIX);
854
      if (access(test_file,0))
855 856 857 858
      {
        printf("Invalid test name %s, %s file not found\n",test,test_file);
        return;
      }
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
859
    }
860

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
861 862 863 864 865
    snprintf(result_file, PATH_MAX, "%s/%s%s", result_dir, test, NW_RESULT_SUFFIX);
    if (stat(result_file, &info))
    {
      snprintf(result_file, PATH_MAX, "%s/%s%s", result_dir, test, RESULT_SUFFIX);
    }
866

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
    // init scripts
    snprintf(master_init_script, PATH_MAX, "%s/%s-master.sh", test_dir, test);
    if (stat(master_init_script, &info))
      master_init_script[0] = NULL;
    else
      restart = TRUE;
    
    snprintf(slave_init_script, PATH_MAX, "%s/%s-slave.sh", test_dir, test);
    if (stat(slave_init_script, &info))
      slave_init_script[0] = NULL;
    else
      restart = TRUE;

    // read options
    if (read_option(master_opt_file, master_opt)) restart = TRUE;
    if (read_option(slave_opt_file, slave_opt)) restart = TRUE;
    if (read_option(slave_master_info_file, slave_master_info)) restart = TRUE;
    
    // cleanup previous run
    remove(reject_file);
    remove(out_file);
    remove(err_file);
    
    // start or restart?
    if (!master_running) mysql_start();
      else if (restart) mysql_restart();
    
    // let the system stabalize
    sleep(1);

    // show test
monty@mysql.com's avatar
monty@mysql.com committed
898
    log_msg("%-46s ", test);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
899 900
    
    // args
901 902 903 904 905 906 907 908 909 910 911 912 913
    init_args(&al);
    add_arg(&al, "%s", mysqltest_file);
    add_arg(&al, "--no-defaults");
    add_arg(&al, "--port=%u", master_port);
    add_arg(&al, "--database=%s", db);
    add_arg(&al, "--user=%s", user);
    add_arg(&al, "--password=%s", password);
    add_arg(&al, "--silent");
    add_arg(&al, "--basedir=%s/", mysql_test_dir);
    add_arg(&al, "--host=127.0.0.1");
    add_arg(&al, "-v");
    add_arg(&al, "-R");
    add_arg(&al, "%s", result_file);
914 915 916 917 918 919 920 921

    if (use_openssl)
    {
      add_arg(&al, "--ssl-ca=%s", ca_cert);
      add_arg(&al, "--ssl-cert=%s", client_cert);
      add_arg(&al, "--ssl-key=%s", client_key);
    }

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
922 923 924 925
    // start timer
    NXGetTime(NX_SINCE_BOOT, NX_USECONDS, &start);
    
    // spawn
926
    err = spawn(mysqltest_file, &al, TRUE, test_file, out_file, err_file);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
927 928 929 930 931 932 933 934 935
    
    // stop timer
    NXGetTime(NX_SINCE_BOOT, NX_USECONDS, &stop);
    
    // calculate
    elapsed = ((double)(stop - start)) / NX_USECONDS;
    total_time += elapsed;
    
    // free args
936
    free_args(&al);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
937 938 939 940 941 942 943 944 945 946
    
    if (err == 0)
    {
      // pass
      rstr = TEST_PASS;
      ++total_pass;
      
      // increment total
      ++total_test;
    }
947
    else if (err == 62)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969
    {
      // skip
      rstr = TEST_SKIP;
      ++total_skip;
    }
    else if (err == 1)
    {
      // fail
      rstr = TEST_FAIL;
      ++total_fail;
      
      // increment total
      ++total_test;
    }
    else
    {
      rstr = TEST_BAD;
    }
  }
  else // early skips
  {
    // show test
monty@mysql.com's avatar
monty@mysql.com committed
970
    log_msg("%-46s ", test);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
971 972 973 974 975 976 977
    
    // skip
    rstr = TEST_SKIP;
    ++total_skip;
  }
  
  // result
monty@mysql.com's avatar
monty@mysql.com committed
978
  log_msg("%10.06f   %-14s\n", elapsed, rstr);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
}

/******************************************************************************

  vlog()
  
  Log the message.

******************************************************************************/
void vlog(char *format, va_list ap)
{
  vfprintf(stdout, format, ap);
  fflush(stdout);
  
  if (log_fd)
  {
    vfprintf(log_fd, format, ap);
    fflush(log_fd);
  }
}

/******************************************************************************

  log()
  
  Log the message.

******************************************************************************/
monty@mysql.com's avatar
monty@mysql.com committed
1007
void log_msg(char *format, ...)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1008 1009
{
  va_list ap;
1010

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
  va_start(ap, format);

  vlog(format, ap);
  
  va_end(ap);
}

/******************************************************************************

  log_info()
  
  Log the given information.

******************************************************************************/
void log_info(char *format, ...)
{
  va_list ap;
  
  va_start(ap, format);

monty@mysql.com's avatar
monty@mysql.com committed
1031
  log_msg("-- INFO : ");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1032
  vlog(format, ap);
monty@mysql.com's avatar
monty@mysql.com committed
1033
  log_msg("\n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050

  va_end(ap);
}

/******************************************************************************

  log_error()
  
  Log the given error.

******************************************************************************/
void log_error(char *format, ...)
{
  va_list ap;
  
  va_start(ap, format);

monty@mysql.com's avatar
monty@mysql.com committed
1051
  log_msg("-- ERROR: ");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1052
  vlog(format, ap);
monty@mysql.com's avatar
monty@mysql.com committed
1053
  log_msg("\n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070

  va_end(ap);
}

/******************************************************************************

  log_errno()
  
  Log the given error and errno.

******************************************************************************/
void log_errno(char *format, ...)
{
  va_list ap;
  
  va_start(ap, format);

monty@mysql.com's avatar
monty@mysql.com committed
1071
  log_msg("-- ERROR: (%003u) ", errno);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1072
  vlog(format, ap);
monty@mysql.com's avatar
monty@mysql.com committed
1073
  log_msg("\n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103

  va_end(ap);
}

/******************************************************************************

  die()
  
  Exit the application.

******************************************************************************/
void die(char *msg)
{
  log_error(msg);

  pressanykey();

  exit(-1);
}

/******************************************************************************

  setup()
  
  Setup the mysql test enviornment.

******************************************************************************/
void setup(char *file)
{
  char temp[PATH_MAX];
1104
  char file_path[PATH_MAX*2];
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1105
  char *p;
1106

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
  // set the timezone for the timestamp test
  setenv("TZ", "GMT-3", TRUE);

  // find base dir
  strcpy(temp, strlwr(file));
  while((p = strchr(temp, '\\')) != NULL) *p = '/';
  
  if ((p = strindex(temp, "/mysql-test/")) != NULL)
  {
    *p = NULL;
    strcpy(base_dir, temp);
  }
1119

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
  // setup paths
  snprintf(bin_dir, PATH_MAX, "%s/bin", base_dir);
  snprintf(mysql_test_dir, PATH_MAX, "%s/mysql-test", base_dir);
  snprintf(test_dir, PATH_MAX, "%s/t", mysql_test_dir);
  snprintf(mysql_tmp_dir, PATH_MAX, "%s/var/tmp", mysql_test_dir);
  snprintf(result_dir, PATH_MAX, "%s/r", mysql_test_dir);
  snprintf(master_dir, PATH_MAX, "%s/var/master-data", mysql_test_dir);
  snprintf(slave_dir, PATH_MAX, "%s/var/slave-data", mysql_test_dir);
  snprintf(lang_dir, PATH_MAX, "%s/share/english", base_dir);
  snprintf(char_dir, PATH_MAX, "%s/share/charsets", base_dir);
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141

#ifdef HAVE_OPENSSL
  use_openssl = TRUE;
#endif // HAVE_OPENSSL

  // OpenSSL paths
  snprintf(ca_cert, PATH_MAX, "%s/SSL/cacert.pem", base_dir);
  snprintf(server_cert, PATH_MAX, "%s/SSL/server-cert.pem", base_dir);
  snprintf(server_key, PATH_MAX, "%s/SSL/server-key.pem", base_dir);
  snprintf(client_cert, PATH_MAX, "%s/SSL/client-cert.pem", base_dir);
  snprintf(client_key, PATH_MAX, "%s/SSL/client-key.pem", base_dir);

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
  // setup files
  snprintf(mysqld_file, PATH_MAX, "%s/mysqld", bin_dir);
  snprintf(mysqltest_file, PATH_MAX, "%s/mysqltest", bin_dir);
  snprintf(mysqladmin_file, PATH_MAX, "%s/mysqladmin", bin_dir);
  snprintf(master_pid, PATH_MAX, "%s/var/run/master.pid", mysql_test_dir);
  snprintf(slave_pid, PATH_MAX, "%s/var/run/slave.pid", mysql_test_dir);

  // create log file
  snprintf(temp, PATH_MAX, "%s/mysql-test-run.log", mysql_test_dir);
  if ((log_fd = fopen(temp, "w+")) == NULL)
  {
    log_errno("Unable to create log file.");
  }
1155

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1156 1157 1158 1159
  // prepare skip test list
  while((p = strchr(skip_test, ',')) != NULL) *p = ' ';
  strcpy(temp, strlwr(skip_test));
  snprintf(skip_test, PATH_MAX, " %s ", temp);
1160 1161

  // environment
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1162
  setenv("MYSQL_TEST_DIR", mysql_test_dir, 1);
1163 1164 1165 1166
  snprintf(file_path, PATH_MAX*2, "%s/mysqldump --no-defaults -u root --port=%u", bin_dir, master_port);
  setenv("MYSQL_DUMP", file_path, 1);
  snprintf(file_path, PATH_MAX*2, "%s/mysqlbinlog --no-defaults --local-load=%s", bin_dir, mysql_tmp_dir);
  setenv("MYSQL_BINLOG", file_path, 1);
1167
  setenv("MASTER_MYPORT", "9306", 1);
monty@mysql.com's avatar
monty@mysql.com committed
1168 1169
  setenv("SLAVE_MYPORT", "9307", 1);
  setenv("MYSQL_TCP_PORT", "3306", 1);
1170 1171
  snprintf(file_path, PATH_MAX*2, "%s/mysql_client_test --no-defaults --testcase--user=root --port=%u ", bin_dir, master_port); 
  setenv("MYSQL_CLIENT_TEST",file_path,1);
1172 1173
  snprintf(file_path, PATH_MAX*2, "%s/mysql --no-defaults --user=root --port=%u ", bin_dir, master_port);
  setenv("MYSQL",file_path,1); 
1174 1175
  snprintf(file_path, PATH_MAX*2, "%s/mysqlshow --no-defaults --user=root --port=%u", bin_dir, master_port);
  setenv("MYSQL_SHOW",file_path,1);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1176 1177 1178 1179 1180 1181 1182 1183 1184
}

/******************************************************************************

  main()
  
******************************************************************************/
int main(int argc, char **argv)
{
monty@mysql.com's avatar
monty@mysql.com committed
1185
  int is_ignore_list = 0;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1186 1187 1188
  // setup
  setup(argv[0]);
  
1189 1190 1191 1192 1193 1194 1195 1196 1197
  /* The --ignore option is comma saperated list of test cases to skip and
     should be very first command line option to the test suite. 

     The usage is now:
     mysql_test_run --ignore=test1,test2 test3 test4
     where test1 and test2 are test cases to ignore
     and test3 and test4 are test cases to run.
  */
  if (argc >= 2 && !strnicmp(argv[1], "--ignore=", sizeof("--ignore=")-1))
monty@mysql.com's avatar
monty@mysql.com committed
1198 1199
  {
    char *temp, *token;
1200 1201
    temp= strdup(strchr(argv[1],'=') + 1);
    for (token=str_tok(temp, ","); token != NULL; token=str_tok(NULL, ","))
monty@mysql.com's avatar
monty@mysql.com committed
1202
    {
1203 1204
      if (strlen(ignore_test) + strlen(token) + 2 <= PATH_MAX-1)
        sprintf(ignore_test+strlen(ignore_test), " %s ", token);
monty@mysql.com's avatar
monty@mysql.com committed
1205 1206 1207 1208 1209 1210 1211 1212 1213
      else
      {
        free(temp);
        die("ignore list too long.");
      }
    }
    free(temp);
    is_ignore_list = 1;
  }
1214
  // header
monty@mysql.com's avatar
monty@mysql.com committed
1215
  log_msg("MySQL Server %s, for %s (%s)\n\n", VERSION, SYSTEM_TYPE, MACHINE_TYPE);
1216
  
monty@mysql.com's avatar
monty@mysql.com committed
1217
  log_msg("Initializing Tests...\n");
1218 1219 1220 1221
  
  // install test databases
  mysql_install_db();
  
monty@mysql.com's avatar
monty@mysql.com committed
1222
  log_msg("Starting Tests...\n");
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1223
  
monty@mysql.com's avatar
monty@mysql.com committed
1224 1225 1226
  log_msg("\n");
  log_msg(HEADER);
  log_msg(DASH);
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1227

monty@mysql.com's avatar
monty@mysql.com committed
1228
  if ( argc > 1 + is_ignore_list )
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1229 1230 1231 1232
  {
    int i;

    // single test
1233
    single_test = TRUE;
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1234

monty@mysql.com's avatar
monty@mysql.com committed
1235
    for (i = 1 + is_ignore_list; i < argc; i++)
gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
    {
      // run given test
      run_test(argv[i]);
    }
  }
  else
  {
    // run all tests
    DIR *dir = opendir(test_dir);
    DIR *entry;
    char test[NAME_MAX];
    char *p;
    
    // single test
    single_test = FALSE;    

    if (dir == NULL)
    {
      die("Unable to open tests directory.");
    }
    
    while((entry = readdir(dir)) != NULL)
    {
      if (!S_ISDIR(entry->d_type))
      {
        strcpy(test, strlwr(entry->d_name));
        
        // find the test suffix
        if ((p = strindex(test, TEST_SUFFIX)) != NULL)
        {
          // null terminate at the suffix
          *p = '\0';

          // run test
          run_test(test);
        }
      }
    }
    
    closedir(dir);
  }

  // stop server
  mysql_stop();

monty@mysql.com's avatar
monty@mysql.com committed
1281 1282
  log_msg(DASH);
  log_msg("\n");
1283

monty@mysql.com's avatar
monty@mysql.com committed
1284
  log_msg("Ending Tests...\n");
1285

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1286 1287
  // report stats
  report_stats();
1288

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1289 1290
  // close log
  if (log_fd) fclose(log_fd);
1291

gweir@work.mysql.com's avatar
gweir@work.mysql.com committed
1292 1293 1294 1295 1296 1297
  // keep results up
  pressanykey();

  return 0;
}

1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
/*
 Synopsis:
  This function breaks the string into a sequence of tokens. The difference
  between this function and strtok is that it respects the quoted string i.e.
  it skips  any delimiter character within the quoted part of the string. 
  It return tokens by eliminating quote character. It modifies the input string
  passed. It will work with whitespace delimeter but may not work properly with
  other delimeter. If the delimeter will contain any quote character, then
  function will not tokenize and will return null string.
  e.g. if input string is 
     --init-slave="set global max_connections=500" --skip-external-locking
  then the output will two string i.e.
     --init-slave=set global max_connections=500
     --skip-external-locking

Arguments:
  string:  input string
  delim:   set of delimiter character
Output:
  return the null terminated token of NULL.
*/


char *str_tok(char *string, const char *delim)
{
  char *token;            /* current token received from strtok */
  char *qt_token;         /* token delimeted by the matching pair of quote */
  /*
    if there are any quote chars found in the token then this variable
    will hold the concatenated string to return to the caller
  */
  char *ptr_token=NULL;
  /* pointer to the quote character in the token from strtok */
  char *ptr_quote=NULL;
  
  /* See if the delimeter contains any quote character */
  if (strchr(delim,'\'') || strchr(delim,'\"'))
    return NULL;

  /* repeate till we are getting some token from strtok */
  while ((token = (char*)strtok(string, delim) ) != NULL)
  {
    /*
      make the input string NULL so that next time onward strtok can
      be called with NULL input string.
    */
    string = NULL;
    
    /* check if the current token contain double quote character*/
    if ((ptr_quote = (char*)strchr(token,'\"')) != NULL)
    {
      /*
        get the matching the matching double quote in the remaining
        input string
      */
      qt_token = (char*)strtok(NULL,"\"");
    }
    /* check if the current token contain single quote character*/
    else if ((ptr_quote = (char*)strchr(token,'\'')) != NULL)
    {
      /*
        get the matching the matching single quote in the remaining
        input string
      */
      qt_token = (char*)strtok(NULL,"\'");
    }

    /*
      if the current token does not contains any quote character then
      return to the caller.
    */
    if (ptr_quote == NULL)
    {
      /*
        if there is any earlier token i.e. ptr_token then append the
        current token in it and return it else return the current
        token directly
      */
      return ptr_token ? strcat(ptr_token,token) : token;
    }

    /*
      remove the quote character i.e. make NULL so that the token will
      be devided in two part and later both part can be concatenated
      and hence quote will be removed
    */
    *ptr_quote= 0;
    
    /* check if ptr_token has been initialized or not */
    if (ptr_token == NULL)
    {
      /* initialize the ptr_token with current token */
      ptr_token= token;
      /* copy entire string between matching pair of quote*/
      sprintf(ptr_token+strlen(ptr_token),"%s %s", ptr_quote+1, qt_token);
    }
    else
    {
      /*
        copy the current token and entire string between matching pair
        of quote
      */
      sprintf(ptr_token+strlen(ptr_token),"%s%s %s", token, ptr_quote+1,
              qt_token );
    }
  }
  
  /* return the concatenated token */
  return ptr_token;
}