X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F23dumpmore.t;h=a6f5445c4464ef20209b037cd0b2cbe3c423a1af;hb=61c8fd6d54d46095150040bd468e596572fcc378;hp=d41fb6685d511232b3057086fe8533f1c43d79fc;hpb=605fcea8ba8b59e384cc32f38dc5a9e2131fe22b;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/t/23dumpmore.t b/t/23dumpmore.t index d41fb66..a6f5445 100644 --- a/t/23dumpmore.t +++ b/t/23dumpmore.t @@ -1,48 +1,445 @@ +use warnings; use strict; + +use File::Temp (); use Test::More; -use lib qw(t/lib); -use File::Path; -use make_dbictest_db; -require DBIx::Class::Schema::Loader; -plan tests => 5; +use lib qw(t/lib); +use dbixcsl_dumper_tests; +my $t = 'dbixcsl_dumper_tests'; -plan skip_all => "ActiveState perl produces additional warnings" - if ($^O eq 'MSWin32'); +$t->cleanup; -my $dump_path = './t/_dump'; +# test loading external content +$t->dump_test( + classname => 'DBICTest::Schema::_no_skip_load_external', + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_no_skip_load_external to directory /, + qr/Schema dump completed/, + ], + regexes => { + Foo => [ + qr/package DBICTest::Schema::_no_skip_load_external::Foo;\nour \$skip_me = "bad mojo";\n1;/ + ], + }, +); -sub do_dump_test { - my ($schema_class, $opts) = @_; +# test skipping external content +$t->dump_test( + classname => 'DBICTest::Schema::_skip_load_external', + options => { + skip_load_external => 1 + }, + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_skip_load_external to directory /, + qr/Schema dump completed/, + ], + neg_regexes => { + Foo => [ + qr/package DBICTest::Schema::_skip_load_external::Foo;\nour \$skip_me = "bad mojo";\n1;/ + ], + }, +); - rmtree($dump_path, 1, 1); +$t->cleanup; +# test config_file +{ + my $config_file = File::Temp->new (UNLINK => 1); - no strict 'refs'; - @{$schema_class . '::ISA'} = ('DBIx::Class::Schema::Loader'); - $schema_class->loader_options(dump_directory => $dump_path, %$opts); + print $config_file "{ skip_relationships => 1 }\n"; + close $config_file; - my @warn_output; - eval { - local $SIG{__WARN__} = sub { push(@warn_output, @_) }; - $schema_class->connect($make_dbictest_db::dsn); - }; - my $err = $@; - $schema_class->storage->disconnect if !$err && $schema_class->storage; - undef *{$schema_class}; - return ($err, \@warn_output); + $t->dump_test( + classname => 'DBICTest::Schema::_config_file', + options => { config_file => "$config_file" }, + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_config_file to directory /, + qr/Schema dump completed/, + ], + neg_regexes => { + Foo => [ + qr/has_many/, + ], + }, + ); } +# proper exception +$t->dump_test( + classname => 'DBICTest::Schema::_clashing_monikers', + test_db_class => 'make_dbictest_db_clashing_monikers', + error => qr/tables 'bar', 'bars' reduced to the same source moniker 'Bar'/, +); + + +$t->cleanup; + +# test naming => { column_accessors => 'preserve' } +$t->dump_test( + classname => 'DBICTest::Schema::_preserve_column_accessors', + test_db_class => 'make_dbictest_db_with_unique', + options => { naming => { column_accessors => 'preserve' } }, + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_preserve_column_accessors to directory /, + qr/Schema dump completed/, + ], + neg_regexes => { + RouteChange => [ + qr/\baccessor\b/, + ], + }, +); + +$t->cleanup; + +# test naming => { monikers => 'plural' } +$t->dump_test( + classname => 'DBICTest::Schema::_plural_monikers', + options => { naming => { monikers => 'plural' } }, + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_plural_monikers to directory /, + qr/Schema dump completed/, + ], + regexes => { + Foos => [ + qr/\n=head1 NAME\n\nDBICTest::Schema::_plural_monikers::Foos\n\n=cut\n\n/, + ], + Bars => [ + qr/\n=head1 NAME\n\nDBICTest::Schema::_plural_monikers::Bars\n\n=cut\n\n/, + ], + }, +); + +$t->cleanup; + +# test naming => { monikers => 'singular' } +$t->dump_test( + classname => 'DBICTest::Schema::_singular_monikers', + test_db_class => 'make_dbictest_db_plural_tables', + options => { naming => { monikers => 'singular' } }, + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_singular_monikers to directory /, + qr/Schema dump completed/, + ], + regexes => { + Foo => [ + qr/\n=head1 NAME\n\nDBICTest::Schema::_singular_monikers::Foo\n\n=cut\n\n/, + ], + Bar => [ + qr/\n=head1 NAME\n\nDBICTest::Schema::_singular_monikers::Bar\n\n=cut\n\n/, + ], + }, +); + +$t->cleanup; + +# test naming => { monikers => 'preserve' } +$t->dump_test( + classname => 'DBICTest::Schema::_preserve_monikers', + test_db_class => 'make_dbictest_db_plural_tables', + options => { naming => { monikers => 'preserve' } }, + warnings => [ + qr/Dumping manual schema for DBICTest::Schema::_preserve_monikers to directory /, + qr/Schema dump completed/, + ], + regexes => { + Foos => [ + qr/\n=head1 NAME\n\nDBICTest::Schema::_preserve_monikers::Foos\n\n=cut\n\n/, + ], + Bars => [ + qr/\n=head1 NAME\n\nDBICTest::Schema::_preserve_monikers::Bars\n\n=cut\n\n/, + ], + }, +); + +$t->cleanup; + +# test out the POD +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + custom_column_info => sub { + my ($table, $col, $info) = @_; + return +{ extra => { is_footext => 1 } } if $col eq 'footext'; + }, + result_base_class => 'My::ResultBaseClass', + additional_classes => 'TestAdditional', + additional_base_classes => 'TestAdditionalBase', + left_base_classes => 'TestLeftBase', + components => [ 'TestComponent', '+TestComponentFQN' ], + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + regexes => { + schema => [ + qr/package DBICTest::DumpMore::1;/, + qr/->load_classes/, + ], + Foo => [ + qr/package DBICTest::DumpMore::1::Foo;/, + qr/\n=head1 NAME\n\nDBICTest::DumpMore::1::Foo\n\n=cut\n\nuse strict;\nuse warnings;\n\n/, + qr/\n=head1 BASE CLASS: L\n\n=cut\n\nuse base 'My::ResultBaseClass';\n\n/, + qr/\n=head1 ADDITIONAL CLASSES USED\n\n=over 4\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 ADDITIONAL BASE CLASSES\n\n=over 4\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 LEFT BASE CLASSES\n\n=over 4\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 COMPONENTS LOADED\n\n=over 4\n\n=item \* L\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 ACCESSORS\n\n/, + qr/\n=head2 fooid\n\n data_type: 'integer'\n is_auto_increment: 1\n is_nullable: 0\n\n/, + qr/\n=head2 footext\n\n data_type: 'text'\n default_value: 'footext'\n extra: {is_footext => 1}\n is_nullable: 1\n\n/, + qr/->set_primary_key/, + qr/\n=head1 RELATIONS\n\n/, + qr/\n=head2 bars\n\nType: has_many\n\nRelated object: L\n\n=cut\n\n/, + qr/1;\n$/, + ], + Bar => [ + qr/package DBICTest::DumpMore::1::Bar;/, + qr/\n=head1 NAME\n\nDBICTest::DumpMore::1::Bar\n\n=cut\n\nuse strict;\nuse warnings;\n\n/, + qr/\n=head1 BASE CLASS: L\n\n=cut\n\nuse base 'My::ResultBaseClass';\n\n/, + qr/\n=head1 ADDITIONAL CLASSES USED\n\n=over 4\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 ADDITIONAL BASE CLASSES\n\n=over 4\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 LEFT BASE CLASSES\n\n=over 4\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 COMPONENTS LOADED\n\n=over 4\n\n=item \* L\n\n=item \* L\n\n=back\n\n=cut\n\n/, + qr/\n=head1 ACCESSORS\n\n/, + qr/\n=head2 barid\n\n data_type: 'integer'\n is_auto_increment: 1\n is_nullable: 0\n\n/, + qr/\n=head2 fooref\n\n data_type: 'integer'\n is_foreign_key: 1\n is_nullable: 1\n\n/, + qr/->set_primary_key/, + qr/\n=head1 RELATIONS\n\n/, + qr/\n=head2 fooref\n\nType: belongs_to\n\nRelated object: L\n\n=cut\n\n/, + qr/\n1;\n$/, + ], + }, +); + +$t->append_to_class('DBICTest::DumpMore::1::Foo',q{# XXX This is my custom content XXX}); + + +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + regexes => { + schema => [ + qr/package DBICTest::DumpMore::1;/, + qr/->load_classes/, + ], + Foo => [ + qr/package DBICTest::DumpMore::1::Foo;/, + qr/->set_primary_key/, + qr/1;\n# XXX This is my custom content XXX/, + ], + Bar => [ + qr/package DBICTest::DumpMore::1::Bar;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + }, +); + + +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + really_erase_my_files => 1 + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Deleting existing file /, + qr/Deleting existing file /, + qr/Deleting existing file /, + qr/Schema dump completed/, + ], + regexes => { + schema => [ + qr/package DBICTest::DumpMore::1;/, + qr/->load_classes/, + ], + Foo => [ + qr/package DBICTest::DumpMore::1::Foo;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + Bar => [ + qr/package DBICTest::DumpMore::1::Bar;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + }, + neg_regexes => { + Foo => [ + qr/# XXX This is my custom content XXX/, + ], + }, +); + + +$t->cleanup; + +# test namespaces +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + use_namespaces => 1, + generate_pod => 0 + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + neg_regexes => { + 'Result/Foo' => [ + qr/^=/m, + ], + }, +); + + +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + db_schema => 'foo_schema', + qualify_objects => 1, + use_namespaces => 1 + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + regexes => { + 'Result/Foo' => [ + qr/^\Q__PACKAGE__->table("foo_schema.foo");\E/m, + # the has_many relname should not have the schema in it! + qr/^__PACKAGE__->has_many\(\n "bars"/m, + ], + }, +); + +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + use_namespaces => 1 + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + regexes => { + schema => [ + qr/package DBICTest::DumpMore::1;/, + qr/->load_namespaces/, + ], + 'Result/Foo' => [ + qr/package DBICTest::DumpMore::1::Result::Foo;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + 'Result/Bar' => [ + qr/package DBICTest::DumpMore::1::Result::Bar;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + }, +); + + +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + use_namespaces => 1, + result_namespace => 'Res', + resultset_namespace => 'RSet', + default_resultset_class => 'RSetBase', + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + regexes => { + schema => [ + qr/package DBICTest::DumpMore::1;/, + qr/->load_namespaces/, + qr/result_namespace => 'Res'/, + qr/resultset_namespace => 'RSet'/, + qr/default_resultset_class => 'RSetBase'/, + ], + 'Res/Foo' => [ + qr/package DBICTest::DumpMore::1::Res::Foo;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + 'Res/Bar' => [ + qr/package DBICTest::DumpMore::1::Res::Bar;/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + }, +); + + +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + use_namespaces => 1, + result_namespace => '+DBICTest::DumpMore::1::Res', + resultset_namespace => 'RSet', + default_resultset_class => 'RSetBase', + result_base_class => 'My::ResultBaseClass', + schema_base_class => 'My::SchemaBaseClass', + }, + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], + regexes => { + schema => [ + qr/package DBICTest::DumpMore::1;/, + qr/->load_namespaces/, + qr/result_namespace => '\+DBICTest::DumpMore::1::Res'/, + qr/resultset_namespace => 'RSet'/, + qr/default_resultset_class => 'RSetBase'/, + qr/use base 'My::SchemaBaseClass'/, + ], + 'Res/Foo' => [ + qr/package DBICTest::DumpMore::1::Res::Foo;/, + qr/use base 'My::ResultBaseClass'/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + 'Res/Bar' => [ + qr/package DBICTest::DumpMore::1::Res::Bar;/, + qr/use base 'My::ResultBaseClass'/, + qr/->set_primary_key/, + qr/1;\n$/, + ], + }, +); -{ - my ($err, $warn) = do_dump_test('DBICTest::Schema::1', { }); - ok(!$err); - is(@$warn, 2); - like($warn->[0], qr/Dumping manual schema for DBICTest::Schema::1 to directory /); - like($warn->[1], qr/Schema dump completed/); -} -ok(1); +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + options => { + use_namespaces => 1, + result_base_class => 'My::MissingResultBaseClass', + }, + error => qr/My::MissingResultBaseClass.*is not installed/, +); -# XXX obviously this test file needs to be fleshed out more :) +# test quote_char in connect_info for dbicdump +$t->dump_test( + classname => 'DBICTest::DumpMore::1', + extra_connect_info => [ + '', + '', + { quote_char => '"' }, + ], + warnings => [ + qr/Dumping manual schema for DBICTest::DumpMore::1 to directory /, + qr/Schema dump completed/, + ], +); -# END { rmtree($dump_path, 1, 1); } +done_testing; +# vim:et sts=4 sw=4 tw=0: