The nginx bullshit can just die
[catagits/Catalyst-Runtime.git] / t / live_fork.t
CommitLineData
09274aae 1#!/usr/bin/perl
158fef48 2# live_fork.t
09274aae 3# Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>
4
5=head1 SYNOPSIS
6
7Tests if Catalyst can fork/exec other processes successfully
8
9=cut
10use strict;
11use warnings;
12use Test::More;
09274aae 13use FindBin;
14use lib "$FindBin::Bin/lib";
15use Catalyst::Test qw(TestApp);
16
15f0ede8 17eval 'use YAML';
18plan skip_all => 'YAML required' if $@;
19
158fef48 20plan skip_all => 'Using remote server (and REMOTE_FORK not set)'
21 if $ENV{CATALYST_SERVER} && !$ENV{REMOTE_FORK};
22
08ace8f7 23plan skip_all => 'Skipping fork tests: no /bin/ls'
24 if !-e '/bin/ls'; # see if /bin/ls exists
158fef48 25
31b71f4b 26plan tests => 13; # otherwise
09274aae 27
8d5f3e92 28{
31b71f4b 29 ok(my $result = get('/fork/system/%2Fbin%2Fls'), 'system');
8d5f3e92 30 my @result = split /$/m, $result;
31 $result = join q{}, @result[-4..-1];
158fef48 32
8d5f3e92 33 my $result_ref = eval { Load($result) };
34 ok($result_ref, 'is YAML');
a147e337 35 is($result_ref->{result}, 0, 'exited OK');
8d5f3e92 36}
09274aae 37
158fef48 38{
31b71f4b 39 ok(my $result = get('/fork/backticks/%2Fbin%2Fls'), '`backticks`');
8d5f3e92 40 my @result = split /$/m, $result;
41 $result = join q{}, @result[-4..-1];
158fef48 42
8d5f3e92 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$');
a147e337 47 like($result_ref->{result}, qr{\n.*\n}m, 'contains two newlines');
8d5f3e92 48}
158fef48 49{
31b71f4b 50 ok(my $result = get('/fork/fork'), 'fork');
51 my @result = split /$/m, $result;
52 $result = join q{}, @result[-4..-1];
158fef48 53
31b71f4b 54 my $result_ref = eval { Load($result) };
55 ok($result_ref, 'is YAML');
56 isnt($result_ref->{pid}, 0, q{fork's "pid" wasn't 0});
57 isnt($result_ref->{pid}, $$, 'fork got a new pid');
58 is($result_ref->{result}, 'ok', 'fork was effective');
59}