Convert t/22dump.t to done_testing()
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 22dump.t
CommitLineData
fa994d3c 1use strict;
2use Test::More;
c38ec663 3use Test::Exception;
4use Test::Warn;
fa994d3c 5use lib qw(t/lib);
3e3c3fc7 6use File::Path;
fa994d3c 7use make_dbictest_db;
c213fd3d 8use dbixcsl_test_dir qw/$tdir/;
fa994d3c 9
c213fd3d 10my $dump_path = "$tdir/dump";
3e3c3fc7 11
fdd8ff16 12
3e3c3fc7 13{
14 package DBICTest::Schema::1;
15 use base qw/ DBIx::Class::Schema::Loader /;
16 __PACKAGE__->loader_options(
3e3c3fc7 17 dump_directory => $dump_path,
18 );
19}
20
fa994d3c 21{
3e3c3fc7 22 package DBICTest::Schema::2;
fa994d3c 23 use base qw/ DBIx::Class::Schema::Loader /;
24 __PACKAGE__->loader_options(
3e3c3fc7 25 dump_directory => $dump_path,
28b4691d 26 really_erase_my_files => 1,
fa994d3c 27 );
fa994d3c 28}
29
520107ef 30rmtree($dump_path, 1, 1);
3e3c3fc7 31
c38ec663 32lives_ok {
33 warnings_exist { DBICTest::Schema::1->connect($make_dbictest_db::dsn) }
34 [ qr|^Dumping manual schema|, qr|^Schema dump completed| ];
35} 'no death with dump_directory set' or diag "Dump failed: $@";
3e3c3fc7 36
59cfa251 37DBICTest::Schema::1->_loader_invoked(undef);
9395f33a 38
e682950b 39SKIP: {
c38ec663 40 skip "ActiveState perl produces additional warnings", 1
e682950b 41 if ($^O eq 'MSWin32');
9395f33a 42
c38ec663 43 warnings_exist { DBICTest::Schema::1->connect($make_dbictest_db::dsn) }
44 [ qr|^Dumping manual schema|, qr|^Schema dump completed| ];
e682950b 45
46 rmtree($dump_path, 1, 1);
47}
3e3c3fc7 48
c38ec663 49lives_ok {
50 warnings_exist { DBICTest::Schema::2->connect($make_dbictest_db::dsn) }
51 [ qr|^Dumping manual schema|, qr|^Schema dump completed| ];
52} 'no death with dump_directory set (overwrite1)' or diag "Dump failed: $@";
3e3c3fc7 53
59cfa251 54DBICTest::Schema::2->_loader_invoked(undef);
c38ec663 55
56lives_ok {
57 warnings_exist { DBICTest::Schema::2->connect($make_dbictest_db::dsn) }
58 [
59 qr/^Dumping manual schema/,
60 qr|^Deleting .+Schema/2.+ due to 'really_erase_my_files'|,
61 qr|^Deleting .+Schema/2/Result/Foo.+ due to 'really_erase_my_files'|,
62 qr|^Deleting .+Schema/2/Result/Bar.+ due to 'really_erase_my_files'|,
63 qr/^Schema dump completed/
64 ];
65} 'no death with dump_directory set (overwrite2)' or diag "Dump failed: $@";
fa994d3c 66
2ee3bb7a 67done_testing();
68
7e9ee6a4 69END { rmtree($dump_path, 1, 1); }