File: 652-output-get-create-associations-index-options.t

package info (click to toggle)
libparse-dia-sql-perl 0.31-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 924 kB
  • sloc: perl: 3,865; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 1,420 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#   $Id: 652-output-get-create-associations-index-options.t,v 1.2 2009/05/16 12:24:28 aff Exp $

use warnings;
use strict;

use Data::Dumper;
use Test::More;
use Test::Exception;
use File::Spec::Functions;
use lib catdir qw ( blib lib );

plan tests => 10;

use_ok ('Parse::Dia::SQL');

my $diasql =  Parse::Dia::SQL->new( file => catfile(qw(t data index.option.dia)), db => 'db2' );
isa_ok($diasql, q{Parse::Dia::SQL}, q{Expect a Parse::Dia::SQL object});

ok $diasql->convert();

# Output
my $output   = undef;
isa_ok($diasql, 'Parse::Dia::SQL');
lives_ok(sub { $output = $diasql->get_output_instance(); },
  q{get_output_instance (db2) should not die});

isa_ok($output, 'Parse::Dia::SQL::Output')
  or diag(Dumper($output));
isa_ok($output, 'Parse::Dia::SQL::Output::DB2')
  or diag(Dumper($output));

can_ok($output, 'get_associations_create');

# associations = foreign keys + indices
my $association_str = $output->get_associations_create();

# Check for index option 
like($association_str, qr|.*
create \s+ index \s+ \w+ \s+ on \s+ foo  
  \s* \( \s* \w+, \w+ \s* \) \s* disallow \s+ reverse \s+ scans \s* (;)?
.*
|six, q{Expect index option "disallow reverse scans" on table foo});


like($association_str, qr|.*
create \s+ index \s+ \w+ \s+ on \s+ bar 
  \s* \( \s* \w+, \w+ \s* \) \s* allow \s+ reverse \s+ scans \s* (;)?
.*
|six, q{Expect default index option "allow reverse scans" on table bar});

__END__