X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FSQL-Translator.git;a=blobdiff_plain;f=t%2F17sqlfxml-producer.t;h=7989e35d43ea2aa0139cba66ef9cb41a249f062c;hp=bc6acdedb24b1c809525251b9758299fbec936cc;hb=c0ec0e22d3f0e3852c00daac5ef5763010b410c3;hpb=ac62dff193e6912b65032347fa284b8d6e65ef6f diff --git a/t/17sqlfxml-producer.t b/t/17sqlfxml-producer.t index bc6acde..7989e35 100644 --- a/t/17sqlfxml-producer.t +++ b/t/17sqlfxml-producer.t @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl -w # vim:filetype=perl # Before `make install' is performed this script should be runnable with @@ -9,9 +9,10 @@ local $^W = 0; use strict; use Test::More; use Test::Exception; +use Test::SQL::Translator qw(maybe_plan); use Data::Dumper; -our %opt; +my %opt; BEGIN { map { $opt{$_}=1 if s/^-// } @ARGV; } use constant DEBUG => (exists $opt{d} ? 1 : 0); use constant TRACE => (exists $opt{t} ? 1 : 0); @@ -20,115 +21,86 @@ use FindBin qw/$Bin/; my $file = "$Bin/data/mysql/sqlfxml-producer-basic.sql"; +local $SIG{__WARN__} = sub { + CORE::warn(@_) + unless $_[0] =~ m!XML/Writer!; +}; # Testing 1,2,3,4... #============================================================================= -eval { require XML::Writer; }; -if ($@ && $@ =~ m!locate XML::Writer.pm in!) { - plan skip_all => "You need XML::Writer to use XML::SQLFairy."; -} -eval { require Test::Differences; }; -if ($@ && $@ =~ m!locate Test/Differences.pm in!) { - plan skip_all => "You need Test::Differences for this test."; +BEGIN { + maybe_plan(14, + 'XML::Writer', + 'Test::Differences', + 'SQL::Translator::Producer::XML::SQLFairy'); } + use Test::Differences; -plan tests => 6; - use SQL::Translator; use SQL::Translator::Producer::XML::SQLFairy; -my ($obj,$ans,$xml); +# Due to formatters being able to change style, e.g. by entries in .rc files +# in $HOME, the layout and or indent might differ slightly. As leading white +# is not important in XML, strip it when comparing +sub xml_equals +{ + my ($got, $expect, $msg) = (@_, "XML looks right"); + $got =~ s/^ +//gm; + $expect =~ s/^ +//gm; + eq_or_diff $got, $expect, $msg; +} # -# emit_empty_tags => 0 +# basic stuff # +{ +my ($obj,$ans,$xml); $ans = < - - Basic - 1 - - - id - integer - 1 - 1 - 0 - 0 - 1 - 10 - - - title - varchar - hello - 0 - 0 - 0 - 0 - 2 - 100 - - - description - text - - 0 - 0 - 1 - 0 - 3 - 65535 - - - email - varchar - 0 - 0 - 1 - 0 - 4 - 255 - - - - - title - titleindex - - NORMAL - - - - - 1 - - id - - - - - - - PRIMARY KEY - - - 1 - - email - - - - - - - UNIQUE - - - - + + + + + + + + + comment on id field + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
EOXML $obj = SQL::Translator->new( @@ -136,138 +108,262 @@ $obj = SQL::Translator->new( trace => TRACE, show_warnings => 1, add_drop_table => 1, - from => 'MySQL', - to => 'XML-SQLFairy', + from => "MySQL", + to => "XML-SQLFairy", ); -lives_ok { $xml = $obj->translate($file); } "Translate ran"; +$xml = $obj->translate($file) or die $obj->error; ok("$xml" ne "" ,"Produced something!"); print "XML:\n$xml" if DEBUG; # Strip sqlf header with its variable date so we diff safely -$xml =~ s/^([^\n]*\n){7}//m; -eq_or_diff $xml, $ans ,"XML looks right"; +$xml =~ s/^([^\n]*\n){7}//m; +xml_equals $xml, $ans; + +} # end basic stuff # -# emit_empty_tags => 1 +# View # +# Thanks to Ken for the schema setup lifted from 13schema.t +{ +my ($obj,$ans,$xml); $ans = < - - Basic - 2 - - - id - integer - - 1 - 1 - 0 - 0 - 5 - 10 - - - title - varchar - hello - 0 - 0 - 0 - 0 - 6 - 100 - - - description - text - - 0 - 0 - 1 - 0 - 7 - 65535 - - - email - varchar - - 0 - 0 - 1 - 0 - 8 - 255 - - - - - title - titleindex - - NORMAL - - - - - 1 - - id - - - - - - - - PRIMARY KEY - - - 1 - - email - - - - - - - - UNIQUE - - - - + + + + + + select name, age from person + + + + + + EOXML -undef $obj; -$obj = SQL::Translator->new( - debug => DEBUG, - trace => TRACE, - show_warnings => 1, - add_drop_table => 1, - from => 'MySQL', - to => 'XML-SQLFairy', - producer_args => { emit_empty_tags => 1 }, -); -lives_ok { $xml = $obj->translate($file); } "Translate ran"; -ok("$xml" ne "" ,"Produced something!"); -print "XML emit_empty_tags=>1:\n$xml" if DEBUG; -# Strip sqlf header with its variable date so we diff safely -$xml =~ s/^([^\n]*\n){7}//m; -eq_or_diff $xml, $ans ,"XML looks right"; - # This diff probably isn't a very good test! Should really check the - # result with XPath or something, but that would take ages to write ;-) - -# TODO Make this a real test of attrib_values -# $obj = SQL::Translator->new( -# debug => DEBUG, -# trace => TRACE, -# show_warnings => 1, -# add_drop_table => 1, -# from => "MySQL", -# to => "SqlfXML", -# producer_args => { attrib_values => 1 }, -# ); -# print $obj->translate($file); + $obj = SQL::Translator->new( + debug => DEBUG, + trace => TRACE, + show_warnings => 1, + add_drop_table => 1, + from => "MySQL", + to => "XML-SQLFairy", + ); + my $s = $obj->schema; + my $name = 'foo_view'; + my $sql = 'select name, age from person'; + my $fields = 'name, age'; + my $v = $s->add_view( + name => $name, + sql => $sql, + fields => $fields, + extra => { hello => "world" }, + schema => $s, + ) or die $s->error; + + # As we have created a Schema we give translate a dummy string so that + # it will run the produce. + lives_ok {$xml =$obj->translate("FOO");} "Translate (View) ran"; + ok("$xml" ne "" ,"Produced something!"); + print "XML attrib_values=>1:\n$xml" if DEBUG; + # Strip sqlf header with its variable date so we diff safely + $xml =~ s/^([^\n]*\n){7}//m; + xml_equals $xml, $ans; +} # end View + +# +# Trigger +# +# Thanks to Ken for the schema setup lifted from 13schema.t +{ +my ($obj,$ans,$xml); + +$ans = < + + + + + + + + +
+
+ + + + update modified=timestamp(); + + + + + +EOXML + + $obj = SQL::Translator->new( + debug => DEBUG, + trace => TRACE, + show_warnings => 1, + add_drop_table => 1, + from => "MySQL", + to => "XML-SQLFairy", + ); + my $s = $obj->schema; + my $name = 'foo_trigger'; + my $perform_action_when = 'after'; + my $database_event = 'insert'; + my $action = 'update modified=timestamp();'; + my $table = $s->add_table( name => "Basic" ) or die $s->error; + my $t = $s->add_trigger( + name => $name, + perform_action_when => $perform_action_when, + database_events => [$database_event], + table => $table, + action => $action, + scope => 'row', + extra => { hello => "world" }, + ) or die $s->error; + + # As we have created a Schema we give translate a dummy string so that + # it will run the produce. + lives_ok {$xml =$obj->translate("FOO");} "Translate (Trigger) ran"; + ok("$xml" ne "" ,"Produced something!"); + print "XML attrib_values=>1:\n$xml" if DEBUG; + # Strip sqlf header with its variable date so we diff safely + $xml =~ s/^([^\n]*\n){7}//m; + xml_equals $xml, $ans; +} # end Trigger + +# +# Procedure +# +# Thanks to Ken for the schema setup lifted from 13schema.t +{ +my ($obj,$ans,$xml); + +$ans = < + + + + + + + select foo from bar + Go Sox! + + + + +EOXML + + $obj = SQL::Translator->new( + debug => DEBUG, + trace => TRACE, + show_warnings => 1, + add_drop_table => 1, + from => "MySQL", + to => "XML-SQLFairy", + ); + my $s = $obj->schema; + my $name = 'foo_proc'; + my $sql = 'select foo from bar'; + my $parameters = 'foo, bar'; + my $owner = 'Nomar'; + my $comments = 'Go Sox!'; + my $p = $s->add_procedure( + name => $name, + sql => $sql, + parameters => $parameters, + owner => $owner, + comments => $comments, + extra => { hello => "world" }, + ) or die $s->error; + + # As we have created a Schema we give translate a dummy string so that + # it will run the produce. + lives_ok {$xml =$obj->translate("FOO");} "Translate (Procedure) ran"; + ok("$xml" ne "" ,"Produced something!"); + print "XML attrib_values=>1:\n$xml" if DEBUG; + # Strip sqlf header with its variable date so we diff safely + $xml =~ s/^([^\n]*\n){7}//m; + xml_equals $xml, $ans; +} # end Procedure + +# +# Field.extra +# +{ +my ($obj,$ans,$xml); + +$ans = < + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + +EOXML + + $obj = SQL::Translator->new( + debug => DEBUG, + trace => TRACE, + show_warnings => 1, + add_drop_table => 1, + from => "MySQL", + to => "XML-SQLFairy", + ); + my $s = $obj->schema; + my $t = $s->add_table( name => "Basic" ) or die $s->error; + my $f = $t->add_field( + name => "foo", + data_type => "integer", + size => "10", + ) or die $t->error; + $f->extra(ZEROFILL => "1"); + + $t->add_field( + name => "bar", + data_type => "numeric", + size => "10,2", + ) or die $t->error; + $t->add_field( + name => "baz", + data_type => "decimal", + size => [8,3], + ) or die $t->error; + + + # As we have created a Schema we give translate a dummy string so that + # it will run the produce. + lives_ok {$xml =$obj->translate("FOO");} "Translate (Field.extra) ran"; + ok("$xml" ne "" ,"Produced something!"); + print "XML:\n$xml" if DEBUG; + # Strip sqlf header with its variable date so we diff safely + $xml =~ s/^([^\n]*\n){7}//m; + xml_equals $xml, $ans; +} # end extra