summaryrefslogtreecommitdiff
path: root/dist/Test-PerlRun/t/PerlRun.t
blob: 317d4a8cc0ada8dbc55e97852576fa3de0b23242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use strict;
use warnings;

use File::Temp qw( tempfile );
use Test::Builder::Tester;
use Test::More;

use Test::PerlRun;

test_out('ok 1');
perlrun_exit_status_is( 'exit 42', 42 );
test_test('exit status');

test_out('ok 1');
perlrun_exit_status_is( { code => 'exit 42' }, 42 );
test_test('exit status, code in hashref with code key');

my ( $fh, $file ) = tempfile( UNLINK => 1 );
print {$fh} 'exit 42;' or die "Cannot write to $file: $!";
close $fh or die "Cannot write to $file: $!";

test_out('ok 1');
perlrun_exit_status_is( { file => $file }, 42 );
test_test('exit status, code in temp file');

test_out('ok 1');
perlrun_stdout_is( q{print 'hello'}, 'hello' );
test_test('stdout_is');

test_out('ok 1');
perlrun_stdout_like( q{print 'hello'}, qr/hell/ );
test_test('stdout_like');

test_out('ok 1');
perlrun_stderr_is( q{print STDERR 'hello'}, 'hello' );
test_test('stderr_is');

test_out('ok 1');
perlrun_stderr_like( q{print STDERR 'hello'}, qr/hell/ );
test_test('stderr_like');

test_out('ok 1');
perlrun_stdout_is(
    {
        code     => q{print ${^TAINT} ? 'tainting' : 'no taint'},
        switches => '-T',
    },
    'tainting'
);
test_test('single scalar passed for switches parameter');

test_out('ok 1');
perlrun_stdout_is(
    {
        code     => q{print ${^TAINT} ? 'tainting' : 'no taint'},
        switches => ['-T'],
    },
    'tainting'
);
test_test('array ref passed for switches parameter');

done_testing();