File: Schema.t

package info (click to toggle)
percona-toolkit 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 68,916 kB
  • sloc: perl: 241,287; sql: 22,868; sh: 19,746; javascript: 6,799; makefile: 353; awk: 38; python: 30; sed: 1
file content (231 lines) | stat: -rw-r--r-- 4,847 bytes parent folder | download | duplicates (2)
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#!/usr/bin/perl

BEGIN {
   die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
      unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
   unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
};

use strict;
use warnings FATAL => 'all';
use English qw(-no_match_vars);
use Test::More tests => 15;

use Data::Dumper;
$Data::Dumper::Indent    = 1;
$Data::Dumper::Sortkeys  = 1;
$Data::Dumper::Quotekeys = 0;

use PerconaTest;
use Quoter;
use TableParser;
use FileIterator;
use SchemaIterator;
use Schema;
use OptionParser;
use DSNParser;

my $in = "$trunk/t/lib/samples/mysqldump-no-data/";

my $q  = new Quoter;
my $tp = new TableParser(Quoter => $q);
my $fi = new FileIterator();

my $o  = new OptionParser(description => 'SchemaIterator');
@ARGV = qw();
$o->get_specs("$trunk/bin/pt-table-checksum");
$o->get_opts();

my $file_itr = $fi->get_file_itr("$in/dump001.txt");
my $sq       = new Schema();
my $si       = new SchemaIterator (
   file_itr     => $file_itr,
   OptionParser => $o,
   Quoter       => $q,
   TableParser  => $tp,
   Schema       => $sq,
);

# Init the schema (SchemaIterator calls Schema::add_schema_object()).
1 while(defined $si->next());

#ok(
#   $sq->is_duplicate_column('c1')
#   && $sq->is_duplicate_column('c2'),
#   "Duplicate columns in dump001.txt"
#);

#ok(
#   $sq->is_duplicate_table('a'),
#   "Duplicate tables in dump001.txt"
#);


# ############################################################################
# Test find columns in the schema.
# ############################################################################

sub test_find_col {
   my ($got, $expect, $test_name) = @_;

   my @got_tbls;
   foreach my $tbl ( @$got ) {
      push @got_tbls, [$tbl->{db}, $tbl->{tbl}];
   }

   is_deeply(
      \@got_tbls,
      $expect,
      $test_name,
   ) or print Dumper(\@got_tbls);
}

# First by column name, what would be parsed from a query.

test_find_col(
   $sq->find_column(col_name => 'c3'),
   [['test','b']],
   "Find column c3"
);

test_find_col(
   $sq->find_column(col_name => 'b.c3'),
   [['test','b']],
   "Find column b.c3"
);

test_find_col(
   $sq->find_column(col_name => 'test.b.c3'),
   [['test','b']],
   "Find column test.b.c3"
);

test_find_col(
   $sq->find_column(col_name => 'c1'),
   [
      ['test',  'b'],
      ['test',  'a'],
      ['test2', 'a'],
   ],
   "Find duplicate column c1"
);

test_find_col(
   $sq->find_column(col_name => 'a.c1'),
   [
      ['test',  'a'],
      ['test2', 'a'],
   ],
   "Find duplicate table.column a.c1"
);

test_find_col(
   $sq->find_column(col_name => 'xyz'),
   [],
   "Cannot find nonexistent column name"
);

# Then by a tbl struct, what's used by Schema.

test_find_col(
   $sq->find_column(col => 'c3'),
   [['test','b']],
   "Find column c3 (struct)"
);

test_find_col(
   $sq->find_column(tbl => 'b', col => 'c3'),
   [['test','b']],
   "Find column b.c3 (struct)"
);

test_find_col(
   $sq->find_column(db => 'test', tbl => 'b', col => 'c3'),
   [['test','b']],
   "Find column test.b.c3 (struct)"
);

test_find_col(
   $sq->find_column(col => 'c1'),
   [
      ['test',  'b'],
      ['test',  'a'],
      ['test2', 'a'],
   ],
   "Find duplicate column c1 (struct)"
);

test_find_col(
   $sq->find_column(tbl => 'a', col => 'c1'),
   [
      ['test',  'a'],
      ['test2', 'a'],
   ],
   "Find duplicate table.column a.c1 (struct)"
);

test_find_col(
   $sq->find_column(col => 'xyz'),
   [],
   "Cannot find nonexistent column name (struct)"
);

# ############################################################################
# Test find tables in the schema.
# ############################################################################

sub test_find_tbl {
   my ($got, $expect, $test_name) = @_;

   my @got_dbs;
   foreach my $db ( @$got ) {
      push @got_dbs, $db;
   }

   is_deeply(
      \@got_dbs,
      $expect,
      $test_name,
   ) or print Dumper(\@got_dbs);
}

test_find_tbl(
   $sq->find_table(tbl => 'a'),
   ['test', 'test2'],
   "Find table a"
);

# ############################################################################
# Test ignore.
# ############################################################################
test_find_col(
   $sq->find_column(
      col    => 'c1',
      ignore => [
         { db => 'test',  tbl => 'a' },
         { db => 'test2', tbl => 'a' },
      ],
   ),
   [
      #['test',  'a'],  # IGNORED
      ['test',  'b'],
      #['test2', 'a'],  # IGNORED
   ],
   "Ignore tables"
);

# #############################################################################
# Done.
# #############################################################################
my $output = '';
{
   local *STDERR;
   open STDERR, '>', \$output;
   $sq->_d('Complete test coverage');
}
like(
   $output,
   qr/Complete test coverage/,
   '_d() works'
);
exit;