File: 06_scrub_file.t

package info (click to toggle)
libhtml-scrubber-perl 0.08-4
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 132 kB
  • ctags: 23
  • sloc: perl: 325; makefile: 43
file content (57 lines) | stat: -rw-r--r-- 1,868 bytes parent folder | download | duplicates (4)
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
# perl Makefile.PL && nmake realclean && cls && perl Makefile.PL && nmake test

use strict;
use File::Spec;
use Test::More tests => 10;
BEGIN { $^W = 1 }

                use_ok( 'HTML::Scrubber' );

my $s = HTML::Scrubber->new;
my $html = q[<html><body><p>hi<br>start <!--comment--> mid1 <?html pi> mid2 <?xml pi?> end</body></html>];

                isa_ok($s, 'HTML::Scrubber');

my $tmpdir = File::Spec->tmpdir();

SKIP: {
    skip "no writable temporary directory found", 6
        unless length $tmpdir
            and -d $tmpdir;

    my $tmpfile = File::Spec->catfile($tmpdir,"html-scrubber.test.html");
    my $r = $s->scrub($html,$tmpfile);
    $r = "Error: \$@=$@ \$!=$!" unless $r;
                    is($r, 1, "scrub(\$html,\$tmpfile=$tmpfile)");

#    use Data::Dumper;die Dumper($s);

    local *FILIS;
    open FILIS, "+>$tmpfile" or die "can't write to $tmpfile";

    $r = $s->scrub($html,\*FILIS);
    $r = "Error: \$@=$@ \$!=$!" unless $r;

                    is($r, 1, q[scrub($html,\*FILIS)]);

    seek *FILIS,0,0;
    $r = join '', readline *FILIS;
                    is($r,"histart  mid1  mid2  end","FILIS has the right stuff");
                    is(close(FILIS),1,q[close(FILIS)]);

    $r = $s->scrub_file($tmpfile,"$tmpfile.html");
    $r = "Error: \$@=$@ \$!=$!" unless $r;

                    is($r, 1, qq[scrub_file(\$tmpfile,"\$tmpfile.html"=$tmpfile.html)]);

    open FILIS, "+>$tmpfile.html" or die "can't write to $tmpfile";
    $r = $s->scrub_file($tmpfile,\*FILIS);
    $r = "Error: \$@=$@ \$!=$!" unless $r;

                    is($r, 1, q[scrub_file($tmpfile,\*FILIS)]);
    seek *FILIS,0,0;
    $r = join '', readline *FILIS;
                    is($r,"histart  mid1  mid2  end","FILIS has the right stuff");
                    is(close(FILIS),1,q[close(FILIS)]);

};