The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest;

use Config;

my $uri = "/TestModperl__request_rec_perlio_api";

plan tests => 2, need { "perl $]: TIEd IO is used instead of PerlIO"
                            => ($] >= 5.008 && $Config{useperlio}) };


{
    my $content  = join "", 'a'..'j', 'k'..'t';
    my $location = "$uri?STDIN";
    my $expected = join "", 'a'..'j', "package", 'k'..'t';
    my $received = POST_BODY_ASSERT $location, content => $content;
    ok t_cmp($received, $expected, "STDIN tests");
}

{
    my $location = "$uri?STDOUT";
    my $expected = "life is hard and then you die! next you reincarnate...";
    my $received = GET_BODY_ASSERT $location;
    ok t_cmp($received, $expected, "STDOUT tests");
}