use Test::Exception
[dbsrgits/DBIx-Class.git] / t / 99dbic_sqlt_parser.t
CommitLineData
0e2c6809 1#!/usr/bin/perl
2use strict;
3use warnings;
4use Test::More;
8fd10683 5use Test::Exception;
0e2c6809 6use lib qw(t/lib);
7use DBICTest;
8
9BEGIN {
b2b2e7fd 10 require DBIx::Class::Storage::DBI;
7f6f5b69 11 plan skip_all =>
b2b2e7fd 12 'Test needs SQL::Translator ' . DBIx::Class::Storage::DBI->_sqlt_minimum_version
13 if not DBIx::Class::Storage::DBI->_sqlt_version_ok;
0e2c6809 14}
15
16my $schema = DBICTest->init_schema();
0fc7cd47 17# Dummy was yanked out by the sqlt hook test
8e8a8d91 18# CustomSql tests the horrific/deprecated ->name(\$sql) hack
8f1617e2 19# YearXXXXCDs and NoViewDefinition are views
8e8a8d91 20#
21my @sources = grep
8f1617e2 22 { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs | NoViewDefinition ) $/x }
8e8a8d91 23 $schema->sources
24;
0fc7cd47 25
0e2c6809 26{
27 my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { } } });
28
181c0934 29 foreach my $source (@sources) {
c2b7c5dc 30 my $table = get_table($sqlt_schema, $schema, $source);
0e2c6809 31
32 my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints);
33 my @indices = $table->get_indices;
34 my $index_count = scalar(@indices);
2581038c 35 $index_count++ if ($source eq 'TwoKeys'); # TwoKeys has the index turned off on the rel def
0e2c6809 36 is($index_count, $fk_count, "correct number of indices for $source with no args");
37 }
38}
39
40{
41 my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 1 } } });
42
181c0934 43 foreach my $source (@sources) {
c2b7c5dc 44 my $table = get_table($sqlt_schema, $schema, $source);
0e2c6809 45
46 my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints);
47 my @indices = $table->get_indices;
48 my $index_count = scalar(@indices);
2581038c 49 $index_count++ if ($source eq 'TwoKeys'); # TwoKeys has the index turned off on the rel def
0e2c6809 50 is($index_count, $fk_count, "correct number of indices for $source with add_fk_index => 1");
51 }
52}
53
54{
55 my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 0 } } });
56
181c0934 57 foreach my $source (@sources) {
c2b7c5dc 58 my $table = get_table($sqlt_schema, $schema, $source);
0e2c6809 59
60 my @indices = $table->get_indices;
61 my $index_count = scalar(@indices);
62 is($index_count, 0, "correct number of indices for $source with add_fk_index => 0");
63 }
64}
65
8f1617e2 66{
ab7e74aa 67 {
68 package # hide from PAUSE
69 DBICTest::Schema::NoViewDefinition;
70
71 use base qw/DBICTest::BaseResult/;
8f1617e2 72
ab7e74aa 73 __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
74 __PACKAGE__->table('noviewdefinition');
8f1617e2 75
ab7e74aa 76 1;
8f1617e2 77 }
78
ab7e74aa 79 my $schema_invalid_view = $schema->clone;
80 $schema_invalid_view->register_class('NoViewDefinition', 'DBICTest::Schema::NoViewDefinition');
8f1617e2 81
ab7e74aa 82 eval {
83 my $sqlt_schema = create_schema({ schema => $schema_invalid_view });
84 };
8fd10683 85 #like($@, qr/view noviewdefinition is missing a view_definition/, "parser detects views with a view_definition");
86 throws_ok { create_schema({ schema => $schema_invalid_view }) }
87 qr/view noviewdefinition is missing a view_definition/,
88 'parser detects views with a view_definition';
ab7e74aa 89
90# my @views = $sqlt_schema->get_views;
91#
92# # the following views are skipped:
93# # Year1999CDs is virtual
94# # NoViewDefinition has no view_definition
95# is(scalar @views, 1, "number of views ok");
96#
97# foreach my $view (@views) {
98# ok($view->is_valid, "view " . $view->name . " is valid");
99# }
100#
101# my @expected_view_names = (qw/ year2000cds /);
102# my @view_names = sort map { $_->name } @views;
103#
104# is_deeply( @view_names, @expected_view_names, "all expected views included int SQL::Translator schema" );
8f1617e2 105}
106
7f6f5b69 107done_testing;
108
0e2c6809 109sub create_schema {
110 my $args = shift;
111
112 my $schema = $args->{schema};
113 my $additional_sqltargs = $args->{args} || {};
114
115 my $sqltargs = {
116 add_drop_table => 1,
117 ignore_constraint_names => 1,
118 ignore_index_names => 1,
119 %{$additional_sqltargs}
120 };
121
122 my $sqlt = SQL::Translator->new( $sqltargs );
123
124 $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
ab7e74aa 125 return $sqlt->translate({ data => $schema }) || die $sqlt->error;
0e2c6809 126}
c2b7c5dc 127
128sub get_table {
129 my ($sqlt_schema, $schema, $source) = @_;
130
131 my $table_name = $schema->source($source)->from;
132 $table_name = $$table_name if ref $table_name;
133
134 return $sqlt_schema->get_table($table_name);
135}