Debian lenny version packages
[pkg-perl] / deb-src / libwww-mechanize-perl / libwww-mechanize-perl-1.34 / t / taint.t
diff --git a/deb-src/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/taint.t b/deb-src/libwww-mechanize-perl/libwww-mechanize-perl-1.34/t/taint.t
new file mode 100644 (file)
index 0000000..d2c9b55
--- /dev/null
@@ -0,0 +1,30 @@
+#!perl -T
+
+use warnings;
+use strict;
+use Test::More;
+
+BEGIN {
+    eval 'use Test::Taint';
+    plan skip_all => 'Test::Taint required for checking taintedness' if $@;
+    plan tests=>6;
+}
+
+BEGIN { delete @ENV{ qw( http_proxy HTTP_PROXY ) }; }
+BEGIN {
+    use_ok( 'WWW::Mechanize' );
+}
+
+my $mech = WWW::Mechanize->new( autocheck => 1 );
+isa_ok( $mech, 'WWW::Mechanize', 'Created object' );
+
+$mech->get( 'file:t/google.html' );
+
+# Make sure taint checking is on correctly
+my @keys = keys %ENV;
+tainted_ok( $ENV{ $keys[0] }, 'ENV taints OK' );
+
+is( $mech->title, 'Google', 'Correct title' );
+untainted_ok( $mech->title, 'Title should not be tainted' );
+
+tainted_ok( $mech->content, 'But content should' );