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