summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
blob: 46ffd502e741370328f9ab77b6f94b90162fa3e8 (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
#!/usr/bin/env perl
use strict;
use warnings;
use lib 't/lib';
use Test::More;
use Plack::Client::Test;

test_tcp_plackup(
    sub {
        [ 200, ["Content-Type" => "text/plain"], [shift->{PATH_INFO}] ]
    },
    sub {
        my $base_url = shift;

        my $client = Plack::Client->new(http => {});
        isa_ok($client, 'Plack::Client');

        {
            my $res = $client->get($base_url . '/');
            response_is($res, 200, ['Content-Type' => 'text/plain'], '/');
        }

        {
            my $res = $client->get($base_url . '/foo');
            response_is($res, 200, ['Content-Type' => 'text/plain'], '/foo');
        }
    },
);

{
    my $apps = {
        foo => sub {
            [
                200,
                ["Content-Type" => "text/plain"],
                [scalar reverse shift->{PATH_INFO}]
            ]
        },
    };
    my $client = Plack::Client->new('psgi-local' => {apps => $apps});
    isa_ok($client, 'Plack::Client');

    {
        my $res = $client->get('psgi-local://foo/');
        response_is($res, 200, ['Content-Type' => 'text/plain'], '/');
    }

    {
        my $res = $client->get('psgi-local://foo/foo');
        response_is($res, 200, ['Content-Type' => 'text/plain'], 'oof/');
    }
}

done_testing;