~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/test_tools/randgen/lib/GenTest/Validator/DatabaseConsistency.pm

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-10-29 15:43:40 UTC
  • mfrom: (1.2.12) (2.1.19 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029154340-2gp39el6cv8bwf2o
Tags: 1:7.2.3-2ubuntu1
* Merge from debian, remaining changes:
  - Link against boost_system because of boost_thread.
  - Add required libs to message/include.am
  - Add upstart job and adjust init script to be upstart compatible.
  - Disable -floop-parallelize-all due to gcc-4.8/4.9 compiler ICE
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57732

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008-2009 Sun Microsystems, Inc. All rights reserved.
 
2
# Use is subject to license terms.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; version 2 of the License.
 
7
#
 
8
# This program is distributed in the hope that it will be useful, but
 
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
11
# General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
 
16
# USA
 
17
 
 
18
package GenTest::Validator::DatabaseConsistency;
 
19
 
 
20
require Exporter;
 
21
@ISA = qw(GenTest::Validator GenTest);
 
22
 
 
23
use strict;
 
24
 
 
25
use DBI;
 
26
use GenTest;
 
27
use GenTest::Constants;
 
28
use GenTest::Result;
 
29
use GenTest::Validator;
 
30
 
 
31
my $tables;
 
32
my $dbh;
 
33
 
 
34
sub validate {
 
35
        my ($validator, $executors, $results) = @_;
 
36
        my $dsn = $executors->[0]->dsn();
 
37
 
 
38
        foreach my $i (0..$#$results) {
 
39
                if ($results->[$i]->status() == STATUS_TRANSACTION_ERROR) {
 
40
#                       say("Explicit rollback after query ".$results->[$i]->query());
 
41
                        $executors->[$i]->dbh()->do("ROLLBACK /* Explicit ROLLBACK after a ".$results->[$i]->errstr()." error. */ ");
 
42
                }
 
43
        }
 
44
 
 
45
        $dbh = DBI->connect($dsn) if not defined $dbh;
 
46
        $tables = $dbh->selectcol_arrayref("SHOW TABLES") if not defined $tables;
 
47
 
 
48
        foreach my $table (@$tables) {
 
49
                my ($average1, $average2, $count) = $dbh->selectrow_array("
 
50
                        SELECT
 
51
                        AVG(`col_int_key`) + AVG(`col_int`) AS average1,
 
52
                        (SUM(`col_int_key`) + SUM(`col_int`)) / COUNT(*) AS average2,
 
53
                        COUNT(*) AS count
 
54
                        FROM `$table`
 
55
                ");
 
56
 
 
57
                if (($average1 eq '') && ($count eq '')) {
 
58
                        # Server probably crashed, the SELECT returned no data
 
59
                        return STATUS_UNKNOWN_ERROR;
 
60
                }
 
61
 
 
62
                if (($average1 ne '200.0000') || ($average2 ne '200.0000')) {
 
63
                        say("Bad average for table: $table; average1: $average1; average2: $average2; count: $count; affected_rows: ".$results->[0]->affectedRows()."; query: ".$results->[0]->query());
 
64
                        return STATUS_DATABASE_CORRUPTION;
 
65
                }
 
66
        }
 
67
 
 
68
        return STATUS_OK;
 
69
}
 
70
 
 
71
1;