actually document the new request body_data method
[catagits/Catalyst-Runtime.git] / t / live_fork.t
1 #!/usr/bin/perl
2 # live_fork.t
3 # Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>
4
5 =head1 SYNOPSIS
6
7 Tests if Catalyst can fork/exec other processes successfully
8
9 =cut
10 use strict;
11 use warnings;
12 use Test::More;
13 use FindBin;
14 use lib "$FindBin::Bin/lib";
15 use Catalyst::Test qw(TestApp);
16
17 eval 'use YAML';
18 plan skip_all => 'YAML required' if $@;
19
20 plan skip_all => 'Using remote server (and REMOTE_FORK not set)'
21     if $ENV{CATALYST_SERVER} && !$ENV{REMOTE_FORK};
22
23 plan skip_all => 'Skipping fork tests: no /bin/ls'
24     if !-e '/bin/ls'; # see if /bin/ls exists
25
26 {
27     ok(my $result = get('/fork/system/%2Fbin%2Fls'), 'system');
28
29     if (my $result_ref = result_ok($result)) {
30         ok($result_ref, 'is YAML');
31         is($result_ref->{result}, 0, 'exited OK');
32     }
33 }
34
35 {
36     ok(my $result = get('/fork/backticks/%2Fbin%2Fls'), '`backticks`');
37
38     if (my $result_ref = result_ok($result)) {
39         ok($result_ref, 'is YAML');
40         is($result_ref->{code}, 0, 'exited successfully');
41         like($result_ref->{result}, qr{^/bin/ls[^:]}, 'contains ^/bin/ls$');
42         like($result_ref->{result}, qr{\n.*\n}m, 'contains two newlines');
43     }
44 }
45
46 {
47     ok(my $result = get('/fork/fork'), 'fork');
48
49     if (my $result_ref = result_ok($result)) {
50         ok($result_ref, 'is YAML');
51         isnt($result_ref->{pid}, 0, q{fork's "pid" wasn't 0});
52         isnt($result_ref->{pid}, $$, 'fork got a new pid');
53         is($result_ref->{result}, 'ok', 'fork was effective');
54     }
55 }
56
57 sub result_ok {
58     my $result = shift;
59
60     unlike( $result, qr/FATAL/, 'result is not an error' )
61         or return;
62
63     $result =~ s/\r\n|\r/\n/g;
64
65     return eval { Load($result) };
66 }
67
68 done_testing;