File: 645-output-mysql-innodb-get-drop-index-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 (178 lines) | stat: -rw-r--r-- 5,047 bytes parent folder | download | duplicates (6)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#   $Id: 644-output-mysql-get-drop-index-sql.t,v 1.1 2009/02/23 07:36:17 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 => 48;

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

my $diasql =  Parse::Dia::SQL->new( file => catfile(qw(t data TestERD.dia)), db => 'mysql-myisam' );
isa_ok($diasql, q{Parse::Dia::SQL}, q{Expect a Parse::Dia::SQL object});
is($diasql->convert(), 1, q{Expect convert() to return 1});
my $output   = undef;
isa_ok($diasql, 'Parse::Dia::SQL');
lives_ok(sub { $output = $diasql->get_output_instance(); },
  q{get_output_instance (mysql-myisam) should not die});

isa_ok($output, 'Parse::Dia::SQL::Output');
isa_ok($output, 'Parse::Dia::SQL::Output::MySQL');
isa_ok($output, 'Parse::Dia::SQL::Output::MySQL::MyISAM');
can_ok($output, 'get_constraints_drop');
my $drop_constraints = $output->get_constraints_drop();

#diag($drop_constraints);

# indices
like($drop_constraints, qr/.*
drop \s+ index \s+ idx_iimd5 \s+ on \s+ imageInfo \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_iiid \s+ on \s+ imageInfo \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_siiid \s+ on \s+ subImageInfo \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_siips \s+ on \s+ subImageInfo \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_iclidnm \s+ on \s+ imageCategoryList \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_uinm \s+ on \s+ userInfo \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_uiid \s+ on \s+ userInfo \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_uauiid \s+ on \s+ userAttribute \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_uiruid \s+ on \s+ userImageRating \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_acid \s+ on \s+ attributeCategory \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ idx_usmd5 \s+ on \s+ userSession \s* (;)?
.*/six);

# do it all again this time for InnoDB with backticks

$diasql =  Parse::Dia::SQL->new( file => catfile(qw(t data TestERD.dia)), db => 'mysql-innodb', backticks => 1);
isa_ok($diasql, q{Parse::Dia::SQL}, q{Expect a Parse::Dia::SQL object});
is($diasql->convert(), 1, q{Expect convert() to return 1});
$output   = undef;
isa_ok($diasql, 'Parse::Dia::SQL');
lives_ok(sub { $output = $diasql->get_output_instance(); },
  q{get_output_instance (mysql-innodb) should not die});

isa_ok($output, 'Parse::Dia::SQL::Output');
isa_ok($output, 'Parse::Dia::SQL::Output::MySQL');
isa_ok($output, 'Parse::Dia::SQL::Output::MySQL::InnoDB');
can_ok($output, 'get_constraints_drop');
$drop_constraints = $output->get_constraints_drop();

#diag($drop_constraints);

# foreign keys
like($drop_constraints, qr/.*
alter \s+ table \s+ `imageCategoryList` \s+ drop \s+ foreign \s+ key \s+ `fk_iiicl` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
alter \s+ table \s+ `imageAttribute` \s+ drop \s+ foreign \s+ key \s+ `fk_iiia` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
alter \s+ table \s+ `userImageRating` \s+ drop \s+ foreign \s+ key \s+ `fk_uiuir` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
alter \s+ table \s+ `userAttribute` \s+ drop \s+ foreign \s+ key \s+ `fk_uiua` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
alter \s+ table \s+ `userSession` \s+ drop \s+ foreign \s+ key \s+ `fk_uius` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
alter \s+ table \s+ `imageAttribute` \s+ drop \s+ foreign \s+ key \s+ `fk_iaac` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
alter \s+ table \s+ `userAttribute` \s+ drop \s+ foreign \s+ key \s+ `fk_acua` \s* (;)?
.*/six);


# indices
like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_iimd5` \s+ on \s+ `imageInfo` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_iiid` \s+ on \s+ `imageInfo` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_siiid` \s+ on \s+ `subImageInfo` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_siips` \s+ on \s+ `subImageInfo` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_iclidnm` \s+ on \s+ `imageCategoryList` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_uinm` \s+ on \s+ `userInfo` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_uiid` \s+ on \s+ `userInfo` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_uauiid` \s+ on \s+ `userAttribute` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_uiruid` \s+ on \s+ `userImageRating` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_acid` \s+ on \s+ `attributeCategory` \s* (;)?
.*/six);

like($drop_constraints, qr/.*
drop \s+ index \s+ `idx_usmd5` \s+ on \s+ `userSession` \s* (;)?
.*/six);




__END__