actually document the new request body_data method
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_request_remote_user.t
1 #!perl
2
3 # This tests to make sure the REMOTE_USER environment variable is properly passed through by the engine.
4
5 use strict;
6 use warnings;
7
8 use FindBin;
9 use lib "$FindBin::Bin/../lib";
10
11 use Test::More tests => 7;
12 use Catalyst::Test 'TestApp';
13
14 use Catalyst::Request;
15 use HTTP::Request::Common;
16
17 {
18     my $creq;
19
20     my $request = GET(
21         'http://localhost/dump/request',
22     );
23
24     ok( my $response = request($request, { extra_env => { REMOTE_USER => 'dwc' } }), 'Request' );
25     ok( $response->is_success, 'Response Successful 2xx' );
26     is( $response->content_type, 'text/plain', 'Response Content-Type' );
27     like( $response->content, qr/'Catalyst::Request'/,
28         'Content is a serialized Catalyst::Request' );
29
30     {
31         no strict 'refs';
32         ok(
33             eval '$creq = ' . $response->content,
34             'Unserialize Catalyst::Request'
35         )
36         or fail("Failed to deserialize $@ from " . $response->content);
37     }
38
39     isa_ok( $creq, 'Catalyst::Request' );
40     SKIP:
41     {
42         if ( $ENV{CATALYST_SERVER} ) {
43             skip 'Using remote server', 1;
44         }
45         is( $creq->remote_user, 'dwc', '$c->req->remote_user ok' );
46     }
47 }