'Test::More' => '0.88',
'Test::Differences' => '0',
'Test::Exception' => '0.31',
+ 'Text::ParseWords' => '0',
},
};
use FindBin qw($Bin);
use Test::More;
use Test::SQL::Translator qw(maybe_plan);
+use Text::ParseWords qw(shellwords);
BEGIN {
maybe_plan(
my $tmp = mktemp('sqlXXXXX');
ok(-e $sqlt_diagram);
-my @cmd = ($^X, $sqlt_diagram, "-d", "MySQL", "-o", $tmp, $test_data);
+my @cmd = ($^X, shellwords($ENV{HARNESS_PERL_SWITCHES}), $sqlt_diagram, "-d", "MySQL", "-o", $tmp, $test_data);
eval { system(@cmd); };
ok(!$@ && ($? == 0));
ok(-e $tmp);
use Test::More;
use Test::SQL::Translator qw(maybe_plan);
use Symbol qw(gensym);
+use Text::ParseWords qw(shellwords);
BEGIN {
maybe_plan(
close $fh or die "Can't close file '$filename': $!";
my $out;
-my $pid = open3( undef, $out, undef, $^X, '-cw', $filename );
+my $pid = open3( undef, $out, undef, $^X, shellwords($ENV{HARNESS_PERL_SWITCHES}), '-cw', $filename );
my $res = do { local $/; <$out> };
waitpid($pid, 0);
use IPC::Open3;
use Test::More;
use Test::SQL::Translator qw(maybe_plan);
+use Text::ParseWords qw(shellwords);
my @script = qw(script sqlt-diff);
my @create1 = qw(data sqlite create.sql);
: catfile($Bin, "t", @mysql_create2);
# Test for differences
-my $out = _run_cmd ($^X, $sqlt_diff, "$mysql_create1=MySQL", "$mysql_create2=MySQL");
+my $out = _run_cmd ($sqlt_diff, "$mysql_create1=MySQL", "$mysql_create2=MySQL");
like($out, qr/CHANGE COLUMN person_id/, "Detected altered 'person_id' field");
like($out, qr/CHANGE COLUMN iq/, "Detected altered 'iq' field");
unlike($out, qr/ADD PRIMARY KEY/, "Primary key looks different when it shouldn't");
# Test for quoted output
-$out = _run_cmd ($^X, $sqlt_diff, '--quote=`', "$mysql_create1=MySQL", "$mysql_create2=MySQL");
+$out = _run_cmd ($sqlt_diff, '--quote=`', "$mysql_create1=MySQL", "$mysql_create2=MySQL");
like($out, qr/ALTER TABLE `person`/, "Quoted table name");
like($out, qr/CHANGE COLUMN `person_id`/, "Quoted 'person_id' field");
like($out, qr/CHANGE COLUMN `age`/, "Quoted 'age' field");
# Test for sameness
-$out = _run_cmd ($^X, $sqlt_diff, "$mysql_create1=MySQL", "$mysql_create1=MySQL");
+$out = _run_cmd ($sqlt_diff, "$mysql_create1=MySQL", "$mysql_create1=MySQL");
like($out, qr/No differences found/, "Properly detected no differences");
sub _run_cmd {
my $out;
- my $pid = open3( undef, $out, undef, @_ );
+ my $pid = open3( undef, $out, undef, $^X, shellwords($ENV{HARNESS_PERL_SWITCHES}), @_ );
my $res = do { local $/; <$out> };
waitpid($pid, 0);
$res;
use Test::More;
use IPC::Open3;
use Test::SQL::Translator qw(maybe_plan);
+use Text::ParseWords qw(shellwords);
my @script = qw(script sqlt-diff-old);
my @create1 = qw(data sqlite create.sql);
}
ok(-e $sqlt_diff, 'Found sqlt-diff script');
-my $out = _run_cmd ($^X, $sqlt_diff, "$create1=SQLite", "$create2=SQLite");
+my $out = _run_cmd ($sqlt_diff, "$create1=SQLite", "$create2=SQLite");
like($out, qr/-- Target database SQLite is untested/, "Detected 'untested' comment");
like($out, qr/ALTER TABLE person CHANGE iq/, "Detected altered 'iq' field");
like($out, qr/ALTER TABLE person ADD is_rock_star/,
"Detected missing rock star field");
-$out = _run_cmd ($^X, $sqlt_diff, "$create1=SQLite", "$create1=SQLite");
+$out = _run_cmd ($sqlt_diff, "$create1=SQLite", "$create1=SQLite");
like($out, qr/There were no differences/, "Properly detected no differences");
: catfile($Bin, "t", @mysql_create2);
# Test for differences
-$out = _run_cmd ($^X, $sqlt_diff, "$mysql_create1=MySQL", "$mysql_create2=MySQL");
+$out = _run_cmd ($sqlt_diff, "$mysql_create1=MySQL", "$mysql_create2=MySQL");
unlike($out, qr/-- Target database MySQL is untested/, "Did not detect 'untested' comment");
like($out, qr/ALTER TABLE person CHANGE person_id/, "Detected altered 'person_id' field");
unlike($out, qr/ALTER TABLE employee ADD PRIMARY KEY/, "Primary key looks different when it shouldn't");
# Test for sameness
-$out = _run_cmd ($^X, $sqlt_diff, "$mysql_create1=MySQL", "$mysql_create1=MySQL");
+$out = _run_cmd ($sqlt_diff, "$mysql_create1=MySQL", "$mysql_create1=MySQL");
like($out, qr/There were no differences/, "Properly detected no differences");
? catfile($Bin, @oracle_create2)
: catfile($Bin, "t", @oracle_create2);
-$out = _run_cmd ($^X, $sqlt_diff, "$oracle_create1=Oracle", "$oracle_create2=Oracle");
+$out = _run_cmd ($sqlt_diff, "$oracle_create1=Oracle", "$oracle_create2=Oracle");
unlike($out, qr/-- Target database Oracle is untested/, "Did not detect 'untested' comment");
like($out, qr/ALTER TABLE TABLE1 DROP FOREIGN KEY/,
sub _run_cmd {
my $out;
- my $pid = open3( undef, $out, undef, @_ );
+ my $pid = open3( undef, $out, undef, $^X, shellwords($ENV{HARNESS_PERL_SWITCHES}), @_ );
my $res = do { local $/; <$out> };
waitpid($pid, 0);
$res;