File: test.t

package info (click to toggle)
libcgi-formbuilder-source-yaml-perl 1.0.8-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 80 kB
  • sloc: perl: 129; makefile: 2
file content (63 lines) | stat: -rwxr-xr-x 1,211 bytes parent folder | download | duplicates (5)
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
#!/usr/bin/perl 

# Copyright (c) 2006 Mark Hedges <hedges@ucsd.edu>

use strict;
use English '-no_match_vars';

use blib;

use Test::More tests => 6;

use FindBin;

# use a BEGIN block so we print our plan before CGI::FormBuilder is loaded
BEGIN {
    use_ok('CGI::FormBuilder');
}
require_ok('CGI::FormBuilder');

# Need to fake a request or else we stall... or not?  hrmm.
$ENV{REQUEST_METHOD} = 'GET';
my $testqs = {
    test1   => 'testing',
    test2   => 'test@test.foo',
    test3   => 0,
    _submitted_test => 1,
};
$ENV{QUERY_STRING} = join('&', map "$_=$testqs->{$_}", keys %{$testqs});

sub test4opts {
    return [
        [ beef => "Where's the beef?"   ],
        [ chicken => "Cross the road!"  ],
        [ horta => "They're eggs, Jim!" ],
    ];
}

my $form = undef;

my $sourcefile = "$FindBin::Bin/test.fb";

eval {
    $form = CGI::FormBuilder->new(
        source  => {
            type    => 'YAML',
            source  => $sourcefile,
            debug   => 0,
        },
    );
};
ok !$EVAL_ERROR, 'create form';

my $ren = undef;

eval {
    $ren = $form->render;
};
ok !$EVAL_ERROR, 'render form';

ok( $form->submitted, 'form submitted' );

ok( $form->validate, 'form validate' );