Fix Win32 test skip counts for good (RT #30568, Kenichi Ishigaki)
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 22dump.t
CommitLineData
fa994d3c 1use strict;
2use Test::More;
3use lib qw(t/lib);
3e3c3fc7 4use File::Path;
fa994d3c 5use make_dbictest_db;
6
3e3c3fc7 7my $dump_path = './t/_dump';
8
9{
10 package DBICTest::Schema::1;
11 use base qw/ DBIx::Class::Schema::Loader /;
12 __PACKAGE__->loader_options(
3e3c3fc7 13 dump_directory => $dump_path,
14 );
15}
16
fa994d3c 17{
3e3c3fc7 18 package DBICTest::Schema::2;
fa994d3c 19 use base qw/ DBIx::Class::Schema::Loader /;
20 __PACKAGE__->loader_options(
3e3c3fc7 21 dump_directory => $dump_path,
28b4691d 22 really_erase_my_files => 1,
fa994d3c 23 );
fa994d3c 24}
25
7cab3ab7 26plan tests => 5;
3e3c3fc7 27
520107ef 28rmtree($dump_path, 1, 1);
3e3c3fc7 29
30eval { DBICTest::Schema::1->connect($make_dbictest_db::dsn) };
31ok(!$@, 'no death with dump_directory set') or diag "Dump failed: $@";
32
59cfa251 33DBICTest::Schema::1->_loader_invoked(undef);
9395f33a 34
e682950b 35SKIP: {
2ffd6b4c 36 my @warnings_regexes = (
37 qr|Dumping manual schema|,
38 qr|Schema dump completed|,
39 );
40
41 skip "ActiveState perl produces additional warnings", scalar @warnings_regexes
e682950b 42 if ($^O eq 'MSWin32');
9395f33a 43
e682950b 44 my @warn_output;
45 {
46 local $SIG{__WARN__} = sub { push(@warn_output, @_) };
47 DBICTest::Schema::1->connect($make_dbictest_db::dsn);
48 }
3e3c3fc7 49
e682950b 50 like(shift @warn_output, $_) foreach (@warnings_regexes);
51
52 rmtree($dump_path, 1, 1);
53}
3e3c3fc7 54
55eval { DBICTest::Schema::2->connect($make_dbictest_db::dsn) };
02356864 56ok(!$@, 'no death with dump_directory set (overwrite1)')
57 or diag "Dump failed: $@";
3e3c3fc7 58
59cfa251 59DBICTest::Schema::2->_loader_invoked(undef);
3e3c3fc7 60eval { DBICTest::Schema::2->connect($make_dbictest_db::dsn) };
02356864 61ok(!$@, 'no death with dump_directory set (overwrite2)')
62 or diag "Dump failed: $@";
fa994d3c 63
7e9ee6a4 64END { rmtree($dump_path, 1, 1); }