Create branch register_actions.
[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 plan tests => 13; # otherwise
27
28 {
29   system:
30     ok(my $result = get('/fork/system/%2Fbin%2Fls'), 'system');
31     my @result = split /$/m, $result;
32     $result = join q{}, @result[-4..-1];
33
34     my $result_ref = eval { Load($result) };
35     ok($result_ref, 'is YAML');
36     is($result_ref->{result}, 0, 'exited OK');
37 }
38
39 {
40   backticks:
41     ok(my $result = get('/fork/backticks/%2Fbin%2Fls'), '`backticks`');
42     my @result = split /$/m, $result;
43     $result = join q{}, @result[-4..-1];
44
45     my $result_ref = eval { Load($result) };
46     ok($result_ref, 'is YAML');
47     is($result_ref->{code}, 0, 'exited successfully');
48     like($result_ref->{result}, qr{^/bin/ls[^:]}, 'contains ^/bin/ls$');
49     like($result_ref->{result}, qr{\n.*\n}m, 'contains two newlines');
50 }
51 {
52   fork:
53     ok(my $result = get('/fork/fork'), 'fork');
54     my @result = split /$/m, $result;
55     $result = join q{}, @result[-4..-1];
56
57     my $result_ref = eval { Load($result) };
58     ok($result_ref, 'is YAML');
59     isnt($result_ref->{pid}, 0, q{fork's "pid" wasn't 0});
60     isnt($result_ref->{pid}, $$, 'fork got a new pid');
61     is($result_ref->{result}, 'ok', 'fork was effective');
62 }