summaryrefslogtreecommitdiffstats
path: root/t/term.t
blob: f8af0b3d6919cee6ab83e618bad7c5d76a504182 (plain) (blame)
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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
BEGIN {
    eval "use IO::Pty::Easy;";
    plan skip_all => "IO::Pty::Easy is required for this test" if $@;
}

sub output_like {
    local $Test::Builder::Level = $Test::Builder::Level + 1;
    my ($script, $expected, $desc) = @_;
    my $pty = IO::Pty::Easy->new;
    $pty->spawn("$^X", "-e", $script);
    like($pty->read, $expected, $desc);
}

output_like(<<EOF,
    use Carp::Always::Color::Term;
    warn "foo";
EOF
    qr/\e\[33mfoo\e\[m at -e line 2\b/,
    "simple warns work");

output_like(<<EOF,
    use Carp::Always::Color::Term;
    sub foo {
        warn "foo";
    }
    foo();
EOF
    qr/\e\[33mfoo\e\[m at -e line 3\.?\n\tmain::foo\(\) called at -e line 5\n/,
    "warns with a stacktrace work");

output_like(<<EOF,
    use Carp::Always::Color::Term;
    die "foo";
EOF
    qr/\e\[31mfoo\e\[m at -e line 2\b/,
    "simple dies work");

output_like(<<EOF,
    use Carp::Always::Color::Term;
    sub foo {
        die "foo";
    }
    foo();
EOF
    qr/\e\[31mfoo\e\[m at -e line 3\.?\n\tmain::foo\(\) called at -e line 5\n/,
    "dies with a stacktrace work");

output_like(<<EOF,
    use Carp::Always::Color::Term;
    die "foo at bar line 23";
EOF
    qr/\e\[31mfoo at bar line 23\e\[m at -e line 2\b/,
    "weird messages work");

done_testing;