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
|
# please insert nothing before this line: -*- mode: cperl; cperl-indent-level: 4; cperl-continued-statement-offset: 4; indent-tabs-mode: nil -*-
package TestModperl::request_rec_tie_api;
# this test is relevant only when the tied STDIN/STDOUT are used (when
# $Config{useperlio} is not defined.)
use strict;
use warnings FATAL => 'all';
use Apache2::RequestIO ();
use Apache::Test;
use Apache::TestUtil;
use Apache::TestConfig;
use File::Spec::Functions qw(catfile catdir);
use Apache2::Const -compile => 'OK';
use Config;
sub handler {
my $r = shift;
require Apache2::Build;
my @todo;
push @todo, 1 if Apache2::Build::AIX();
plan $r, tests => 3, todo => \@todo,
need { "perl $]: PerlIO is used instead of TIEd IO"
=> !($] >= 5.008 && $Config{useperlio}) };
# XXX: on AIX 4.3.3 we get:
# STDIN STDOUT STDERR
# perl : 0 1 2
# mod_perl: 0 0 2
my $fileno = fileno STDOUT;
ok $fileno;
t_debug "fileno STDOUT: $fileno";
{
my $vars = Apache::Test::config()->{vars};
my $target_dir = catdir $vars->{serverroot}, 'logs';
my $file = catfile $target_dir, "stdout";
# test OPEN
my $received = open STDOUT, ">", $file or die "Can't open $file: $!";
ok t_cmp($received, 1, "OPEN");
# test CLOSE, which is a noop
ok $r->CLOSE;
close $file;
# restore the tie
tie *STDOUT, $r;
# flush things that went into the file as STDOUT
open my $fh, $file or die "Can't open $file: $!";
local $\;
print <$fh>;
# cleanup
unlink $file;
}
return Apache2::Const::OK;
}
1;
|