Restructure handling of the test scratch-dir, move all activity
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / dbixcsl_dumper_tests.pm
CommitLineData
71130750 1package dbixcsl_dumper_tests;
2
3use strict;
4use Test::More;
5use File::Path;
6use IPC::Open3;
7use DBIx::Class::Schema::Loader::Utils 'dumper_squashed';
8use DBIx::Class::Schema::Loader ();
9
c213fd3d 10use dbixcsl_test_dir qw/$tdir/;
11
12my $DUMP_PATH = "$tdir/dump";
71130750 13sub cleanup {
14 rmtree($DUMP_PATH, 1, 1);
15}
16
17sub append_to_class {
18 my ($self, $class, $string) = @_;
19 $class =~ s{::}{/}g;
20 $class = $DUMP_PATH . '/' . $class . '.pm';
21 open(my $appendfh, '>>', $class) or die "Failed to open '$class' for append: $!";
22 print $appendfh $string;
23 close($appendfh);
24}
25
26sub dump_test {
27 my ($self, %tdata) = @_;
28
29
30 $tdata{options}{dump_directory} = $DUMP_PATH;
31 $tdata{options}{use_namespaces} ||= 0;
32
33 for my $dumper (\&_dump_directly, \&_dump_dbicdump) {
34 _test_dumps(\%tdata, $dumper->(%tdata));
35 }
36}
37
38
39sub _dump_directly {
40 my %tdata = @_;
41
42 my $schema_class = $tdata{classname};
43
44 no strict 'refs';
45 @{$schema_class . '::ISA'} = ('DBIx::Class::Schema::Loader');
46 $schema_class->loader_options(%{$tdata{options}});
47
48 my @warns;
49 eval {
50 local $SIG{__WARN__} = sub { push(@warns, @_) };
51 $schema_class->connect(_get_dsn(\%tdata));
52 };
53 my $err = $@;
54 $schema_class->storage->disconnect if !$err && $schema_class->storage;
55 undef *{$schema_class};
56
57 _check_error($err, $tdata{error});
58
59 return @warns;
60}
61
62sub _dump_dbicdump {
63 my %tdata = @_;
64
65 # use $^X so we execute ./script/dbicdump with the same perl binary that the tests were executed with
66 my @cmd = ($^X, qw(./script/dbicdump));
67
68 while (my ($opt, $val) = each(%{ $tdata{options} })) {
69 $val = dumper_squashed $val if ref $val;
70 push @cmd, '-o', "$opt=$val";
71 }
72
73 push @cmd, $tdata{classname}, _get_dsn(\%tdata);
74
75 # make sure our current @INC gets used by dbicdump
76 use Config;
77 local $ENV{PERL5LIB} = join $Config{path_sep}, @INC, ($ENV{PERL5LIB} || '');
78
79 my ($in, $out, $err);
80 my $pid = open3($in, $out, $err, @cmd);
81
82 my @out = <$out>;
83 waitpid($pid, 0);
84
85 my ($error, @warns);
86
87 if ($? >> 8 != 0) {
88 $error = $out[0];
89 _check_error($error, $tdata{error});
90 }
91 else {
92 @warns = @out;
93 }
94
95 return @warns;
96}
97
98sub _get_dsn {
99 my $opts = shift;
100
101 my $test_db_class = $opts->{test_db_class} || 'make_dbictest_db';
102
103 eval "require $test_db_class;";
104 die $@ if $@;
105
106 my $dsn = do {
107 no strict 'refs';
108 ${$test_db_class . '::dsn'};
109 };
110
111 return $dsn;
112}
113
114sub _check_error {
115 my ($got, $expected) = @_;
116
117 return unless $got;
118
119 if (not $expected) {
120 fail "Unexpected error in " . ((caller(1))[3]) . ": $got";
121 return;
122 }
123
124 if (ref $expected eq 'Regexp') {
125 like $got, $expected, 'error matches expected pattern';
126 return;
127 }
128
129 is $got, $expected, 'error matches';
130}
131
132
133sub _test_dumps {
134 my ($tdata, @warns) = @_;
135
136 my %tdata = %{$tdata};
137
138 my $schema_class = $tdata{classname};
139 my $check_warns = $tdata{warnings};
140 is(@warns, @$check_warns, "$schema_class warning count");
141
142 for(my $i = 0; $i <= $#$check_warns; $i++) {
143 like($warns[$i], $check_warns->[$i], "$schema_class warning $i");
144 }
145
146 my $file_regexes = $tdata{regexes};
147 my $file_neg_regexes = $tdata{neg_regexes} || {};
148 my $schema_regexes = delete $file_regexes->{schema};
149
150 my $schema_path = $DUMP_PATH . '/' . $schema_class;
151 $schema_path =~ s{::}{/}g;
152
153 _dump_file_like($schema_path . '.pm', @$schema_regexes) if $schema_regexes;
154
155 foreach my $src (keys %$file_regexes) {
156 my $src_file = $schema_path . '/' . $src . '.pm';
157 _dump_file_like($src_file, @{$file_regexes->{$src}});
158 }
159 foreach my $src (keys %$file_neg_regexes) {
160 my $src_file = $schema_path . '/' . $src . '.pm';
161 _dump_file_not_like($src_file, @{$file_neg_regexes->{$src}});
162 }
163}
164
165sub _dump_file_like {
166 my $path = shift;
167 open(my $dumpfh, '<', $path) or die "Failed to open '$path': $!";
168 my $contents = do { local $/; <$dumpfh>; };
169 close($dumpfh);
170 like($contents, $_, "$path matches $_") for @_;
171}
172
173sub _dump_file_not_like {
174 my $path = shift;
175 open(my $dumpfh, '<', $path) or die "Failed to open '$path': $!";
176 my $contents = do { local $/; <$dumpfh>; };
177 close($dumpfh);
178 unlike($contents, $_, "$path does not match $_") for @_;
179}
180
181END {
182 __PACKAGE__->cleanup unless $ENV{SCHEMA_LOADER_TESTS_NOCLEANUP}
183}