The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Plack::Test;
use Test::More;
use HTTP::Request::Common;

use Plack::Builder;
use Plack::Request;

use Storable 'thaw';

my $app = sub {
    my $req = Plack::Request->new(shift);
    my $name = $req->param('name');
    return sub {
        my $responder = shift;
        my $writer = $responder->([200, ["Content-Type", "text/plain"]]);

        $writer->write("Hello ");
        $writer->write("$name");
        $writer->write("!");
        $writer->close;
    };
};

my $t = builder {
    enable "Test::StashWarnings";
    $app;
};

test_psgi $t, sub {
    my $cb = shift;

    my $res = $cb->(GET "/__test_warnings");
    is_deeply thaw($res->content), [];
    is $res->content_type, 'application/x-storable';

    $res = $cb->(GET "/?name=foo");
    like $res->content, qr/Hello foo!/;
    is $res->content_type, 'text/plain';

    $res = $cb->(GET "/__test_warnings");
    is_deeply thaw($res->content), [], 'no warnings';
    is $res->content_type, 'application/x-storable';

    $res = $cb->(GET "/");
    like $res->content, qr/Hello !/;
    is $res->content_type, 'text/plain';

    $res = $cb->(GET "/__test_warnings");
    my @warnings = @{ thaw($res->content) };
    is @warnings, 1, "one warning";
    like $warnings[0], qr/Use of uninitialized value (?:\$name )?in string/;
    is $res->content_type, 'application/x-storable';
};

done_testing;