mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
91 lines
2.7 KiB
Perl
91 lines
2.7 KiB
Perl
#!/usr/bin/env perl
|
|
|
|
BEGIN {
|
|
die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
|
|
unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
|
|
unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
|
|
};
|
|
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
use English qw(-no_match_vars);
|
|
use Test::More;
|
|
|
|
use PerconaTest;
|
|
use Sandbox;
|
|
require "$trunk/bin/pt-table-sync";
|
|
|
|
|
|
my $vp = new VersionParser();
|
|
my $dp = new DSNParser(opts=>$dsn_opts);
|
|
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
|
my $master_dbh = $sb->get_dbh_for('master');
|
|
my $slave_dbh = $sb->get_dbh_for('slave1');
|
|
|
|
if ( !$master_dbh ) {
|
|
plan skip_all => 'Cannot connect to sandbox master';
|
|
}
|
|
elsif ( !$slave_dbh ) {
|
|
plan skip_all => 'Cannot connect to sandbox slave';
|
|
}
|
|
else {
|
|
plan tests => 2;
|
|
}
|
|
|
|
$sb->wipe_clean($master_dbh);
|
|
$sb->wipe_clean($slave_dbh);
|
|
|
|
my $output;
|
|
my @args = ('h=127.1,P=12345,u=test_907,p=msandbox', 'P=12346,u=msandbox', qw(--print --no-check-slave -d issue_907));
|
|
|
|
# #############################################################################
|
|
# Issue 907: Add --[no]check-privileges
|
|
# #############################################################################
|
|
|
|
#1) get the script to create the underprivileged user
|
|
|
|
$master_dbh->do('drop database if exists issue_907');
|
|
$master_dbh->do('create database issue_907');
|
|
$master_dbh->do('create table issue_907.t (i int)');
|
|
$slave_dbh->do('drop database if exists issue_907');
|
|
$slave_dbh->do('create database issue_907');
|
|
$slave_dbh->do('create table issue_907.t (i int)');
|
|
$slave_dbh->do('insert into issue_907.t values (1)');
|
|
|
|
# On 5.1 user needs SUPER to set binlog_format, which mk-table-sync does.
|
|
`/tmp/12345/use -uroot -e "GRANT SUPER, SELECT, SHOW DATABASES ON *.* TO 'test_907'\@'localhost' IDENTIFIED BY 'msandbox'"`;
|
|
|
|
#2) run and get output to see what it's like when it's broken.
|
|
$output = output(
|
|
sub { pt_table_sync::main(@args) },
|
|
stderr => 1,
|
|
);
|
|
like(
|
|
$output,
|
|
qr/User test_907\@localhost does not have all necessary privileges/,
|
|
"Can't --print without all privs"
|
|
);
|
|
|
|
#3) run again to see what output is like when it works
|
|
$output = output(
|
|
sub { pt_table_sync::main(@args, '--no-check-privileges') },
|
|
stderr => 1,
|
|
trf => \&remove_traces,
|
|
);
|
|
is(
|
|
$output,
|
|
"DELETE FROM `issue_907`.`t` WHERE `i`='1' LIMIT 1;
|
|
",
|
|
"Can --print without all privs and --no-check-privileges"
|
|
);
|
|
|
|
#4) clean up user
|
|
$master_dbh->do('DROP USER \'test_907\'@\'localhost\'');
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
$sb->wipe_clean($master_dbh);
|
|
$sb->wipe_clean($slave_dbh);
|
|
exit;
|