The system test package is installed on a system so it's easier to manage code and run the test as it's branched and no need to copy scripts to system host. Change-Id: I9ad3ff7fb16dd843d81a4c9ecfbbe1c0d42fe1c6changes/91/37091/3
parent
f0a4ab88cb
commit
5d41373b17
@ -0,0 +1,248 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use DBI;
|
||||||
|
use Data::Compare;
|
||||||
|
use Getopt::Long;
|
||||||
|
use Carp;
|
||||||
|
|
||||||
|
my $argv = {
|
||||||
|
result => 'result.tap',
|
||||||
|
pass_db1 => '',
|
||||||
|
pass_db2 => '',
|
||||||
|
};
|
||||||
|
get_options();
|
||||||
|
|
||||||
|
my $queries = {
|
||||||
|
tables => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
TABLE_NAME,
|
||||||
|
ENGINE,
|
||||||
|
TABLE_COLLATION,
|
||||||
|
CREATE_OPTIONS,
|
||||||
|
TABLE_NAME AS key_col
|
||||||
|
FROM information_schema.TABLES
|
||||||
|
WHERE TABLE_SCHEMA = DATABASE()
|
||||||
|
AND TABLE_TYPE = 'BASE TABLE'
|
||||||
|
ORDER BY TABLE_NAME
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
|
||||||
|
columns => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
c.TABLE_NAME,
|
||||||
|
c.COLUMN_NAME,
|
||||||
|
c.COLUMN_DEFAULT,
|
||||||
|
c.IS_NULLABLE,
|
||||||
|
c.COLUMN_TYPE,
|
||||||
|
c.EXTRA,
|
||||||
|
c.CHARACTER_SET_NAME,
|
||||||
|
c.COLLATION_NAME,
|
||||||
|
c.ORDINAL_POSITION,
|
||||||
|
CONCAT(c.TABLE_NAME, '_', c.COLUMN_NAME) AS key_col
|
||||||
|
FROM information_schema.COLUMNS c
|
||||||
|
INNER JOIN information_schema.TABLES t
|
||||||
|
ON c.TABLE_NAME = t.TABLE_NAME
|
||||||
|
WHERE t.TABLE_TYPE = 'BASE TABLE'
|
||||||
|
AND c.TABLE_SCHEMA = DATABASE()
|
||||||
|
AND t.TABLE_SCHEMA = DATABASE()
|
||||||
|
ORDER BY c.TABLE_NAME, c.COLUMN_NAME
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
|
||||||
|
indexes => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
TABLE_NAME,
|
||||||
|
INDEX_NAME,
|
||||||
|
NON_UNIQUE,
|
||||||
|
COLUMN_NAME,
|
||||||
|
SEQ_IN_INDEX,
|
||||||
|
COLLATION,
|
||||||
|
SUB_PART,
|
||||||
|
NULLABLE,
|
||||||
|
INDEX_TYPE,
|
||||||
|
CONCAT(TABLE_NAME, '_', INDEX_NAME, '_', SEQ_IN_INDEX) AS key_col
|
||||||
|
FROM information_schema.STATISTICS
|
||||||
|
WHERE TABLE_SCHEMA = DATABASE()
|
||||||
|
ORDER BY TABLE_NAME, INDEX_NAME, COLUMN_NAME
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
|
||||||
|
constraints => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
rc.CONSTRAINT_NAME,
|
||||||
|
rc.TABLE_NAME,
|
||||||
|
rc.REFERENCED_TABLE_NAME,
|
||||||
|
rc.UPDATE_RULE,
|
||||||
|
rc.DELETE_RULE,
|
||||||
|
cu.REFERENCED_COLUMN_NAME,
|
||||||
|
cu.COLUMN_NAME,
|
||||||
|
CONCAT(rc.CONSTRAINT_NAME, '_', rc.TABLE_NAME, '_', cu.COLUMN_NAME, '_', rc.REFERENCED_TABLE_NAME, '_',
|
||||||
|
cu.REFERENCED_COLUMN_NAME) AS key_col
|
||||||
|
FROM information_schema.REFERENTIAL_CONSTRAINTS rc
|
||||||
|
LEFT JOIN information_schema.KEY_COLUMN_USAGE cu
|
||||||
|
ON (rc.CONSTRAINT_NAME=cu.CONSTRAINT_NAME
|
||||||
|
AND rc.CONSTRAINT_SCHEMA=cu.CONSTRAINT_SCHEMA)
|
||||||
|
WHERE rc.CONSTRAINT_SCHEMA = DATABASE()
|
||||||
|
ORDER BY CONSTRAINT_NAME, rc.TABLE_NAME, cu.COLUMN_NAME
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
|
||||||
|
triggers => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
TRIGGER_NAME,
|
||||||
|
EVENT_MANIPULATION,
|
||||||
|
ACTION_STATEMENT,
|
||||||
|
ACTION_TIMING,
|
||||||
|
EVENT_OBJECT_SCHEMA,
|
||||||
|
EVENT_OBJECT_TABLE,
|
||||||
|
CONCAT(TRIGGER_NAME, '_', EVENT_OBJECT_TABLE) AS key_col
|
||||||
|
FROM information_schema.TRIGGERS
|
||||||
|
WHERE TRIGGER_SCHEMA = DATABASE()
|
||||||
|
ORDER BY EVENT_OBJECT_TABLE, TRIGGER_NAME
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
|
||||||
|
views => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
TABLE_NAME AS key_col,
|
||||||
|
VIEW_DEFINITION
|
||||||
|
FROM information_schema.VIEWS
|
||||||
|
WHERE TABLE_SCHEMA = DATABASE()
|
||||||
|
ORDER BY TABLE_NAME
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
|
||||||
|
routines => <<"__SQL__"
|
||||||
|
SELECT
|
||||||
|
ROUTINE_NAME AS key_col,
|
||||||
|
ROUTINE_DEFINITION,
|
||||||
|
ROUTINE_TYPE
|
||||||
|
FROM information_schema.ROUTINES
|
||||||
|
WHERE ROUTINE_SCHEMA = DATABASE()
|
||||||
|
__SQL__
|
||||||
|
,
|
||||||
|
};
|
||||||
|
|
||||||
|
my @objs_list = qw( tables columns indexes constraints triggers views routines );
|
||||||
|
|
||||||
|
my $dbh1 = DBI->connect( $argv->{connect_db1}, $argv->{user_db1}, $argv->{pass_db1},
|
||||||
|
{ RaiseError => 1 } ) or
|
||||||
|
croak("Can't connect to db1: $argv->{connect_db1}, $argv->{user_db1}, $argv->{pass_db1} ");
|
||||||
|
|
||||||
|
my $dbh2 = DBI->connect( $argv->{connect_db2}, $argv->{user_db2}, $argv->{pass_db2},
|
||||||
|
{ RaiseError => 1 } ) or
|
||||||
|
croak("Can't connect to db2: $argv->{connect_db2}, $argv->{user_db2}, $argv->{pass_db2} ");
|
||||||
|
|
||||||
|
my $exit = 0;
|
||||||
|
|
||||||
|
my ($sth1, $sth2);
|
||||||
|
my ($struct1, $struct2);
|
||||||
|
my $res = [];
|
||||||
|
foreach my $obj ( @objs_list ) {
|
||||||
|
$struct1 = $dbh1->selectall_hashref( $queries->{$obj}, 'key_col' );
|
||||||
|
$struct2 = $dbh2->selectall_hashref( $queries->{$obj}, 'key_col' );
|
||||||
|
|
||||||
|
unless ( Compare($struct1, $struct2) ) {
|
||||||
|
$exit = 1;
|
||||||
|
print_diff($struct1, $struct2, $obj, $res);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
my $number = scalar(@{$res});
|
||||||
|
my $counter = 1;
|
||||||
|
|
||||||
|
open( my $fh, '>', $argv->{result} );
|
||||||
|
if ( $number > 0 ) {
|
||||||
|
print {$fh} "1..$number\n";
|
||||||
|
foreach my $err ( @{$res} ) {
|
||||||
|
print {$fh} "not ok $counter $err\n";
|
||||||
|
$counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
print {$fh} "1..1\n";
|
||||||
|
print {$fh} "ok 1 Schemes are equal\n";
|
||||||
|
}
|
||||||
|
close($fh);
|
||||||
|
exit $exit;
|
||||||
|
|
||||||
|
sub get_options {
|
||||||
|
GetOptions(
|
||||||
|
'result=s' => \$argv->{'result'},
|
||||||
|
'connect_db1=s' => \$argv->{'connect_db1'},
|
||||||
|
'user_db1=s' => \$argv->{'user_db1'},
|
||||||
|
'pass_db1=s' => \$argv->{'pass_db1'},
|
||||||
|
'connect_db2=s' => \$argv->{'connect_db2'},
|
||||||
|
'user_db2=s' => \$argv->{'user_db2'},
|
||||||
|
'pass_db2=s' => \$argv->{'pass_db2'},
|
||||||
|
'help|h' => sub{ print_usage(); exit(0); },
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub print_usage {
|
||||||
|
my $usage =<<__USAGE__
|
||||||
|
This script compares two databases by structure and prints result in TAP format.
|
||||||
|
compare_db.pl [options]
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
--result TAP file with results
|
||||||
|
--connect_db1 DSN of the 1st schema
|
||||||
|
--user_db1 User of the 1st schema
|
||||||
|
--pass_db1 Password of the 1st schema
|
||||||
|
--connect_db2 DSN of the 2nd schema
|
||||||
|
--user_db2 User of the 2nd schema
|
||||||
|
--pass_db2 Password of the 2nd schema
|
||||||
|
|
||||||
|
--help, -h Print this message and exit
|
||||||
|
__USAGE__
|
||||||
|
;
|
||||||
|
print $usage;
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub print_diff {
|
||||||
|
my ($obj1, $obj2, $object_name, $result) = @_;
|
||||||
|
|
||||||
|
foreach my $key ( sort( keys( %{$obj1} ) ) ) {
|
||||||
|
unless ( exists($obj2->{$key}) ) {
|
||||||
|
push( @{$result}, "$object_name element: $key is missing in Schema2" );
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
foreach my $c_name ( sort( keys( %{ $obj1->{$key} } ) ) ) {
|
||||||
|
unless ( exists($obj2->{$key}->{$c_name}) ) {
|
||||||
|
push( @{$result}, "$object_name element: $key.$c_name is missing in Schema2" );
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
|
||||||
|
# The value of $obj1->{$key}->{$c_name} is the value of some object's attribute in schema
|
||||||
|
# The attribute can be NULL so in perl hash it is undef
|
||||||
|
# Check and replace undef value with literal NULL
|
||||||
|
$obj1->{$key}->{$c_name} = 'NULL' if ( ! defined($obj1->{$key}->{$c_name}) );
|
||||||
|
$obj2->{$key}->{$c_name} = 'NULL' if ( ! defined($obj2->{$key}->{$c_name}) );
|
||||||
|
|
||||||
|
if ( $obj1->{$key}->{$c_name} ne $obj2->{$key}->{$c_name} ) {
|
||||||
|
push( @{$result}, "$object_name elements: $key.$c_name are not equal: "
|
||||||
|
. "Schema1=$obj1->{$key}->{$c_name} vs Schema2=$obj2->{$key}->{$c_name}" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach my $key ( sort( keys( %{$obj2} ) ) ) {
|
||||||
|
unless ( exists($obj1->{$key}) ) {
|
||||||
|
push( @{$result}, "$object_name element: $key is missing in Schema1" );
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
foreach my $c_name ( sort( keys( %{ $obj2->{$key} } ) ) ) {
|
||||||
|
unless ( exists($obj1->{$key}->{$c_name}) ) {
|
||||||
|
push( @{$result}, "$object_name element: $key.$c_name is missing in Schema1" );
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
rm -rf results
|
||||||
|
mkdir results
|
||||||
|
|
||||||
|
if ! [[ -r /etc/ngcp-backup-tools/db-backup.conf ]]; then
|
||||||
|
echo "Cannot read mandatory config file /etc/ngcp-backup-tools/db-backup.conf" 2>&1
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
. /etc/ngcp-backup-tools/db-backup.conf
|
||||||
|
|
||||||
|
location="$(dirname "$0")"
|
||||||
|
version="$(cat /etc/ngcp_version)"
|
||||||
|
case "${version}" in
|
||||||
|
2.8|3.*|mr[3-7].*|mr8.0.*)
|
||||||
|
if [[ ! -r /etc/mysql/sipwise.cnf ]]; then
|
||||||
|
echo "Cannot read mandatory config file /etc/mysql/sipwise.cnf" 2>&1
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
. /etc/mysql/sipwise.cnf
|
||||||
|
for db in "${NGCP_DB_BACKUP_FINAL_LIST[@]}"; do
|
||||||
|
"${location}/compare_dbs.pl" \
|
||||||
|
--result="results/result_${db}.tap" \
|
||||||
|
--connect_db1="DBI:mysql:database=${db};host=sp1" \
|
||||||
|
--user_db1='sipwise' \
|
||||||
|
--pass_db1="${SIPWISE_DB_PASSWORD}" \
|
||||||
|
--connect_db2="DBI:mysql:database=${db};host=sp2" \
|
||||||
|
--user_db2='sipwise' \
|
||||||
|
--pass_db2="${SIPWISE_DB_PASSWORD}" \
|
||||||
|
|| true
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
MYSQL_CREDENTIALS='/etc/mysql/sipwise_extra.cnf'
|
||||||
|
if [[ ! -r "${MYSQL_CREDENTIALS}" ]]; then
|
||||||
|
echo "Cannot read mandatory config file '${MYSQL_CREDENTIALS}'" 2>&1
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
for db in "${NGCP_DB_BACKUP_FINAL_LIST[@]}"; do
|
||||||
|
"${location}/compare_dbs.pl" \
|
||||||
|
--result="results/result_${db}.tap" \
|
||||||
|
--connect_db1="DBI:mysql:database=${db};host=sp1;mysql_read_default_file=${MYSQL_CREDENTIALS}" \
|
||||||
|
--connect_db2="DBI:mysql:database=${db};host=sp2;mysql_read_default_file=${MYSQL_CREDENTIALS}" \
|
||||||
|
|| true
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
Reference in new issue