/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 827 - (hide annotations)
Sun May 20 16:19:16 2007 UTC (17 years ago) by dpavlin
File MIME type: application/x-troff
File size: 1071 byte(s)
 r1212@llin:  dpavlin | 2007-05-20 17:39:01 +0200
 first try at implementation of delimiters validation

1 dpavlin 827 #!/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' => [ { 'a' => 'a : aa = aaa : a ; a', 'b' => 'b ; b ; b ; b ; a : / z . z . ' }, { 'c' => 'a : b ; c / d' } ]
45     });
46    
47     diag dump($v->{_delimiters_templates});
48    
49     is_deeply( $v->{_delimiters_templates}, {
50     900 => {
51     "^a : : ; ^b ; ; ; ; : . . " => 1,
52     "^a : : ; ^b ; ; ; ; : . . ^c : ; / " => 1,
53     },
54     }, 'just subfields and delimiters');
55    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26