5203565ae5afb645e7ca26353deca200c3004a1f
[dbsrgits/DBIx-Class.git] / t / admin / 10script.t
1 # vim: filetype=perl
2 use strict;
3 use warnings;
4
5 use Test::More;
6 use Config;
7 use lib qw(t/lib);
8 $ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
9 use DBICTest;
10
11
12 BEGIN {
13     require DBIx::Class;
14     plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for('admin_script')
15       unless DBIx::Class::Optional::Dependencies->req_ok_for('admin_script');
16 }
17
18 my @json_backends = qw/XS JSON DWIW/;
19 my $tests_per_run = 5;
20 plan tests => ($tests_per_run * @json_backends) + 1;
21
22
23 # test the script is setting @INC properly
24 test_exec (qw| -It/lib/testinclude --schema=DBICTestAdminInc --insert --connect=[] |);
25 cmp_ok ( $? >> 8, '==', 70, 'Correct exit code from connecting a custom INC schema' );
26
27 for my $js (@json_backends) {
28
29     eval {JSON::Any->import ($js) };
30     SKIP: {
31         skip ("Json backend $js is not available, skip testing", $tests_per_run) if $@;
32
33         $ENV{JSON_ANY_ORDER} = $js;
34         eval { test_dbicadmin () };
35         diag $@ if $@;
36     }
37 }
38
39 sub test_dbicadmin {
40     my $schema = DBICTest->init_schema( sqlite_use_file => 1 );  # reinit a fresh db for every run
41
42     my $employees = $schema->resultset('Employee');
43
44     test_exec( default_args(), qw|--op=insert --set={"name":"Matt"}| );
45     ok( ($employees->count()==1), "$ENV{JSON_ANY_ORDER}: insert count" );
46
47     my $employee = $employees->find(1);
48     ok( ($employee->name() eq 'Matt'), "$ENV{JSON_ANY_ORDER}: insert valid" );
49
50     test_exec( default_args(), qw|--op=update --set={"name":"Trout"}| );
51     $employee = $employees->find(1);
52     ok( ($employee->name() eq 'Trout'), "$ENV{JSON_ANY_ORDER}: update" );
53
54     test_exec( default_args(), qw|--op=insert --set={"name":"Aran"}| );
55
56     SKIP: {
57         skip ("MSWin32 doesn't support -| either", 1) if $^O eq 'MSWin32';
58
59         open(my $fh, "-|",  ( 'script/dbicadmin', default_args(), qw|--op=select --attrs={"order_by":"name"}| ) ) or die $!;
60         my $data = do { local $/; <$fh> };
61         close($fh);
62         if (!ok( ($data=~/Aran.*Trout/s), "$ENV{JSON_ANY_ORDER}: select with attrs" )) {
63           diag ("data from select is $data")
64         };
65     }
66
67     test_exec( default_args(), qw|--op=delete --where={"name":"Trout"}| );
68     ok( ($employees->count()==1), "$ENV{JSON_ANY_ORDER}: delete" );
69 }
70
71 sub default_args {
72   return (
73     qw|--quiet --schema=DBICTest::Schema --class=Employee|,
74     q|--connect=["dbi:SQLite:dbname=t/var/DBIxClass.db","","",{"AutoCommit":1}]|,
75     qw|--force -I testincludenoniterference|,
76   );
77 }
78
79 # Why do we need this crap? Apparently MSWin32 can not pass through quotes properly
80 # (sometimes it will and sometimes not, depending on what compiler was used to build
81 # perl). So we go the extra mile to escape all the quotes. We can't also use ' instead
82 # of ", because JSON::XS (proudly) does not support "malformed JSON" as the author
83 # calls it. Bleh.
84 #
85 sub test_exec {
86   my $perl = $^X;
87
88   my @args = ('script/dbicadmin', @_);
89
90   if ( $^O eq 'MSWin32' ) {
91     $perl = qq|"$perl"|;    # execution will fail if $^X contains paths
92     for (@args) {
93       $_ =~ s/"/\\"/g;
94     }
95   }
96
97   system ($perl, @args);
98 }