acad644022956c393860449245b88ede4cba727a
[dbsrgits/SQL-Translator.git] / t / 22xml-xmi-parser-visibility.t
1 #!/usr/bin/perl -w 
2 # vim:filetype=perl
3
4 # Before `make install' is performed this script should be runnable with
5 # `make test'. After `make install' it should work as `perl test.pl'
6
7 #
8 # Tests the visibility arg.
9 #
10
11 use strict;
12 use FindBin qw/$Bin/;
13 use Data::Dumper;
14
15 # run test with -d for debug
16 my %opt;
17 BEGIN { map { $opt{$_}=1 if s/^-// } @ARGV; }
18 use constant DEBUG => (exists $opt{d} ? 1 : 0);
19
20 use Test::More;
21 use Test::Exception;
22 use SQL::Translator;
23 use SQL::Translator::Schema::Constants;
24
25
26 plan tests => 8;
27
28 my $testschema = "$Bin/data/xmi/Foo.poseidon2.xmi";
29 die "Can't find test schema $testschema" unless -e $testschema;
30
31 my @testd = (
32     ""          => [qw/Foo PrivateFoo Recording CD Track ProtectedFoo/],
33                    [qw/fooid name protectedname privatename/],
34     "public"    => [qw/Foo Recording CD Track/],
35                    [qw/fooid name /],
36     "protected" => [qw/Foo Recording CD Track ProtectedFoo/],
37                    [qw/fooid name protectedname/],
38     "private"   => [qw/Foo PrivateFoo Recording CD Track ProtectedFoo/],
39                    [qw/fooid name protectedname privatename/],
40 );
41     while ( my ($vis,$tables,$foofields) = splice @testd,0,3 ) {
42     my $obj;
43     $obj = SQL::Translator->new(
44         filename => $testschema,
45         from     => 'XML-XMI',
46         to       => 'MySQL',
47         debug          => DEBUG,
48         show_warnings  => 1,
49         parser_args => {
50             visibility => $vis,
51         },
52     );
53     my $sql = $obj->translate;
54         print $sql if DEBUG;
55     my $scma = $obj->schema;
56
57         # Tables from classes
58         my @tblnames = map {$_->name} $scma->get_tables;
59     is_deeply( \@tblnames, $tables, "Tables with visibility => '$vis'");
60
61         # Fields from attributes
62     my @fldnames = map {$_->name} $scma->get_table("Foo")->get_fields;
63     is_deeply( \@fldnames, $foofields, "Foo fields with visibility => '$vis'");
64 }