Skip fork tests on remote servers
[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 YAML;
14 use FindBin;
15 use lib "$FindBin::Bin/lib";
16 use Catalyst::Test qw(TestApp);
17
18 plan skip_all => 'Using remote server'
19     if $ENV{CATALYST_SERVER};
20     
21 plan skip_all => 'Skipping fork tests: no /bin/ls'
22     if !-e '/bin/ls'; # see if /bin/ls exists
23     
24 plan tests => 13; # otherwise
25
26 {
27   system:
28     ok(my $result = get('/fork/system/%2Fbin%2Fls'), 'system');
29     my @result = split /$/m, $result;
30     $result = join q{}, @result[-4..-1];
31     
32     my $result_ref = eval { Load($result) };
33     ok($result_ref, 'is YAML');
34     is($result_ref->{result}, 0, 'exited OK');
35 }
36
37
38   backticks:
39     ok(my $result = get('/fork/backticks/%2Fbin%2Fls'), '`backticks`');
40     my @result = split /$/m, $result;
41     $result = join q{}, @result[-4..-1];
42     
43     my $result_ref = eval { Load($result) };
44     ok($result_ref, 'is YAML');
45     is($result_ref->{code}, 0, 'exited successfully');
46     like($result_ref->{result}, qr{^/bin/ls[^:]}, 'contains ^/bin/ls$');
47     like($result_ref->{result}, qr{\n.*\n}m, 'contains two newlines');
48 }
49
50   fork:
51     ok(my $result = get('/fork/fork'), 'fork');
52     my @result = split /$/m, $result;
53     $result = join q{}, @result[-4..-1];
54     
55     my $result_ref = eval { Load($result) };
56     ok($result_ref, 'is YAML');
57     isnt($result_ref->{pid}, 0, q{fork's "pid" wasn't 0});
58     isnt($result_ref->{pid}, $$, 'fork got a new pid');
59     is($result_ref->{result}, 'ok', 'fork was effective');
60 }