/[webpac2]/trunk/t/1-validate-delimiters.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/t/1-validate-delimiters.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 829 - (show annotations)
Sun May 20 16:19:19 2007 UTC (16 years, 11 months ago) by dpavlin
File MIME type: application/x-troff
File size: 1294 byte(s)
 r1214@llin:  dpavlin | 2007-05-20 18:19:12 +0200
 more sample data

1 #!/usr/bin/perl -w
2
3 use strict;
4 use Test::More tests => 4;
5 use Test::Exception;
6 use blib;
7
8 use Data::Dump qw/dump/;
9 use Cwd qw/abs_path/;
10
11 BEGIN {
12 use_ok( 'WebPAC::Validate' );
13 }
14
15 my $debug = shift @ARGV;
16
17 ok(my $abs_path = abs_path($0), "abs_path");
18 $abs_path =~ s#/[^/]*$#/#;
19
20 ok(my $v = new WebPAC::Validate(
21 path => "$abs_path/data/validate_test",
22 delimiters => [ ' : ', ' ; ', ' / ', ' \. ', ' = ' ],
23 debug => $debug,
24 ), "new");
25
26 diag "rules = ", dump( $v->{rules} );
27
28 $v->{rules} = {};
29
30 sub test_v {
31 my $row = shift || die "no row?";
32
33 my $d = dump( $row );
34
35 $row->{'000'} = [ 42 ];
36
37 $v->reset_errors;
38 my $e = $v->validate_rec( $row );
39
40 diag ">> validate $d\n",dump($e) if ($debug);
41 }
42
43 test_v({
44 '900' => [
45 { 'a' => 'a : aa = aaa : a ; a', 'b' => 'b ; b ; b ; b ; a : / z . z . ' },
46 { 'a' => 'a : a : a', 'c' => [ 'a : b ; c', 'a : b ; c / d' ] },
47 { 'a' => 'a : b / c' },
48 { 'a' => 'a : b / c' },
49 ],
50 '901' => [
51 { 'a' => 'a : b / c', 'b' => 'foo' },
52 { 'a' => 'a : b / c', 'b' => 'foo' },
53 ],
54 });
55
56 diag dump($v->{_delimiters_templates});
57
58 is_deeply( $v->{_delimiters_templates}, {
59 900 => {
60 "^a : / " => 2,
61 "^a : : ^c : ; ^c : ; / " => 1,
62 "^a : = : ; ^b ; ; ; ; : . . " => 1,
63 },
64 901 => { "^a : / ^b" => 2 },
65 }, 'just subfields and delimiters');
66

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26