X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F89dbicadmin.t;h=53930c2c46002c17fa5cbe8dbdd22c66d5dce264;hb=99a836c181ec6f90907652499091709a195ba6ee;hp=39eef8300b068968b61d0cd40ee2316494a81079;hpb=1405206e4a04b6aa466abb16365009210e409914;p=dbsrgits%2FDBIx-Class.git diff --git a/t/89dbicadmin.t b/t/89dbicadmin.t index 39eef83..53930c2 100644 --- a/t/89dbicadmin.t +++ b/t/89dbicadmin.t @@ -6,10 +6,9 @@ use Test::More; use lib qw(t/lib); use DBICTest; -my $schema = DBICTest->init_schema(); -eval 'require JSON'; -plan skip_all => 'Install JSON to run this test' if ($@); +eval 'require JSON::Any'; +plan skip_all => 'Install JSON::Any to run this test' if ($@); eval 'require Text::CSV_XS'; if ($@) { @@ -17,33 +16,74 @@ if ($@) { plan skip_all => 'Install Text::CSV_XS or Text::CSV_PP to run this test' if ($@); } -plan tests => 5; +my @json_backends = qw/XS JSON DWIW Syck/; +my $tests_per_run = 5; -# the script supports double quotes round the arguments and single-quote within -# to make sure it runs on windows as well, but only if JSON::Any picks the right module +plan tests => $tests_per_run * @json_backends; +for my $js (@json_backends) { + eval {JSON::Any->import ($js) }; + SKIP: { + skip ("Json backend $js is not available, skip testing", $tests_per_run) if $@; -my $employees = $schema->resultset('Employee'); -my @cmd = ($^X, qw|script/dbicadmin --quiet --schema=DBICTest::Schema --class=Employee --tlibs|, q|--connect=["dbi:SQLite:dbname=t/var/DBIxClass.db","","",{"AutoCommit":1}]|, qw|--force --tlibs|); + $ENV{JSON_ANY_ORDER} = $js; + eval { test_dbicadmin () }; + diag $@ if $@; + } +} + +sub test_dbicadmin { + my $schema = DBICTest->init_schema( sqlite_use_file => 1 ); # reinit a fresh db for every run + + my $employees = $schema->resultset('Employee'); -system(@cmd, qw|--op=insert --set={"name":"Matt"}|); -ok( ($employees->count()==1), 'insert count' ); + system( _prepare_system_args( qw|--op=insert --set={"name":"Matt"}| ) ); + ok( ($employees->count()==1), "$ENV{JSON_ANY_ORDER}: insert count" ); -my $employee = $employees->find(1); -ok( ($employee->name() eq 'Matt'), 'insert valid' ); + my $employee = $employees->find(1); + ok( ($employee->name() eq 'Matt'), "$ENV{JSON_ANY_ORDER}: insert valid" ); -system(@cmd, qw|--op=update --set={"name":"Trout"}|); -$employee = $employees->find(1); -ok( ($employee->name() eq 'Trout'), 'update' ); + system( _prepare_system_args( qw|--op=update --set={"name":"Trout"}| ) ); + $employee = $employees->find(1); + ok( ($employee->name() eq 'Trout'), "$ENV{JSON_ANY_ORDER}: update" ); -system(@cmd, qw|--op=insert --set={"name":"Aran"}|); + system( _prepare_system_args( qw|--op=insert --set={"name":"Aran"}| ) ); -open(my $fh, "-|", @cmd, qw|--op=select --attrs={"order_by":"name"}|) or die $!; -my $data = do { local $/; <$fh> }; -close($fh); -ok( ($data=~/Aran.*Trout/s), 'select with attrs' ); + SKIP: { + skip ("MSWin32 doesn't support -| either", 1) if $^O eq 'MSWin32'; -system(@cmd, qw|--op=delete --where={"name":"Trout"}|); -ok( ($employees->count()==1), 'delete' ); + open(my $fh, "-|", _prepare_system_args( qw|--op=select --attrs={"order_by":"name"}| ) ) or die $!; + my $data = do { local $/; <$fh> }; + close($fh); + ok( ($data=~/Aran.*Trout/s), "$ENV{JSON_ANY_ORDER}: select with attrs" ); + } + system( _prepare_system_args( qw|--op=delete --where={"name":"Trout"}| ) ); + ok( ($employees->count()==1), "$ENV{JSON_ANY_ORDER}: delete" ); +} + +# Why do we need this crap? Apparently MSWin32 can not pass through quotes properly +# (sometimes it will and sometimes not, depending on what compiler was used to build +# perl). So we go the extra mile to escape all the quotes. We can't also use ' instead +# of ", because JSON::XS (proudly) does not support "malformed JSON" as the author +# calls it. Bleh. +# +sub _prepare_system_args { + my $perl = $^X; + my @args = ( + qw|script/dbicadmin --quiet --schema=DBICTest::Schema --class=Employee --tlibs|, + q|--connect=["dbi:SQLite:dbname=t/var/DBIxClass.db","","",{"AutoCommit":1}]|, + qw|--force --tlibs|, + @_, + ); + + if ( $^O eq 'MSWin32' ) { + $perl = qq|"$perl"|; # execution will fail if $^X contains paths + for (@args) { + $_ =~ s/"/\\"/g; + } + } + + return ($perl, @args); +}