summaryrefslogtreecommitdiffstats
path: root/t/02-inputs.t
blob: 0bedc658187acfcda7ce982e1a29bdca22d05d42 (plain) (blame)
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
#!/usr/bin/env perl
use strict;
use warnings;
use lib 't/lib';
use Test::More;
use Plack::Client::Test;

my $app = <<'APP';
sub {
    my $env = shift;
    return [
        200,
        ['Content-Type' => 'text/plain'],
        [
            (map { ($env->{$_} || '') . "\n" }
                 qw(
                    REQUEST_METHOD
                    REQUEST_URI
                    CONTENT_LENGTH
                 )),
            (map { ucfirst(lc) . ': ' . $env->{"HTTP_X_$_"} . "\n" }
                 grep { $_ ne 'FORWARDED_FOR' } grep { s/^HTTP_X_// }
                      keys %$env),
            do {
                my $fh = $env->{'psgi.input'};
                $fh->read(my $body, $env->{CONTENT_LENGTH});
                $body;
            },
        ]
    ];
}
APP

test_tcp_plackup(
    $app,
    sub {
        my $base_uri = shift;

        test_responses($base_uri, Plack::Client->new);
    },
);

{
    my $apps = {
        foo => eval $app,
    };
    my $base_uri = 'psgi-local://foo';

    test_responses($base_uri, Plack::Client->new(apps => $apps));
}

sub test_responses {
    my ($base_uri, $client) = @_;
    local $Test::Builder::Level = $Test::Builder::Level + 1;

    response_is(
        $client->get($base_uri),
        200,
        ['Content-Type' => 'text/plain'],
        "GET\n/\n\n"
    );

    response_is(
        $client->get($base_uri . '/'),
        200,
        ['Content-Type' => 'text/plain'],
        "GET\n/\n\n"
    );

    response_is(
        $client->get($base_uri . '/foo'),
        200,
        ['Content-Type' => 'text/plain'],
        "GET\n/foo\n\n"
    );

    response_is(
        $client->get($base_uri . '/foo', ['X-Foo' => 'bar']),
        200,
        ['Content-Type' => 'text/plain'],
        "GET\n/foo\n\nFoo: bar\n"
    );

    response_is(
        $client->get($base_uri . '/foo', HTTP::Headers->new('X-Foo' => 'bar')),
        200,
        ['Content-Type' => 'text/plain'],
        "GET\n/foo\n\nFoo: bar\n"
    );

    response_is(
        $client->post($base_uri, [], "foo"),
        200,
        ['Content-Type' => 'text/plain'],
        "POST\n/\n3\nfoo",
    );
}

done_testing;