r1604@llin: dpavlin | 2007-11-11 21:02:22 +0100
[webpac2] / t / 1-validate.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Test::More tests => 54;
7
8 BEGIN {
9 use_ok( 'WebPAC::Test' );
10 use_ok( 'WebPAC::Validate' );
11 }
12
13 ok(my $v = new WebPAC::Validate(%LOG), "new witout path");
14
15 ok( ! $v->{rules}, 'no path' );
16
17 ok($v = new WebPAC::Validate(
18         path => "$abs_path/data/validate_test",
19         %LOG,
20 ), "new with path");
21
22 ok($v->{rules}, "rules exist");
23
24 is_deeply( $v->{rules}, {
25         '900' => 1,
26         '901' => [ 'a' ],
27         '902' => [ 'b', 'c' ],
28         '903' => [ 'a', 'b', 'c' ],
29         '904' => [ 'a' ],
30         '905' => [ 'a*' ],
31 }, 'simple rules parsed');
32
33 diag dump( $v ) if ( $debug );
34
35 ok( $v->read_validate_file( "$abs_path/data/validate_test_simple" ), "read_validate_file" );
36
37 diag dump( $v ) if ( $debug );
38
39 ok($v->{rules}, "rules exist");
40
41 is_deeply( $v->{rules}, {
42         '900' => [ 'a', 'b', 'c', 'd' ],
43 }, 'rules parsed');
44
45 ok( $v->read_validate_file( "$abs_path/data/validate_test" ), "read_validate_file" );
46
47 is_deeply( $v->{rules}, {
48         '900' => 1,
49         '901' => [ 'a' ],
50         '902' => [ 'b', 'c' ],
51         '903' => [ 'a', 'b', 'c' ],
52         '904' => [ 'a' ],
53         '905' => [ 'a*' ],
54 }, 'rules');
55
56 ok($v->{rules}, "rules exist");
57
58 throws_ok { $v->validate_rec() } qr/rec/, "validate_rec need rec";
59
60 sub test_v {
61         my $row = shift || die "no row?";
62
63         my $d = dump( $row );
64
65         $row->{'000'} = [ 42 ];
66
67         $v->reset;
68         my $e = $v->validate_rec( $row );
69
70         diag "validate $d\n",dump($e) if ($debug);
71
72         if (@_) {
73                 my $tmp = $e;
74                 while (@_) {
75                         my $k = shift @_;
76                         ok($tmp = $tmp->{$k}, "found $k") if (defined($k));
77                 }
78                 diag "tmp: ",dump($tmp) if ($debug);
79                 if ($tmp) {
80                         if (ref($tmp) eq 'HASH') {
81                                 return $tmp;
82                         } else {
83                                 diag "explanation: $tmp" if $debug;
84                         }
85                 }
86         } else {
87                 ok(! $e, "validated $d");
88                 diag "expected error: ", dump($e) if($e);
89         }
90
91 }
92
93 test_v({
94         '900' => 'foo'
95 }, qw/900 not_repeatable/);
96
97 test_v({
98         '900' => [ qw/foo bar baz/ ]
99 });
100
101 test_v({
102         '901' => [ qw/foo bar baz/ ]
103 }, qw/901 missing_subfield/);
104
105 test_v({
106         '901' => [ { 'a' => 42 } ]
107 });
108
109 test_v({
110         '901' => [ { 'b' => 42 } ]
111 }, qw/901 subfield extra b/);
112
113 test_v({
114         '902' => [ { 'b' => 1 }, { 'c' => 2 } ]
115 });
116
117 test_v({
118         '902' => [ { 'a' => 0 }, { 'b' => 1 }, { 'c' => 2 } ]
119 }, qw/902 subfield extra a/);
120
121 test_v({
122         '903' => [ { 'a' => 0 }, { 'b' => 1 }, { 'c' => 2 } ]
123 });
124
125 test_v({
126         '903' => [ { 'a' => 0 }, { 'b' => 1 }, { 'c' => 2 }, { 'd' => 3 } ]
127 }, qw/903 subfield extra d/);
128
129 is_deeply(
130         test_v({
131                 '903' => [ { 'a' => 0 }, { 'b' => 1 }, { 'c' => 2 }, { 'd' => 3 }, { 'e' => 4 } ]
132         }, qw/903 subfield extra/),
133 { 'd' => 1, 'e' => 1 }, 'additional fields d, e');
134
135 test_v({
136         '904' => [ { 'a' => 1, } ]
137 });
138
139 test_v({
140         '904' => [ { 'b' => 1 } ]
141 }, qw/904 subfield extra b/);
142
143 test_v({
144         '904' => [ { 'a' => [ 1,2 ] } ]
145 }, qw/904 subfield extra_repeatable a/);
146
147 test_v({
148         '905' => [ { 'a' => [ 1,2 ] } ]
149 });
150
151 test_v({
152         '905' => [ ]
153 });
154
155 my $expected_error = {
156    900 => { not_repeatable => "probably bug in parsing input data" },
157    901 => { missing_subfield => "a required", "dump" => "baz" },
158    902 => {
159             "dump"   => "^a1^b1^b2",
160             subfield => { extra => { a => 1 }, extra_repeatable => { b => 1 } },
161           },
162    903 => {
163             "dump"   => "^a1^a2^c1",
164             subfield => { extra_repeatable => { a => 1 } },
165           },
166    904 => { subfield => { extra => { b => 1 }, missing => { a => 1 } } },
167 };
168
169
170 is_deeply(
171         test_v({
172                 '900' => 'foo',
173                 '901' => [ qw/foo bar baz/ ],
174                 '902' => [ { 'a' => 1, 'b' => [ 1,2 ] } ],
175                 '903' => [ { 'a' => [ 1, 2 ], 'c' => 1, } ],
176                 '904' => [ { 'b' => 1 } ],
177                 '905' => [ { 'a' => 1 } ],
178         }, undef),
179 $expected_error, 'validate without subfields');
180
181 ok(my $r1 = $v->report, 'report');
182
183 diag "report: $r1" if ( $debug );
184
185 is_deeply(
186         test_v({
187                 '900' => 'foo',
188                 '901' => [ qw/foo bar baz/ ],
189                 '902' => [ { 'a' => 1, 'b' => [ 1,2 ], subfields => [ qw/a 0 b 0 b 1/ ] } ],
190                 '903' => [ { 'a' => [ 1, 2 ], 'c' => 1, subfields => [ qw/a 0 a 1 c 0/ ] } ],
191                 '904' => [ { 'b' => 1, subfields => [ qw/b 0/ ] } ],
192                 '905' => [ { 'a' => 1, subfields => [ qw/a 0/ ] } ],
193         }, undef),
194 $expected_error, 'validate with subfields');
195
196 ok(my $r2 = $v->report, 'report');
197
198 cmp_ok($r1, 'eq', $r2, 'subfields same as non-subfields');