-
Notifications
You must be signed in to change notification settings - Fork 3
/
runall.pl
executable file
·726 lines (621 loc) · 26.9 KB
/
runall.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
#!/usr/bin/perl
# Copyright (c) 2008, 2012 Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2013, Monty Program Ab.
# Use is subject to license terms.
#
# 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; version 2 of the License.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
# USA
#
# This script executes the following sequence
#
# $ mysql-test-run.pl --start-and-exit with replication
# $ gentest.pl --gendata
# $ diff master slave
#
#
use lib 'lib';
use lib "$ENV{RQG_HOME}/lib";
use strict;
use GenTest;
use Carp;
use File::Spec;
my $logger;
eval
{
require Log::Log4perl;
Log::Log4perl->import();
$logger = Log::Log4perl->get_logger('randgen.gentest');
};
use GenTest::BzrInfo;
$| = 1;
if (osWindows()) {
$SIG{CHLD} = "IGNORE";
}
if (defined $ENV{RQG_HOME}) {
if (osWindows()) {
$ENV{RQG_HOME} = $ENV{RQG_HOME}.'\\';
} else {
$ENV{RQG_HOME} = $ENV{RQG_HOME}.'/';
}
}
use Getopt::Long;
use GenTest::Constants;
use DBI;
use Cwd;
my $database = 'test';
my @master_dsns;
my ($gendata, $skip_gendata, @basedirs, @mysqld_options, @vardirs, $rpl_mode,
$engine, $help, $debug, $validators, $reporters, $grammar_file, $skip_recursive_rules,
@redefine_files, $seed, $mask, $mask_level, $no_mask, $mem, $rows,
$varchar_len, $xml_output, $valgrind, $valgrind_options, $valgrind_xml, @views,
$start_dirty, $filter, $build_thread, $testname, $report_xml_tt,
$report_xml_tt_type, $report_xml_tt_dest, $notnull, $sqltrace,
$lcov, $transformers, $logfile, $logconf, $report_tt_logdir,$querytimeout,
$short_column_names, $strict_fields, $freeze_time, $wait_debugger, $appverif,
$store_binaries);
my $threads = my $default_threads = 10;
my $queries = my $default_queries = 1000;
my $duration = my $default_duration = 3600;
my @ARGV_saved = @ARGV;
my $opt_result = GetOptions(
'mysqld=s@' => \$mysqld_options[0],
'mysqld1=s@' => \$mysqld_options[0],
'mysqld2=s@' => \$mysqld_options[1],
'basedir=s' => \$basedirs[0],
'basedir1=s' => \$basedirs[0],
'basedir2=s' => \$basedirs[1],
'vardir=s' => \$vardirs[0],
'vardir1=s' => \$vardirs[0],
'vardir2=s' => \$vardirs[1],
'rpl_mode=s' => \$rpl_mode,
'engine=s' => \$engine,
'grammar=s' => \$grammar_file,
'skip-recursive-rules' => \$skip_recursive_rules,
'redefine=s@' => \@redefine_files,
'threads=i' => \$threads,
'queries=s' => \$queries,
'duration=i' => \$duration,
'help' => \$help,
'debug' => \$debug,
'validators:s@' => \$validators,
'transformers:s@' =>\$transformers,
'reporters:s@' => \$reporters,
'report-xml-tt' => \$report_xml_tt,
'report-xml-tt-type=s' => \$report_xml_tt_type,
'report-xml-tt-dest=s' => \$report_xml_tt_dest,
'gendata:s' => \$gendata,
'skip-gendata' => \$skip_gendata,
'notnull' => \$notnull,
'short_column_names' => \$short_column_names,
'strict_fields' => \$strict_fields,
'freeze_time' => \$freeze_time,
'seed=s' => \$seed,
'mask=i' => \$mask,
'mask-level=i' => \$mask_level,
'no-mask' => \$no_mask,
'mem' => \$mem,
'rows=s' => \$rows,
'varchar-length=i' => \$varchar_len,
'xml-output=s' => \$xml_output,
'valgrind' => \$valgrind,
'valgrind_options=s@' => \$valgrind_options,
'valgrind-xml' => \$valgrind_xml,
'views:s' => \$views[0],
'views1:s' => \$views[1],
'views2:s' => \$views[2],
'sqltrace:s' => \$sqltrace,
'start-dirty' => \$start_dirty,
'filter=s' => \$filter,
'mtr-build-thread=i' => \$build_thread,
'testname=s' => \$testname,
'lcov' => \$lcov,
'logfile=s' => \$logfile,
'logconf=s' => \$logconf,
'report-tt-logdir=s' => \$report_tt_logdir,
'querytimeout=i' => \$querytimeout,
'wait-for-debugger' => \$wait_debugger,
'appverif:i' => \$appverif,
'store-binaries|store_binaries' => \$store_binaries
);
if ( osWindows() && !$debug )
{
require Win32::API;
my $errfunc = Win32::API->new('kernel32', 'SetErrorMode', 'I', 'I');
my $initial_mode = $errfunc->Call(2);
$errfunc->Call($initial_mode | 2);
};
if (defined $logfile && defined $logger) {
setLoggingToFile($logfile);
} else {
if (defined $logconf && defined $logger) {
setLogConf($logconf);
}
}
$ENV{RQG_DEBUG} = 1 if defined $debug;
$validators = join(',', @$validators) if defined $validators;
$reporters = join(',', @$reporters) if defined $reporters;
$transformers = join(',', @$transformers) if defined $transformers;
if (!$opt_result) {
exit(1);
} elsif ($help) {
help();
exit(0);
} elsif ($basedirs[0] eq '') {
say("No basedir provided via --basedir.");
exit(0);
} elsif (not defined $grammar_file) {
say("No grammar file provided via --grammar");
exit(0);
}
# --sqltrace may have a string value (optional).
# Allowed values for --sqltrace:
my %sqltrace_legal_values = (
'MarkErrors' => 1 # Prefixes invalid SQL statements for easier post-processing
);
# If no value is given, GetOpt will assign the value '' (empty string).
if (length($sqltrace) > 0) {
# A value is given, check if it is legal.
if (not exists $sqltrace_legal_values{$sqltrace}) {
say("Invalid value for --sqltrace option: '$sqltrace'");
say("Valid values are: ".join(', ', keys(%sqltrace_legal_values)));
say("No value means that default/plain sqltrace will be used.");
say("Exit status will be set to ENVIRONMENT_FAILURE");
exit(STATUS_ENVIRONMENT_FAILURE);
}
}
say("Copyright (c) 2008,2011 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.");
say("Please see http://forge.mysql.com/wiki/Category:RandomQueryGenerator for more information on this test framework.");
say("Starting: $0 ".join(" ", @ARGV_saved));
#
# Calculate master and slave ports based on MTR_BUILD_THREAD (MTR
# Version 1 behaviour)
#
if (not defined $build_thread) {
if (defined $ENV{MTR_BUILD_THREAD}) {
$build_thread = $ENV{MTR_BUILD_THREAD}
} else {
$build_thread = DEFAULT_MTR_BUILD_THREAD;
}
}
if ( $build_thread eq 'auto' ) {
say ("Please set the environment variable MTR_BUILD_THREAD to a value <> 'auto' (recommended) or unset it (will take the value ".DEFAULT_MTR_BUILD_THREAD.") ");
say ("Exit status will be set to ENVIRONMENT_FAILURE");
exit (STATUS_ENVIRONMENT_FAILURE);
}
my $master_port = 10000 + 10 * $build_thread;
my $slave_port = 10000 + 10 * $build_thread + 2;
my @master_ports = ($master_port,$slave_port);
say("master_port : $master_port slave_port : $slave_port master_ports : @master_ports MTR_BUILD_THREAD : $build_thread ");
$ENV{MTR_BUILD_THREAD} = $build_thread;
#
# If the user has provided two vardirs and one basedir, start second
# server using the same basedir
#
if (
($vardirs[1] ne '') &&
($basedirs[1] eq '')
) {
$basedirs[1] = $basedirs[0];
}
foreach my $dir (cwd(), @basedirs) {
# calling bzr usually takes a few seconds...
if (defined $dir) {
my $bzrinfo = GenTest::BzrInfo->new(
dir => $dir
);
my $revno = $bzrinfo->bzrRevno();
my $revid = $bzrinfo->bzrRevisionId();
if ((defined $revno) && (defined $revid)) {
say("$dir Revno: $revno");
say("$dir Revision-Id: $revid");
} else {
say($dir.' does not look like a bzr branch, cannot get revision info.');
}
}
}
if (
($mysqld_options[1] ne '') &&
($basedirs[1] eq '')
) {
$basedirs[1] = $basedirs[0];
}
#
# If the user has provided identical basedirs and vardirs, warn of a potential overlap.
#
if (
($basedirs[0] eq $basedirs[1]) &&
($vardirs[0] eq $vardirs[1]) &&
($rpl_mode eq '')
) {
die("Please specify either different --basedir[12] or different --vardir[12] in order to start two MySQL servers");
}
# Fix Windows-style paths
foreach my $i (0..$#basedirs) {
$basedirs[$i] =~ s/\\/\//g;
}
foreach my $i (0..$#vardirs) {
$vardirs[$i] =~ s/\\/\//g;
}
#
# If RQG_HOME is set, prepend it to config files if they can not be found without it
#
$gendata = $ENV{RQG_HOME}.'/'.$gendata if defined $gendata && defined $ENV{RQG_HOME} && ! -e $gendata;
$grammar_file = $ENV{RQG_HOME}.'/'.$grammar_file if defined $grammar_file && defined $ENV{RQG_HOME} && ! -e $grammar_file;
foreach (0..$#redefine_files)
{
$redefine_files[$_] = $ENV{RQG_HOME}.'/'.$redefine_files[$_]
if defined $redefine_files[$_] && defined $ENV{RQG_HOME} && ! -e $redefine_files[$_];
}
my $cwd = cwd();
if ($lcov) {
unlink(tmpdir()."/lcov-rqg.info");
system("lcov --directory $basedirs[0] --zerocounters");
}
#
# Start servers. Use rpl_alter if replication is needed.
#
foreach my $server_id (0..1) {
next if $basedirs[$server_id] eq '';
if (
($server_id == 0) ||
($rpl_mode eq '')
) {
$master_dsns[$server_id] = "dbi:mysql:host=127.0.0.1:port=".$master_ports[$server_id].":user=root:database=".$database;
}
my @mtr_options;
push @mtr_options, lc("--mysqld=--$engine") if defined $engine && $engine !~ m{myisam|memory|heap|aria}sio;
push @mtr_options, "--mem" if defined $mem;
if ((defined $valgrind) || (defined $valgrind_xml)) {
push @mtr_options, "--valgrind";
if (defined $valgrind_options) {
foreach (@$valgrind_options) {
push @mtr_options, "--valgrind-option=$_";
}
}
if (defined $valgrind_xml) {
push @mtr_options, "--valgrind-option='--xml=yes'";
if (defined $vardirs[$server_id]) {
push @mtr_options, "--valgrind-option='--xml-file=".$vardirs[$server_id]."/log/valgrind.xml'";
} else {
push @mtr_options, "--valgrind-option='--xml-file=".$basedirs[$server_id]."/mysql-test/var/log/valgrind.xml'";
}
}
}
push @mtr_options, "--mysqld=--core-file";
push @mtr_options, "--mysqld=--loose-new";
push @mtr_options, "--mysqld=--default-storage-engine=$engine" if defined $engine;
push @mtr_options, "--mysqld=--sql-mode=no_engine_substitution" if join(' ', @ARGV_saved) !~ m{sql-mode}io;
push @mtr_options, "--mysqld=--relay-log=slave-relay-bin";
push @mtr_options, "--mysqld=--loose-innodb";
# push @mtr_options, "--mysqld=--loose-falcon-debug-mask=2"; # No longer used, really
push @mtr_options, "--mysqld=--secure-file-priv="; # Disable secure-file-priv that mtr enables.
push @mtr_options, "--mysqld=--max-allowed-packet=16Mb"; # Allow loading bigger blobs
push @mtr_options, "--mysqld=--loose-innodb-status-file=1";
push @mtr_options, "--mysqld=--master-retry-count=65535";
push @mtr_options, "--mysqld=--loose-debug-assert-if-crashed-table";
push @mtr_options, "--mysqld=--loose-debug-assert-on-error";
push @mtr_options, "--mysqld=--skip-name-resolve";
push @mtr_options, "--start-dirty" if defined $start_dirty;
push @mtr_options, "--gcov" if $lcov;
if (($rpl_mode ne '') && ($server_id != 0)) {
say("****** NBNBNB: Due to changes in innodb and the use of MTRv1 which gives both slave and master the same tmp dir. Replication is no longer reliable with runall.pl. Use runall-new.pl instead");
# If we are running in replication, and we start the slave separately (because it is a different binary)
# add a few options that allow the slave and the master to be distinguished and SHOW SLAVE HOSTS to work
push @mtr_options, "--mysqld=--server-id=".($server_id + 1);
push @mtr_options, "--mysqld=--report-host=127.0.0.1";
push @mtr_options, "--mysqld=--report-port=".$master_ports[$server_id];
}
my $mtr_path = $basedirs[$server_id].'/mysql-test/';
chdir($mtr_path) or croak "unable to chdir() to $mtr_path: $!";
push @mtr_options, "--vardir=$vardirs[$server_id]" if defined $vardirs[$server_id];
push @mtr_options, "--master_port=".$master_ports[$server_id];
if (defined $mysqld_options[$server_id]) {
foreach my $mysqld_option (@{$mysqld_options[$server_id]}) {
push @mtr_options, '--mysqld="'.$mysqld_option.'"';
}
}
if (
($rpl_mode ne '') &&
($server_id == 0) &&
(not defined $vardirs[1]) &&
(not defined $mysqld_options[1])
) {
push @mtr_options, 'rpl_alter';
push @mtr_options, "--slave_port=".$slave_port;
} elsif ($basedirs[$server_id] =~ m{(^|[-/ ])5\.0}sgio) {
say("Basedir implies server version 5.0. Will not use --start-and-exit 1st");
# Do nothing, test name "1st" does not exist in 5.0
} else {
push @mtr_options, '1st';
}
$ENV{MTR_VERSION} = 1;
# my $out_file = "/tmp/mtr-".$$."-".$server_id.".out";
my $mtr_command = "perl mysql-test-run.pl --start-and-exit ".join(' ', @mtr_options)." 2>&1";
my $vardir = $vardirs[$server_id] || $basedirs[$server_id].'/mysql-test/var';
open (MTR_COMMAND, '>'.$mtr_path.'/mtr_command') or say("Unable to open mtr_command: $!");
print MTR_COMMAND $mtr_command;
close MTR_COMMAND;
if (osWindows() and $server_id == 0 and $appverif) {
say("Enabling appverif");
system("appverif /verify mysqld.exe");
} elsif (osWindows() and defined $appverif) {
say("Disabling appverif");
system("appverif /n mysqld.exe");
}
say("Running $mtr_command .");
my $mtr_status = system($mtr_command);
if (osWindows() and $server_id == 0 and $appverif) {
say("Disabling appverif");
system("appverif /n mysqld.exe");
}
if ($mtr_status != 0) {
# system("cat $out_file");
system("cat \"$vardir/log/master.err\"");
say("MTR exited with an error code $mtr_status, status will be set to ENVIRONMENT_FAILURE");
exit_test(STATUS_ENVIRONMENT_FAILURE);
}
# unlink($out_file);
if ((defined $master_dsns[$server_id]) && (defined $engine)) {
my $dbh = DBI->connect($master_dsns[$server_id], undef, undef, { mysql_multi_statements => 1, RaiseError => 1 } );
$dbh->do("SET GLOBAL storage_engine = '$engine'");
}
}
chdir($cwd);
my $master_dbh = DBI->connect($master_dsns[0], undef, undef, { mysql_multi_statements => 1, RaiseError => 1 } );
if ($rpl_mode) {
my $slave_dsn = "dbi:mysql:host=127.0.0.1:port=".$slave_port.":user=root:database=".$database;
my $slave_dbh = DBI->connect($slave_dsn, undef, undef, { mysql_multi_statements => 1, RaiseError => 1 } );
say("Establishing replication, mode $rpl_mode ...");
my ($foo, $master_version) = $master_dbh->selectrow_array("SHOW VARIABLES LIKE 'version'");
if (($master_version !~ m{^5\.0}sio) && ($rpl_mode ne 'default')) {
$master_dbh->do("SET GLOBAL BINLOG_FORMAT = '$rpl_mode'");
$slave_dbh->do("SET GLOBAL BINLOG_FORMAT = '$rpl_mode'");
}
$slave_dbh->do("STOP SLAVE");
$slave_dbh->do("SET GLOBAL storage_engine = '$engine'") if defined $engine;
$slave_dbh->do("CHANGE MASTER TO
MASTER_PORT = $master_ports[0],
MASTER_HOST = '127.0.0.1',
MASTER_USER = 'root',
MASTER_CONNECT_RETRY = 1
");
$slave_dbh->do("START SLAVE");
}
#
# Wait for user interaction before continuing, allowing the user to attach
# a debugger to the server process.
# Will print a message and ask the user to press a key to continue.
# User is responsible for actually attaching the debugger if so desired.
#
if ($wait_debugger) {
say("Pausing test to allow attaching debuggers etc. to the server process.");
my @pids; # there may be more than one server process
my $server_count = 0;
foreach my $server_id (0..1) {
next if $basedirs[$server_id] eq '';
$server_count++;
my $vardir = $vardirs[$server_id] || $basedirs[$server_id].'/mysql-test/var';
# Relative vardir paths will be relative to the mysql-test directory, not cwd.
if (not File::Spec->file_name_is_absolute($vardir)) {
$vardir = File::Spec->rel2abs($vardir, $basedirs[$server_id].'/mysql-test');
}
# read pid from pid file created by MTR
my $master_pid_file = "$vardir/run/master.pid";
if(open(PIDFILE, $master_pid_file)) {
my $pid = <PIDFILE>;
chomp $pid;
close(PIDFILE) or carp("WARNING: Unable to close master.pid file: $!");
push(@pids, $pid);
} else {
carp("WARNING: Unable to read file $master_pid_file: $!");
}
# Replication slave is not included in server_id list, so check it now.
if ($rpl_mode) {
$server_count++;
if(open(PIDFILE2, "$vardir/run/slave.pid")) {
my $slave_pid = <PIDFILE2>;
close(PIDFILE2) or carp("WARNING: Unable to close slave.pid file: $!");
chomp $slave_pid;
push(@pids, $slave_pid.' (slave)');
} else {
carp("WARNING: Unable to read slave.pid file: $!");
}
}
}
say('Number of servers started: '.$server_count);
say('Server PID: '.($#pids < 0 ? "Unknown" : join(', ', @pids)));
say("Press ENTER to continue the test run...");
my $keypress = <STDIN>;
}
#
# Run actual queries
#
my @gentest_options;
push @gentest_options, "--start-dirty" if defined $start_dirty;
push @gentest_options, "--gendata=$gendata" if not defined $skip_gendata;
push @gentest_options, "--notnull" if defined $notnull;
push @gentest_options, "--short_column_names" if defined $short_column_names;
push @gentest_options, "--strict_fields" if defined $strict_fields;
push @gentest_options, "--freeze_time" if defined $freeze_time;
push @gentest_options, "--engine=$engine" if defined $engine;
push @gentest_options, "--rpl_mode=$rpl_mode" if defined $rpl_mode;
push @gentest_options, map {'--validator='.$_} split(/,/,$validators) if defined $validators;
push @gentest_options, map {'--reporter='.$_} split(/,/,$reporters) if defined $reporters;
push @gentest_options, map {'--transformer='.$_} split(/,/,$transformers) if defined $transformers;
push @gentest_options, "--threads=$threads" if defined $threads;
push @gentest_options, "--queries=$queries" if defined $queries;
push @gentest_options, "--duration=$duration" if defined $duration;
push @gentest_options, "--dsn=$master_dsns[0]" if defined $master_dsns[0];
push @gentest_options, "--dsn=$master_dsns[1]" if defined $master_dsns[1];
push @gentest_options, "--grammar=$grammar_file";
push @gentest_options, "--skip-recursive-rules" if defined $skip_recursive_rules;
push @gentest_options, map {'--redefine='.$_} @redefine_files if @redefine_files;
push @gentest_options, "--seed=$seed" if defined $seed;
push @gentest_options, "--mask=$mask" if ((defined $mask) && (not defined $no_mask));
push @gentest_options, "--mask-level=$mask_level" if defined $mask_level;
push @gentest_options, "--rows=$rows" if defined $rows;
push @gentest_options, "--views=$views[0]" if defined $views[0];
push @gentest_options, "--views1=$views[1]" if defined $views[1];
push @gentest_options, "--views2=$views[2]" if defined $views[2];
push @gentest_options, "--varchar-length=$varchar_len" if defined $varchar_len;
push @gentest_options, "--xml-output=$xml_output" if defined $xml_output;
push @gentest_options, "--report-xml-tt" if defined $report_xml_tt;
push @gentest_options, "--report-xml-tt-type=$report_xml_tt_type" if defined $report_xml_tt_type;
push @gentest_options, "--report-xml-tt-dest=$report_xml_tt_dest" if defined $report_xml_tt_dest;
push @gentest_options, "--debug" if defined $debug;
push @gentest_options, "--filter=$filter" if defined $filter;
push @gentest_options, "--valgrind" if defined $valgrind;
push @gentest_options, "--valgrind-xml" if defined $valgrind_xml;
push @gentest_options, "--testname=$testname" if defined $testname;
push @gentest_options, "--sqltrace".(length($sqltrace)>0 ? "=$sqltrace" : '' ) if defined $sqltrace;
push @gentest_options, "--logfile=$logfile" if defined $logfile;
push @gentest_options, "--logconf=$logconf" if defined $logconf;
push @gentest_options, "--report-tt-logdir=$report_tt_logdir" if defined $report_tt_logdir;
push @gentest_options, "--querytimeout=$querytimeout" if defined $querytimeout;
# Push the number of "worker" threads into the environment.
# lib/GenTest/Generator/FromGrammar.pm will generate a corresponding grammar element.
$ENV{RQG_THREADS}= $threads;
my $gentest_result = system("perl ".($Carp::Verbose?"-MCarp=verbose ":"").
"$ENV{RQG_HOME}gentest.pl ".join(' ', @gentest_options)) >> 8;
say("gentest.pl exited with exit status ".status2text($gentest_result). " ($gentest_result)");
if ($gentest_result != STATUS_OK and $store_binaries) {
foreach my $s (1..2)
{
last if not defined $vardirs[$s-1] or not defined $basedirs[$s-1];
if (osWindows()) {
my $file= _find( [$basedirs[$s-1]], ["sql/Debug","sql/RelWithDebInfo","sql/Release","bin"],'mysqld.exe' );
system("xcopy \"$file\" \"".$vardirs[$s-1]."\"") if -e $file;
$file= _find( [$basedirs[$s-1]], ["sql/Debug","sql/RelWithDebInfo","sql/Release","bin"],'mysqld.pdb' );
system("xcopy \"$file\" \"".$vardirs[$s-1]."\"") if -e $file;
}
else {
my $file= _find( [$basedirs[$s-1]], ["sql","libexec","bin","sbin"],'mysqld' );
system("cp $file ".$vardirs[$s-1]) if -e $file;
}
}
}
if ($lcov) {
say("Trying to generate a genhtml lcov report in ".tmpdir()."/rqg-lcov-".abs($$)." ...");
system("lcov --quiet --directory $basedirs[0] --capture --output-file ".tmpdir()."/lcov-rqg.info");
system("genhtml --quiet --no-sort --output-directory=".tmpdir()."/rqg-lcov-".abs($$)." ".tmpdir()."/lcov-rqg.info");
say("genhtml lcov report may have been generated in ".tmpdir()."/rqg-lcov-".abs($$)." .");
}
exit_test($gentest_result);
sub help {
print <<EOF
Copyright (c) 2008,2011 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.
$0 - Run a complete random query generation test, including server start with replication and master/slave verification
Options related to one standalone MySQL server:
--basedir : Specifies the base directory of the stand-alone MySQL installation;
--mysqld : Options passed to the MySQL server
--vardir : Optional. (default \$basedir/mysql-test/var);
Options related to two MySQL servers
--basedir1 : Specifies the base directory of the first MySQL installation;
--basedir2 : Specifies the base directory of the second MySQL installation;
--mysqld1 : Options passed to the first MySQL server
--mysqld2 : Options passed to the second MySQL server
--vardir1 : Optional. (default \$basedir1/mysql-test/var);
--vardir2 : Optional. (default \$basedir2/mysql-test/var);
General options
--appverif : Enable or disable appverif before starting server1.
The absence of value means that
it will be neither enabled nor disabled, so whatever system-wide value is used, will be preserved.
If set to 'enabled', it will be enabled for 'mysqld.exe' before starting the server and disabled
immediately after. If set to 'disabled', it will be disabled for 'mysqld.exe' before starting the server,
and left this way after. The value is ignored for non-Windows systems.
--grammar : Grammar file to use when generating queries (REQUIRED);
--redefine : Grammar file to redefine and/or add rules to the given grammar
--rpl_mode : Replication type to use (statement|row|mixed) (default: no replication);
--vardir1 : Optional.
--vardir2 : Optional.
--engine : Table engine to use when creating tables with gendata (default no ENGINE in CREATE TABLE);
--threads : Number of threads to spawn (default $default_threads);
--queries : Number of queries to execute per thread (default $default_queries);
--duration : Duration of the test in seconds (default $default_duration seconds);
--validator : The validators to use
--reporter : The reporters to use
--transformer: The transformers to use (turns on --validator=transformer). Accepts comma separated list
--querytimeout: The timeout to use for the QueryTimeout reporter
--gendata : Generate data option. Passed to gentest.pl
--logfile : Generates rqg output log at the path specified.(Requires the module Log4Perl)
--seed : PRNG seed. Passed to gentest.pl
--mask : Grammar mask. Passed to gentest.pl
--mask-level: Grammar mask level. Passed to gentest.pl
--rows : No of rows. Passed to gentest.pl
--varchar-length: length of strings. passed to gentest.pl
--xml-output: Passed to gentest.pl
--report-xml-tt: Passed to gentest.pl
--report-xml-tt-type: Passed to gentest.pl
--report-xml-tt-dest: Passed to gentest.pl
--testname : Name of test, used for reporting purposes
--sqltrace : Print all generated SQL statements.
Optional: Specify --sqltrace=MarkErrors to mark invalid statements.
--views : Generate views. Optionally specify view type (algorithm) as option value. Passed to gentest.pl.
Different values can be provided to two servers through --views1 | --views2
--valgrind : Passed to gentest.pl
--valgrind_options: The valgrind options to use
--valgrind-xml: Enables valgrind with --xml=yes and ValgrindXMLErrors reporter that processes the XML output and reports issues found
--wait-for-debugger: Pause and wait for keypress after server startup to allow attaching a debugger to the server process.
--filter : Passed to gentest.pl
--mem : Passed to mtr
--mtr-build-thread: Value used for MTR_BUILD_THREAD when servers are started and accessed
--short_column_names: Use short column names in gendata (c<number>)
--strict_fields: Disable all AI applied to columns defined in \$fields in the gendata file. Allows for very specific column definitions
--freeze_time: Freeze time for each query so that CURRENT_TIMESTAMP gives the same result for all transformers/validators
--debug : Debug mode
--help : This help message
If you specify --basedir1 and --basedir2 or --vardir1 and --vardir2, two servers will be started and the results from the queries
will be compared between them.
EOF
;
print "$0 arguments were: ".join(' ', @ARGV_saved)."\n";
exit_test(STATUS_UNKNOWN_ERROR);
}
sub exit_test {
my $status = shift;
print isoTimestamp()." [$$] $0 will exit with exit status ".status2text($status)." ($status)\n";
# shutdown any remaining mysqld servers that were
# started by this script (If they haven't been
# shutdown by the Shutdown reporter already)
foreach my $vardir (@vardirs) {
foreach my $role ('master','slave') {
my $pid_file = "$vardir/run/$role.pid";
if(open(PIDFILE, $pid_file)) {
my $pid = <PIDFILE>;
chomp $pid;
kill("TERM",$pid);
close(PIDFILE);
}
}
}
# exit
safe_exit($status);
}
sub _find {
my($bases, $subdir, @names) = @_;
foreach my $base (@$bases) {
foreach my $s (@$subdir) {
foreach my $n (@names) {
my $path = $base."/".$s."/".$n;
return $path if -f $path;
}
}
}
my $paths = "";
foreach my $base (@$bases) {
$paths .= join(",",map {"'".$base."/".$_."'"} @$subdir).",";
}
my $names = join(" or ", @names );
croak "Cannot find '$names' in $paths";
}