File: 681-output-db2-get-sql.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 (79 lines) | stat: -rw-r--r-- 1,495 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#   $Id: 681-output-db2-get-sql.t,v 1.2 2009/02/26 19:58:37 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 => 5;

use lib q{lib};
use_ok ('Parse::Dia::SQL');
use_ok ('Parse::Dia::SQL::Output');
use_ok ('Parse::Dia::SQL::Output::DB2');

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

my $sql = $diasql->get_sql;

# ------ check statement sequence -------

diag("TODO: Get monk help with this regex..");

like($sql, qr/.*

(alter \s+ table \s+ \w+ \s+ drop \s+ constraint \s+ \w+ \s* ; \s*) +? \s* 

.*?

(drop \s+ index \s+ \w+ \s* ; \s*) +? \s* 

.*?

(revoke \s+ \w+ \s+ on \s+ \w+ \s+ from \s+ \w+ \s* ; \s*) +? \s*

.*?

(drop \s+ sequence \s+ \w+ \s* ; \s*) *? \s* 

.*?

(create \s+ sequence \s+ \w+ \s* ; \s*) *? \s* 

.*?

(drop \s+ view \s+ \w+ \s* ; \s*) *? \s* 

.*?

(--drop \s+ trigger .* ) *? \s* 
(--create \s+ trigger .* ) *? \s* 

.*?

(grant \s+ \w+ \s+ on \s+ \w+ \s+ to \s+ \w+ \s* ; \s*) *? \s* 

.*?

(insert \s+ into \s+ \w+ \s+ values \s+ \w+ \s* ; \s*) *? \s* 

.*?

(create \s+ (unique)? \s+ index \s+ \w+ \s+ on \s+ \w+ \s* ; \s*) *? \s* 

.*?

(alter \s+ table \s+ \w+ \s+ 
  add \s+ constraint \s+ \w+ \s+ 
  foreign \s+ key \s+ \w+ \s+ 
  vreferences \s+ \w+ \s* ; \s*) *? \s* 

.*/six, q{check sequence of statements});

__END__