FAQ sync.
[p5sagit/p5-mst-13.2.git] / lib / CGI / t / carp.t
CommitLineData
fa8e8936 1# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 2 -*-
2#!/usr/local/bin/perl -w
3
f0c07f2e 4BEGIN {
5 chdir 't' if -d 't';
6 if ($ENV{PERL_CORE}) {
7 @INC = '../lib';
8 } else {
9 # Due to a bug in older versions of MakeMaker & Test::Harness, we must
10 # ensure the blib's are in @INC, else we might use the core CGI.pm
11 unshift @INC, qw( ../blib/lib ../blib/arch lib );
12 }
13}
ac734d8b 14
f0c07f2e 15use strict;
ac734d8b 16
fa8e8936 17use Test::More tests => 42;
18use IO::Handle;
19
20BEGIN { use_ok('CGI::Carp') };
21
22#-----------------------------------------------------------------------------
23# Test id
24#-----------------------------------------------------------------------------
25
26# directly invoked
27my $expect_f = __FILE__;
28my $expect_l = __LINE__ + 1;
29my ($file, $line, $id) = CGI::Carp::id(0);
30is($file, $expect_f, "file");
31is($line, $expect_l, "line");
32is($id, "carp.t", "id");
33
34# one level of indirection
35sub id1 { my $level = shift; return CGI::Carp::id($level); };
36
37$expect_l = __LINE__ + 1;
38($file, $line, $id) = id1(1);
39is($file, $expect_f, "file");
40is($line, $expect_l, "line");
41is($id, "carp.t", "id");
42
43# two levels of indirection
44sub id2 { my $level = shift; return id1($level); };
45
46$expect_l = __LINE__ + 1;
47($file, $line, $id) = id2(2);
48is($file, $expect_f, "file");
49is($line, $expect_l, "line");
50is($id, "carp.t", "id");
51
52#-----------------------------------------------------------------------------
53# Test stamp
54#-----------------------------------------------------------------------------
55
56my $stamp = "/^\\[
57 ([a-z]{3}\\s){2}\\s?
58 [\\s\\d:]+
59 \\]\\s$id:/ix";
60
61like(CGI::Carp::stamp(),
62 $stamp,
63 "Time in correct format");
64
65sub stamp1 {return CGI::Carp::stamp()};
66sub stamp2 {return stamp1()};
67
68like(stamp2(), $stamp, "Time in correct format");
69
70#-----------------------------------------------------------------------------
71# Test warn and _warn
72#-----------------------------------------------------------------------------
73
74# set some variables to control what's going on.
75$CGI::Carp::WARN = 0;
76$CGI::Carp::EMIT_WARNINGS = 0;
77@CGI::Carp::WARNINGS = ();
78my $q_file = quotemeta($file);
79
80
81# Test that realwarn is called
82{
83 local $^W = 0;
84 eval "sub CGI::Carp::realwarn {return 'Called realwarn'};";
85}
86
87$expect_l = __LINE__ + 1;
88is(CGI::Carp::warn("There is a problem"),
89 "Called realwarn",
90 "CGI::Carp::warn calls CORE::warn");
91is(@CGI::Carp::WARNINGS, 0, "_warn not called");
92
93# Test that message is constructed correctly
94eval 'sub CGI::Carp::realwarn {my $mess = shift; return $mess};';
95
96$expect_l = __LINE__ + 1;
97like(CGI::Carp::warn("There is a problem"),
98 "/] $id: There is a problem at $q_file line $expect_l.".'$/',
99 "CGI::Carp::warn builds correct message");
100is(@CGI::Carp::WARNINGS, 0, "_warn not called");
101
102# Test that _warn is called at the correct time
103$CGI::Carp::WARN = 1;
104
ac734d8b 105$expect_l = __LINE__ + 1;
fa8e8936 106like(CGI::Carp::warn("There is a problem"),
107 "/] $id: There is a problem at $q_file line $expect_l.".'$/',
108 "CGI::Carp::warn builds correct message");
109
110is(@CGI::Carp::WARNINGS, 1, "_warn now called");
111like($CGI::Carp::WARNINGS[0],
112 "/There is a problem at $q_file line $expect_l.".'$/',
113 "CGI::Carp::WARNINGS has correct message (without stamp)");
114
115#-----------------------------------------------------------------------------
116# Test ineval
117#-----------------------------------------------------------------------------
118
119ok(!CGI::Carp::ineval, 'ineval returns false when not in eval');
120eval {ok(CGI::Carp::ineval, 'ineval returns true when in eval');};
121
122#-----------------------------------------------------------------------------
123# Test die
124#-----------------------------------------------------------------------------
125
126# set some variables to control what's going on.
127$CGI::Carp::WRAP = 0;
128
129$expect_l = __LINE__ + 1;
130eval { CGI::Carp::die('There is a problem'); };
131like($@,
132 '/^There is a problem/',
133 'CGI::Carp::die calls CORE::die without altering argument in eval');
134
135# Test that realwarn is called
136{
137 local $^W = 0;
138 eval 'sub CGI::Carp::realdie {my $mess = shift; return $mess};';
139}
140
141like(CGI::Carp::die('There is a problem'),
142 $stamp,
143 'CGI::Carp::die calls CORE::die, but adds stamp');
144
145#-----------------------------------------------------------------------------
146# Test set_message
147#-----------------------------------------------------------------------------
148
149is(CGI::Carp::set_message('My new Message'),
150 'My new Message',
151 'CGI::Carp::set_message returns new message');
152
153is($CGI::Carp::CUSTOM_MSG,
154 'My new Message',
155 'CGI::Carp::set_message message set correctly');
156
157# set the message back to the empty string so that the tests later
158# work properly.
159CGI::Carp::set_message(''),
160
161#-----------------------------------------------------------------------------
162# Test warnings_to_browser
163#-----------------------------------------------------------------------------
164
165CGI::Carp::warningsToBrowser(0);
166is($CGI::Carp::EMIT_WARNINGS, 0, "Warnings turned off");
167unless( is(@CGI::Carp::WARNINGS, 1, "_warn not called") ) {
168 print join "\n", map "'$_'", @CGI::Carp::WARNINGS;
169}
170
171# turn off STDOUT (prevents spurious warnings to screen
172tie *STDOUT, 'StoreStuff' or die "Can't tie STDOUT";
173CGI::Carp::warningsToBrowser(1);
174my $fake_out = join '', <STDOUT>;
175untie *STDOUT;
176
177open(STDOUT, ">&REAL_STDOUT");
0106e1e7 178my $fname = $0;
179$fname =~ tr/<>-/\253\273\255/; # _warn does this so we have to also
f0c07f2e 180is( $fake_out, "<!-- warning: There is a problem at $fname line 106. -->\n",
fa8e8936 181 'warningsToBrowser() on' );
182
183is($CGI::Carp::EMIT_WARNINGS, 1, "Warnings turned off");
184is(@CGI::Carp::WARNINGS, 0, "_warn is called");
185
186#-----------------------------------------------------------------------------
187# Test fatals_to_browser
188#-----------------------------------------------------------------------------
189
190package StoreStuff;
191
192sub TIEHANDLE {
193 my $class = shift;
194 bless [], $class;
195}
196
197sub PRINT {
198 my $self = shift;
199 push @$self, @_;
200}
201
202sub READLINE {
203 my $self = shift;
204 shift @$self;
205}
206
207package main;
208
209tie *STDOUT, "StoreStuff";
210
211# do tests
212my @result;
213
214CGI::Carp::fatalsToBrowser();
215$result[0] .= $_ while (<STDOUT>);
216
217CGI::Carp::fatalsToBrowser('Message to the world');
218$result[1] .= $_ while (<STDOUT>);
219
220$ENV{SERVER_ADMIN} = 'foo@bar.com';
221CGI::Carp::fatalsToBrowser();
222$result[2] .= $_ while (<STDOUT>);
223
224CGI::Carp::set_message('Override the message passed in'),
225
226CGI::Carp::fatalsToBrowser('Message to the world');
227$result[3] .= $_ while (<STDOUT>);
228CGI::Carp::set_message(''),
229delete $ENV{SERVER_ADMIN};
230
231# now restore STDOUT
232untie *STDOUT;
233
234
235like($result[0],
236 '/Content-type: text/html/',
237 "Default string has header");
238
239ok($result[0] !~ /Message to the world/, "Custom message not in default string");
240
241like($result[1],
242 '/Message to the world/',
243 "Custom Message appears in output");
244
245ok($result[0] !~ /foo\@bar.com/, "Server Admin does not appear in default message");
246
247like($result[2],
248 '/foo@bar.com/',
249 "Server Admin appears in output");
250
251like($result[3],
252 '/Message to the world/',
253 "Custom message not in result");
254
255like($result[3],
256 '/Override the message passed in/',
257 "Correct message in string");
258
259#-----------------------------------------------------------------------------
260# Test to_filehandle
261#-----------------------------------------------------------------------------
262
263sub buffer {
264 CGI::Carp::to_filehandle (@_);
265}
266
267tie *STORE, "StoreStuff";
268
269require FileHandle;
270my $fh = FileHandle->new;
271
272ok( defined buffer(\*STORE), '\*STORE returns proper filehandle');
273ok( defined buffer( $fh ), '$fh returns proper filehandle');
274ok( defined buffer('::STDOUT'), 'STDIN returns proper filehandle');
275ok( defined buffer(*main::STDOUT), 'STDIN returns proper filehandle');
276ok(!defined buffer("WIBBLE"), '"WIBBLE" doesn\'t returns proper filehandle');