#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 10;
BEGIN {
use FindBin;
use lib $FindBin::Bin;
use_ok('C4::Scrubber');
}
sub pretty_line {
my $max = 54;
(@_) or return "#" x $max . "\n";
my $phrase = " " . shift() . " ";
my $half = "#" x (($max - length($phrase))/2);
return $half . $phrase . $half . "\n";
}
my ($scrubber,$html,$result,@types,$collapse);
$collapse = 1;
@types = qw(comment tag);
$html = q|
I am ITALICS with fake="attribute" I am em with fake="attribute" I am BOLD I am a span w/ style. Bad style. I am a span trying to inject a link: <a href="badlink.html"> link </a> I am a link firing javascript.
At the end here, I actually have some regular text.
|;
print pretty_line("Original HTML:"), $html, "\n", pretty_line();
$collapse and diag "Note: scrubber test output will have whitespace collapsed for readability\n";
ok($scrubber = C4::Scrubber->new(), "Constructor: C4::Scrubber->new()");
ok(printf("# scrubber settings: default %s, comment %s, process %s\n",
$scrubber->default(),$scrubber->comment(),$scrubber->process()),
"Outputting settings from scrubber object (type: [default])"
);
ok($result = $scrubber->scrub($html), "Getting scrubbed text (type: [default])");
$collapse and $result =~ s/\s*\n\s*/\n/g;
print pretty_line('default'), $result, "\n", pretty_line();
foreach(@types) {
ok($scrubber = C4::Scrubber->new($_), "Constructor: C4::Scrubber->new($_)");
ok(printf("# scrubber settings: default %s, comment %s, process %s\n",
$scrubber->default(),$scrubber->comment(),$scrubber->process()),
"Outputting settings from scrubber object (type: $_)"
);
ok($result = $scrubber->scrub($html), "Getting scrubbed text (type: $_)");
$collapse and $result =~ s/\s*\n\s*/\n/g;
print pretty_line($_), $result, "\n", pretty_line();
}
diag "done.\n";