~drizzle-trunk/drizzle/development

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
#!/usr/bin/perl

# Copyright (c) 2008,2011 Oracle and/or its affiliates. All rights reserved.
# 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

package GenTest::App::GenTest;

@ISA = qw(GenTest);

use strict;
use Carp;
use Data::Dumper;
use File::Basename;

use GenTest;
use GenTest::Properties;
use GenTest::Constants;
use GenTest::App::Gendata;
use GenTest::App::GendataSimple;
use GenTest::IPC::Channel;
use GenTest::IPC::Process;
use GenTest::ErrorFilter;

use POSIX;
use Time::HiRes;

use GenTest::XML::Report;
use GenTest::XML::Test;
use GenTest::XML::BuildInfo;
use GenTest::XML::Transporter;
use GenTest::Constants;
use GenTest::Result;
use GenTest::Validator;
use GenTest::Executor;
use GenTest::Mixer;
use GenTest::Reporter;
use GenTest::ReporterManager;
use GenTest::Filter::Regexp;
use GenTest::Incident;

use constant PROCESS_TYPE_PARENT	=> 0;
use constant PROCESS_TYPE_PERIODIC	=> 1;
use constant PROCESS_TYPE_CHILD		=> 2;

use constant GT_CONFIG => 0;

sub new {
    my $class = shift;
    
    my $self = $class->SUPER::new({
        'config' => GT_CONFIG},@_);
    
    croak ("Need config") if not defined $self->config;

    return $self;
}

sub config {
    return $_[0]->[GT_CONFIG];
}

sub run {
    my ($self) = @_;

    $| = 1;
    my $ctrl_c = 0;
    
    $SIG{INT} = sub { $ctrl_c = 1 };
    $SIG{TERM} = sub { exit(0) };
    $SIG{CHLD} = "IGNORE" if osWindows();
    
    if (defined $ENV{RQG_HOME}) {
        $ENV{RQG_HOME} = osWindows() ? $ENV{RQG_HOME}.'\\' : $ENV{RQG_HOME}.'/';
    }
    
    my $seed = $self->config->seed;
    if ($seed eq 'time') {
        $seed = time();
        say("Converting --seed=time to --seed=$seed");
    }
    
    $ENV{RQG_DEBUG} = 1 if $self->config->debug;

    my $queries = $self->config->queries;
    $queries =~ s{K}{000}so;
    $queries =~ s{M}{000000}so;

    say("-------------------------------\nConfiguration");
    $self->config->printProps;

    if ((defined $self->config->gendata) && 
        (not defined $self->config->property('start-dirty'))) {
        foreach my $dsn (@{$self->config->dsn}) {
            next if $dsn eq '';
            my $gendata_result;
            my $datagen;
            if ($self->config->gendata eq '') {
                $datagen = GenTest::App::GendataSimple->new(dsn => $dsn,
                                                            views => $self->config->views,
                                                            engine => $self->config->engine,
                                                            sqltrace=> $self->config->sqltrace,
                                                            notnull => $self->config->notnull);
            } else {
                $datagen = GenTest::App::Gendata->new(spec_file => $self->config->gendata,
                                                      dsn => $dsn,
                                                      engine => $self->config->engine,
                                                      seed => $seed,
                                                      debug => $self->config->debug,
                                                      rows => $self->config->rows,
                                                      views => $self->config->views,
                                                      varchar_length => $self->config->property('varchar-length'),
                                                      sqltrace => $self->config->sqltrace,
                                                      notnull => $self->config->notnull);
            }
            $gendata_result = $datagen->run();
            
            return $gendata_result if $gendata_result > STATUS_OK;
        }
    }
    
    my $test_start = time();
    my $test_end = $test_start + $self->config->duration;

    my $generator_name = "GenTest::Generator::".$self->config->generator;
    say("Loading Generator $generator_name.");
    eval("use $generator_name");
    croak($@) if $@;

    my $grammar;

    if ($generator_name eq 'GenTest::Generator::FromGrammar') {
	$grammar = GenTest::Grammar->new(
	    grammar_file => $self->config->grammar
        ) if defined $self->config->grammar;

	return STATUS_ENVIRONMENT_FAILURE if not defined $grammar;

        if (defined $self->config->redefine) {
            my $patch_grammar = GenTest::Grammar->new(
                grammar_file => $self->config->redefine);
            $grammar = $grammar->patch($patch_grammar);
        }

        return STATUS_ENVIRONMENT_FAILURE if not defined $grammar;
    }
    
    my $channel = GenTest::IPC::Channel->new();
    
    my @executors;
    foreach my $i (0..2) {
        next if $self->config->dsn->[$i] eq '';
	my $executor = GenTest::Executor->newFromDSN($self->config->dsn->[$i], osWindows() ? undef : $channel);
        $executor->sqltrace($self->config->sqltrace);
	$executor->setId($i+1);
        push @executors, $executor;
	if ($executor->type() == DB_MYSQL) {
	    my $metadata_executor = GenTest::Executor->newFromDSN($self->config->dsn->[$i], osWindows() ? undef : $channel);
	    $metadata_executor->init();
	    $metadata_executor->cacheMetaData() if defined $metadata_executor->dbh();
	}
    }
    
    my $drizzle_only = $executors[0]->type == DB_DRIZZLE;
    $drizzle_only = $drizzle_only && $executors[1]->type == DB_DRIZZLE if $#executors > 0;
    
    my $mysql_only = $executors[0]->type == DB_MYSQL;
    $mysql_only = $mysql_only && $executors[1]->type == DB_MYSQL if $#executors > 0;
    
    if (not defined $self->config->reporters or $#{$self->config->reporters} < 0) {
        $self->config->reporters([]);
        if ($mysql_only || $drizzle_only) {
            $self->config->reporters(['ErrorLog', 'Backtrace']);
            push @{$self->config->reporters}, 'ValgrindXMLErrors' if (defined $self->config->property('valgrind-xml'));
            push @{$self->config->reporters}, 'ReplicationConsistency' if $self->config->rpl_mode ne '';
        }
    } else {
        ## Remove the "None" reporter
        foreach my $i (0..$#{$self->config->reporters}) {
            delete $self->config->reporters->[$i] 
                if $self->config->reporters->[$i] eq "None" 
                or $self->config->reporters->[$i] eq '';
        }
    }
    
    say("Reporters: ".($#{$self->config->reporters} > -1 ? join(', ', @{$self->config->reporters}) : "(none)"));
    
    my $reporter_manager = GenTest::ReporterManager->new();
    
    if ($mysql_only || $drizzle_only ) {
        foreach my $i (0..2) {
            next if $self->config->dsn->[$i] eq '';
            foreach my $reporter (@{$self->config->reporters}) {
                my $add_result = $reporter_manager->addReporter($reporter, {
                    dsn			=> $self->config->dsn->[$i],
                    test_start	=> $test_start,
                    test_end	=> $test_end,
                    test_duration	=> $self->config->duration,
                    properties => $self->config
                                                                } );
                return $add_result if $add_result > STATUS_OK;
            }
        }
    }

    if (not defined $self->config->validators or $#{$self->config->validators} < 0) {
        $self->config->validators([]);
        push(@{$self->config->validators}, 'ErrorMessageCorruption') 
            if ($mysql_only || $drizzle_only);
        if ($self->config->dsn->[2] ne '') {
            push @{$self->config->validators}, 'ResultsetComparator3';
        } elsif ($self->config->dsn->[1] ne '') {
            push @{$self->config->validators}, 'ResultsetComparator';
        }
        
        push @{$self->config->validators}, 'ReplicationSlaveStatus' 
            if $self->config->rpl_mode ne '' && ($mysql_only || $drizzle_only);
        push @{$self->config->validators}, 'MarkErrorLog' 
            if (defined $self->config->valgrind) && ($mysql_only || $drizzle_only);
        
        push @{$self->config->validators}, 'QueryProperties' 
            if defined $grammar && $grammar->hasProperties() && ($mysql_only || $drizzle_only);
    } else {
        ## Remove the "None" validator
        foreach my $i (0..$#{$self->config->validators}) {
            delete $self->config->validators->[$i] 
                if $self->config->validators->[$i] eq "None"
                or $self->config->validators->[$i] eq '';
        }
    }
    ## Add the transformer validator if --transformers is
    ## specified
    if (defined $self->config->transformers and 
        $#{$self->config->transformers} >= 0) {
        
        push @{$self->config->validators}, 'Transformer';
    }

    say("Validators: ".($self->config->validators and $#{$self->config->validators} > -1 ? join(', ', @{$self->config->validators}) : "(none)"));
    
    say("Transformers: ".join(', ', @{$self->config->transformers})) 
        if $self->config->transformers and $#{$self->config->transformers} > -1;
    
    my $filter_obj;
    
    $filter_obj = GenTest::Filter::Regexp->new( file => $self->config->filter ) 
        if defined $self->config->filter;
    
    say("Starting ".$self->config->threads." processes, ".
        $self->config->queries." queries each, duration ".
        $self->config->duration." seconds.");
    
    my $buildinfo;
    if (defined $self->config->property('xml-output')) {
        $buildinfo = GenTest::XML::BuildInfo->new(
            dsns => $self->config->dsn
            );
    }
    
    # XML: 
    #  Define test suite name for reporting purposes.
    #  Until we support test suites and/or reports with multiple suites/tests,
    #  we use the test name as test suite name, from config option "testname".
    #  Default test name is the basename portion of the grammar file name.
    #  If a grammar file is not given, the default is "rqg_no_name".
    my $test_suite_name = $self->config->testname;
    if (not defined $test_suite_name) {
        if (defined $self->config->grammar) {
            $test_suite_name = basename($self->config->grammar, '.yy');
        } else {
            $test_suite_name = "rqg_no_name";
        }
    }
    
    my $test = GenTest::XML::Test->new(
        id => time(),
        name => $test_suite_name,  # NOTE: Consider changing to test (or test case) name when suites are supported.
        attributes => {
            engine => $self->config->engine,
            gendata => $self->config->gendata,
            grammar => $self->config->grammar,
            threads => $self->config->threads,
            queries => $self->config->queries,
            validators => join (',', @{$self->config->validators}),
            reporters => join (',', @{$self->config->reporters}),
            seed => $seed,
            mask => $self->config->mask,
            mask_level => $self->config->property('mask-level'),
            rows => $self->config->rows,
            'varchar-length' => $self->config->property('varchar-length')
        }
        );
    
    my $report = GenTest::XML::Report->new(
        buildinfo => $buildinfo,
        name => $test_suite_name,  # NOTE: name here refers to the name of the test suite or "test".
        tests => [ $test ]
        );

    ### Start central reporting thread ####
    
    my $errorfilter = GenTest::ErrorFilter->new(channel=>$channel);
    my $errorfilter_p = GenTest::IPC::Process->new(object=>$errorfilter);
    if (!osWindows()) {
        $errorfilter_p->start();
    }
    
    ### Start children ###

    my $process_type;
    my %child_pids;
    my $id = 1;
    
    my $periodic_pid = fork();
    if ($periodic_pid == 0) {
        Time::HiRes::sleep(($self->config->threads + 1) / 10);
        say("Started periodic reporting process...");
        $process_type = PROCESS_TYPE_PERIODIC;
        $id = 0;
    } else {
        foreach my $i (1..$self->config->threads) {
            my $child_pid = fork();
            $channel->writer;
            if ($child_pid == 0) { # This is a child 
                $process_type = PROCESS_TYPE_CHILD;
                last;
            } else {
                $child_pids{$child_pid} = 1;
                $process_type = PROCESS_TYPE_PARENT;
                $seed++;
                $id++;
                Time::HiRes::sleep(0.1);	# fork slowly for more predictability
                next;
            }
        }
    }


    ### Do the job

    if ($process_type == PROCESS_TYPE_PARENT) {
        
        ### Main process
        
        if (osWindows()) {
            ## Important that this is done here in the parent after the last
            ## fork since on windows Process.pm uses threads
            $errorfilter_p->start();
        }
        # We are the parent process, wait for for all spawned processes to terminate
        my $children_died = 0;
        my $total_status = STATUS_OK;
        my $periodic_died = 0;
        
        ## Parent thread does not use channel
        $channel->close;
        
        while (1) {
            my $child_pid = wait();
            my $exit_status = $? > 0 ? ($? >> 8) : 0;

            $total_status = $exit_status if $exit_status > $total_status;
            
            if ($child_pid == $periodic_pid) {
                $periodic_died = 1;
                last;
            } else {
                $children_died++;
                delete $child_pids{$child_pid};
            }
            
            last if $exit_status >= STATUS_CRITICAL_FAILURE;
            last if $children_died == $self->config->threads;
            last if $child_pid == -1;
        }

        foreach my $child_pid (keys %child_pids) {
            say("Killing child process with pid $child_pid...");
            kill(15, $child_pid);
        }
        
        if ($periodic_died == 0) {
            # Wait for periodic process to return the status of its last execution
            Time::HiRes::sleep(1);
            say("Killing periodic reporting process with pid $periodic_pid...");
            kill(15, $periodic_pid);
            
            if (osWindows()) {
                # We use sleep() + non-blocking waitpid() due to a bug in ActiveState Perl
                Time::HiRes::sleep(1);
                waitpid($periodic_pid, &POSIX::WNOHANG() );
            } else {
                waitpid($periodic_pid, 0);
            }
            
            if ($? > -1 ) {
                my $periodic_status = $? > 0 ? $? >> 8 : 0;
                $total_status = $periodic_status if $periodic_status > $total_status;
            }
        }
        
        $errorfilter_p->kill();
        
        my @report_results;
        
        if ($total_status == STATUS_OK) {
            @report_results = $reporter_manager->report(REPORTER_TYPE_SUCCESS | REPORTER_TYPE_ALWAYS);
        } elsif (
            ($total_status == STATUS_LENGTH_MISMATCH) ||
            ($total_status == STATUS_CONTENT_MISMATCH)
            ) {
            @report_results = $reporter_manager->report(REPORTER_TYPE_DATA | REPORTER_TYPE_ALWAYS);
        } elsif ($total_status == STATUS_SERVER_CRASHED) {
            say("Server crash reported, initiating post-crash analysis...");
            @report_results = $reporter_manager->report(REPORTER_TYPE_CRASH | REPORTER_TYPE_ALWAYS);
        } elsif ($total_status == STATUS_SERVER_DEADLOCKED) {
            say("Server deadlock reported, initiating analysis...");
            @report_results = $reporter_manager->report(REPORTER_TYPE_DEADLOCK | REPORTER_TYPE_ALWAYS);
        } elsif ($total_status == STATUS_SERVER_KILLED) {
            @report_results = $reporter_manager->report(REPORTER_TYPE_SERVER_KILLED | REPORTER_TYPE_ALWAYS);
        } else {
            @report_results = $reporter_manager->report(REPORTER_TYPE_ALWAYS);
        }
        
        my $report_status = shift @report_results;
        $total_status = $report_status if $report_status > $total_status;
        $total_status = STATUS_OK if $total_status == STATUS_SERVER_KILLED;
        
        foreach my $incident (@report_results) {
            $test->addIncident($incident);
        }
        
        # If no Reporters reported an incident, and we have a test failure,
        # create an incident report and add it to the test report.
        if ((scalar(@report_results) < 1) && ($total_status != STATUS_OK)) {
            my $unreported_incident = GenTest::Incident->new(
                result      => 'fail',   # can we have other results as incidents?
                description => 'Non-zero status code from RQG test run',
                signature   => 'Exit status '.$total_status # better than nothing?
            );
            # Add the incident to the test report
            $test->addIncident($unreported_incident);
        }
        
        $test->end($total_status == STATUS_OK ? "pass" : "fail");
        
        if (defined $self->config->property('xml-output')) {
            open (XML , '>'.$self->config->property('xml-output')) or carp("Unable to open ".$self->config->property('xml-output').": $!");
            print XML $report->xml();
            close XML;
            say("XML report written to ". $self->config->property('xml-output'));
        }

        # XML Result reporting to Test Tool (TT).
        # Currently both --xml-output=<filename> and --report-xml-tt must be
        # set to trigger this.
        if (defined $self->config->property('report-xml-tt')) {
            my $xml_transporter = GenTest::XML::Transporter->new(
                type => $self->config->property('report-xml-tt-type')
            );
            # If xml-output option is not set, bail out. TODO: Make xml-output optional.
            if (not defined $self->config->property('xml-output')) {
                carp("ERROR: --xml-output=<filename> must be set when using --report-xml-tt");
            }
            my $result = $xml_transporter->sendXML(
                $self->config->property('xml-output'),
                $self->config->property('report-xml-tt-dest')
            );
            if ($result != STATUS_OK) {
                croak("Error from XML Transporter: $result");
            }
        }
        
        if ($total_status == STATUS_OK) {
            say("Test completed successfully.");
            return STATUS_OK;
        } else {
            say("Test completed with failure status ".status2text($total_status)." ($total_status)");
            return $total_status;
        }
    } elsif ($process_type == PROCESS_TYPE_PERIODIC) {
        ## Periodic does not use channel
        $channel->close();
	my $killed = 0;
	local $SIG{TERM} = sub { $killed = 1 };

        while (1) {
            my $reporter_status = $reporter_manager->monitor(REPORTER_TYPE_PERIODIC);
            $self->stop_child($reporter_status) if $reporter_status > STATUS_CRITICAL_FAILURE;
            last if $killed == 1;
            sleep(10);
        }
        $self->stop_child(STATUS_OK);
    } elsif ($process_type == PROCESS_TYPE_CHILD) {

        # We are a child process, execute the desired queries and terminate

        my $generator_obj = $generator_name->new(
            grammar => $grammar,
            varchar_length => $self->config->property('varchar-length'),
            seed => $seed + $id,
            thread_id => $id,
            mask => $self->config->mask,
            mask_level => $self->config->property('mask-level')
        );
        
        $self->stop_child(STATUS_ENVIRONMENT_FAILURE) if not defined $generator_obj;

        my $mixer = GenTest::Mixer->new(
            generator => $generator_obj,
            executors => \@executors,
            validators => $self->config->validators,
            properties =>  $self->config,
            filters => defined $filter_obj ? [ $filter_obj ] : undef
            );
        
        $self->stop_child(STATUS_ENVIRONMENT_FAILURE) if not defined $mixer;
        
        my $max_result = 0;
        
        foreach my $i (1..$queries) {
            my $result = $mixer->next();
	    if ($result > STATUS_CRITICAL_FAILURE) {
                undef $mixer;	# so that destructors are called
                $self->stop_child($result);
            }

            $max_result = $result if $result > $max_result && $result > STATUS_TEST_FAILURE;
            last if $result == STATUS_EOF;
            last if $ctrl_c == 1;
            last if time() > $test_end;
        }
        
        for my $ex (@executors) {
            $ex->disconnect;
            undef $ex;
        }

	# Forcefully deallocate the Mixer so that Validator destructors are called
	undef $mixer;
	undef $filter_obj;
        
        if ($max_result > 0) {
            say("Child process completed with error code $max_result.");
            $self->stop_child($max_result);
        } else {
            say("Child process completed successfully.");
            $self->stop_child(STATUS_OK);
        }
    } else {
        croak ("Unknown process type $process_type");
    }

}

sub stop_child {
    my ($self, $status) = @_;

    die "calling stop_child() without a \$status" if not defined $status;

    if (osWindows()) {
        exit $status;
    } else {
        safe_exit($status);
    }
}

1;