summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
blob: 2bb515075207d0136d32f744ce2dc57d1ecd63e5 (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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::TCP;

use Plack::Client;

test_tcp(
    client => sub {
        my $port = shift;

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

        {
            my $res = $client->get('http://localhost:5000/');
            isa_ok($res, 'Plack::Response');
            is($res->status, 200, "right status");
            is_deeply($res->headers, ["Content-Type" => "text/plain"],
                    "right headers");
            is($res->body, '/', "right body");
        }

        {
            my $res = $client->get('http://localhost:5000/foo');
            isa_ok($res, 'Plack::Response');
            is($res->status, 200, "right status");
            is_deeply($res->headers, ["Content-Type" => "text/plain"],
                    "right headers");
            is($res->body, '/foo', "right body");
        }
    },
    server => sub {
        my $port = shift;
        exec('plackup', '--port', $port, '-e', 'sub { [ 200, ["Content-Type" => "text/plain"], [shift->{PATH_INFO}] ] }');
    },
);

{
    my $apps = {
        foo => sub {
            [
                200,
                ["Content-Type" => "text/plain"],
                [scalar reverse shift->{PATH_INFO}]
            ]
        },
    };
    my $client = Plack::Client->new(apps => $apps);
    isa_ok($client, 'Plack::Client');
    is($client->apps, $apps, "got apps back");
    is($client->app_for('foo'), $apps->{foo}, "got the right app");
    is($client->app_for('bar'), undef, "didn't get nonexistent app");

    {
        my $res = $client->get('psgi://foo/');
        isa_ok($res, 'Plack::Response');
        is($res->status, 200, "right status");
        is_deeply($res->headers, ["Content-Type" => "text/plain"],
                  "right headers");
        is($res->body, '/', "right body");
    }

    {
        my $res = $client->get('psgi://foo/foo');
        isa_ok($res, 'Plack::Response');
        is($res->status, 200, "right status");
        is_deeply($res->headers, ["Content-Type" => "text/plain"],
                  "right headers");
        is($res->body, 'oof/', "right body");
    }
}

done_testing;