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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 2 -*-
#!perl -w
use strict;
use Test::More tests => 61;
use IO::Handle;
use CGI::Carp;
#-----------------------------------------------------------------------------
# Test id
#-----------------------------------------------------------------------------
# directly invoked
my $expect_f = __FILE__;
my $expect_l = __LINE__ + 1;
my ($file, $line, $id) = CGI::Carp::id(0);
is($file, $expect_f, "file");
is($line, $expect_l, "line");
is($id, "carp.t", "id");
# one level of indirection
sub id1 { my $level = shift; return CGI::Carp::id($level); };
$expect_l = __LINE__ + 1;
($file, $line, $id) = id1(1);
is($file, $expect_f, "file");
is($line, $expect_l, "line");
is($id, "carp.t", "id");
# two levels of indirection
sub id2 { my $level = shift; return id1($level); };
$expect_l = __LINE__ + 1;
($file, $line, $id) = id2(2);
is($file, $expect_f, "file");
is($line, $expect_l, "line");
is($id, "carp.t", "id");
#-----------------------------------------------------------------------------
# Test stamp
#-----------------------------------------------------------------------------
my $stamp = "/^\\[
([a-z]{3}\\s){2}\\s?
[\\s\\d:]+
\\]\\s$id:/ix";
like(CGI::Carp::stamp(),
$stamp,
"Time in correct format");
sub stamp1 {return CGI::Carp::stamp()};
sub stamp2 {return stamp1()};
like(stamp2(), $stamp, "Time in correct format");
#-----------------------------------------------------------------------------
# Test warn and _warn
#-----------------------------------------------------------------------------
# set some variables to control what's going on.
$CGI::Carp::WARN = 0;
$CGI::Carp::EMIT_WARNINGS = 0;
my $q_file = quotemeta($file);
# Test that realwarn is called
{
local $^W = 0;
eval "sub CGI::Carp::realwarn {return 'Called realwarn'};";
}
$expect_l = __LINE__ + 1;
is(CGI::Carp::warn("There is a problem"),
"Called realwarn",
"CGI::Carp::warn calls CORE::warn");
# Test that message is constructed correctly
eval 'sub CGI::Carp::realwarn {my $mess = shift; return $mess};';
$expect_l = __LINE__ + 1;
like(CGI::Carp::warn("There is a problem"),
"/] $id: There is a problem at $q_file line $expect_l.".'$/',
"CGI::Carp::warn builds correct message");
# Test that _warn is called at the correct time
$CGI::Carp::WARN = 1;
my $warn_expect_l = $expect_l = __LINE__ + 1;
like(CGI::Carp::warn("There is a problem"),
"/] $id: There is a problem at $q_file line $expect_l.".'$/',
"CGI::Carp::warn builds correct message");
#-----------------------------------------------------------------------------
# Test ineval
#-----------------------------------------------------------------------------
ok(!CGI::Carp::ineval, 'ineval returns false when not in eval');
eval {ok(CGI::Carp::ineval, 'ineval returns true when in eval');};
#-----------------------------------------------------------------------------
# Test die
#-----------------------------------------------------------------------------
# set some variables to control what's going on.
$CGI::Carp::WRAP = 0;
$expect_l = __LINE__ + 1;
eval { CGI::Carp::die('There is a problem'); };
like($@,
'/^There is a problem/',
'CGI::Carp::die calls CORE::die without altering argument in eval');
# Test that realwarn is called
{
local $^W = 0;
local *CGI::Carp::realdie = sub { my $mess = shift; return $mess };
like(CGI::Carp::die('There is a problem'),
$stamp,
'CGI::Carp::die calls CORE::die, but adds stamp');
}
#-----------------------------------------------------------------------------
# Test set_message
#-----------------------------------------------------------------------------
is(CGI::Carp::set_message('My new Message'),
'My new Message',
'CGI::Carp::set_message returns new message');
is($CGI::Carp::CUSTOM_MSG,
'My new Message',
'CGI::Carp::set_message message set correctly');
# set the message back to the empty string so that the tests later
# work properly.
CGI::Carp::set_message(''),
#-----------------------------------------------------------------------------
# Test set_progname
#-----------------------------------------------------------------------------
import CGI::Carp qw(name=new_progname);
is($CGI::Carp::PROGNAME,
'new_progname',
'CGI::Carp::import set program name correctly');
is(CGI::Carp::set_progname('newer_progname'),
'newer_progname',
'CGI::Carp::set_progname returns new program name');
is($CGI::Carp::PROGNAME,
'newer_progname',
'CGI::Carp::set_progname program name set correctly');
# set the message back to the empty string so that the tests later
# work properly.
is (CGI::Carp::set_progname(undef),undef,"CGI::Carp::set_progname returns unset name correctly");
is ($CGI::Carp::PROGNAME,undef,"CGI::Carp::set_progname program name unset correctly");
#-----------------------------------------------------------------------------
# Test warnings_to_browser
#-----------------------------------------------------------------------------
CGI::Carp::warningsToBrowser(0);
is($CGI::Carp::EMIT_WARNINGS, 0, "Warnings turned off");
# turn off STDOUT (prevents spurious warnings to screen
tie *STDOUT, 'StoreStuff' or die "Can't tie STDOUT";
CGI::Carp::warningsToBrowser(1);
my $fake_out = join '', <STDOUT>;
untie *STDOUT;
open(STDOUT, ">&REAL_STDOUT");
my $fname = $0;
$fname =~ tr/<>-/\253\273\255/; # _warn does this so we have to also
is( $fake_out, "<!-- warning: There is a problem at $fname line $warn_expect_l. -->\n",
'warningsToBrowser() on' );
is($CGI::Carp::EMIT_WARNINGS, 1, "Warnings turned off");
#-----------------------------------------------------------------------------
# Test fatals_to_browser
#-----------------------------------------------------------------------------
package StoreStuff;
sub TIEHANDLE {
my $class = shift;
bless [], $class;
}
sub PRINT {
my $self = shift;
push @$self, @_;
}
sub READLINE {
my $self = shift;
shift @$self;
}
package main;
tie *STDOUT, "StoreStuff";
# do tests
my @result;
CGI::Carp::fatalsToBrowser();
$result[0] .= $_ while (<STDOUT>);
CGI::Carp::fatalsToBrowser('Message to the world');
$result[1] .= $_ while (<STDOUT>);
$ENV{SERVER_ADMIN} = 'foo@bar.com';
CGI::Carp::fatalsToBrowser();
$result[2] .= $_ while (<STDOUT>);
CGI::Carp::set_message('Override the message passed in'),
CGI::Carp::fatalsToBrowser('Message to the world');
$result[3] .= $_ while (<STDOUT>);
CGI::Carp::set_message(''),
delete $ENV{SERVER_ADMIN};
# now restore STDOUT
untie *STDOUT;
like($result[0],
'/Content-type: text/html/',
"Default string has header");
ok($result[0] !~ /Message to the world/, "Custom message not in default string");
like($result[1],
'/Message to the world/',
"Custom Message appears in output");
ok($result[0] !~ /foo\@bar.com/, "Server Admin does not appear in default message");
like($result[2],
'/foo@bar.com/',
"Server Admin appears in output");
like($result[3],
'/Message to the world/',
"Custom message not in result");
like($result[3],
'/Override the message passed in/',
"Correct message in string");
#-----------------------------------------------------------------------------
# Test to_filehandle
#-----------------------------------------------------------------------------
sub buffer {
CGI::Carp::to_filehandle (@_);
}
tie *STORE, "StoreStuff";
require FileHandle;
my $fh = FileHandle->new;
ok( defined buffer(\*STORE), '\*STORE returns proper filehandle');
ok( defined buffer( $fh ), '$fh returns proper filehandle');
ok( defined buffer('::STDOUT'), 'STDIN returns proper filehandle');
ok( defined buffer(*main::STDOUT), 'STDIN returns proper filehandle');
ok(!defined buffer("WIBBLE"), '"WIBBLE" doesn\'t returns proper filehandle');
# Calling die with code refs with no WRAP
{
local $CGI::Carp::WRAP = 0;
eval { CGI::Carp::die( 'regular string' ) };
like $@ => qr/regular string/, 'die with string';
eval { CGI::Carp::die( [ 1..10 ] ) };
like $@ => qr/ARRAY\(0x[\da-f]+\)/, 'die with array ref';
eval { CGI::Carp::die( { a => 1 } ) };
like $@ => qr/HASH\(0x[\da-f]+\)/, 'die with hash ref';
eval { CGI::Carp::die( sub { 'Farewell' } ) };
like $@ => qr/CODE\(0x[\da-f]+\)/, 'die with code ref';
eval { CGI::Carp::die( My::Plain::Object->new ) };
isa_ok $@, 'My::Plain::Object';
eval { CGI::Carp::die( My::Plain::Object->new, ' and another argument' ) };
like $@ => qr/My::Plain::Object/, 'object is stringified';
like $@ => qr/and another argument/, 'second argument is present';
eval { CGI::Carp::die( My::Stringified::Object->new ) };
isa_ok $@, 'My::Stringified::Object';
eval { CGI::Carp::die( My::Stringified::Object->new, ' and another argument' ) };
like $@ => qr/stringified/, 'object is stringified';
like $@ => qr/and another argument/, 'second argument is present';
eval { CGI::Carp::die() };
like $@ => qr/Died at/, 'die with no argument';
}
# Calling die with code refs when WRAPped
{
local $CGI::Carp::WRAP = 1;
local *CGI::Carp::realdie = sub { return @_ };
local *STDOUT;
tie *STDOUT, 'StoreStuff';
my %result; # store results because stdout is kidnapped
CGI::Carp::die( 'regular string' );
$result{string} .= $_ while <STDOUT>;
CGI::Carp::die( [ 1..10 ] );
$result{array_ref} .= $_ while <STDOUT>;
CGI::Carp::die( { a => 1 } );
$result{hash_ref} .= $_ while <STDOUT>;
CGI::Carp::die( sub { 'Farewell' } );
$result{code_ref} .= $_ while <STDOUT>;
CGI::Carp::die( My::Plain::Object->new );
$result{plain_object} .= $_ while <STDOUT>;
CGI::Carp::die( My::Stringified::Object->new );
$result{string_object} .= $_ while <STDOUT>;
undef $@;
CGI::Carp::die();
$result{no_args} .= $_ while <STDOUT>;
$@ = "I think I caught a virus";
CGI::Carp::die();
$result{propagated} .= $_ while <STDOUT>;
untie *STDOUT;
like $result{string} => qr/regular string/, 'regular string, wrapped';
like $result{array_ref} => qr/ARRAY\(\w+?\)/, 'array ref, wrapped';
like $result{hash_ref} => qr/HASH\(\w+?\)/, 'hash ref, wrapped';
like $result{code_ref} => qr/CODE\(\w+?\)/, 'code ref, wrapped';
like $result{plain_object} => qr/My::Plain::Object/,
'plain object, wrapped';
like $result{string_object} => qr/stringified/,
'stringified object, wrapped';
like $result{no_args} => qr/Died at/, 'no args, wrapped';
like $result{propagated} => qr/I think I caught a virus\t\.{3}propagated/,
'propagating $@ if no argument';
}
{
package My::Plain::Object;
sub new {
return bless {}, shift;
}
}
{
package My::Stringified::Object;
use overload '""' => sub { 'stringified' };
sub new {
return bless {}, shift;
}
}
@result = ();
tie *STDOUT, 'StoreStuff' or die "Can't tie STDOUT";
{
eval {
$CGI::Carp::TO_BROWSER = 0;
die 'Message ToBrowser = 0';
};
$result[0] = $@;
$result[1] .= $_ while (<STDOUT>);
}
untie *STDOUT;
like $result[0] => qr/Message ToBrowser/, 'die message for ToBrowser = 0 is OK';
ok !$result[1], 'No output for ToBrowser = 0';
|