From ddd601047a76fb519d4acba4c59d77ebfde1fa6e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 30 Apr 2010 20:06:11 -0500 Subject: only color the actual warning/error also clean up a couple more edge cases --- lib/Carp/Always/Color/HTML.pm | 11 ++++++----- lib/Carp/Always/Color/Term.pm | 11 ++++++----- t/001-term.t | 8 ++++---- t/002-html.t | 8 ++++---- t/003-detect.t | 4 ++-- t/004-eval.t | 40 ++++++++++++++++++++++++++++++++++++++++ t/005-object.t | 10 ++++++++++ 7 files changed, 72 insertions(+), 20 deletions(-) create mode 100644 t/004-eval.t create mode 100644 t/005-object.t diff --git a/lib/Carp/Always/Color/HTML.pm b/lib/Carp/Always/Color/HTML.pm index 53b3f4e..e0cb599 100644 --- a/lib/Carp/Always/Color/HTML.pm +++ b/lib/Carp/Always/Color/HTML.pm @@ -23,20 +23,21 @@ STDERR is pointing to. BEGIN { $Carp::Internal{(__PACKAGE__)}++ } sub _die { + die @_ if ref($_[0]); eval { Carp::Always::_die(@_) }; my $err = $@; - $err =~ s/(.*)/$1<\/span>/; + $err =~ s/(.*)( at .*? line .*?$)/$1<\/span>$2/m; die $err; } sub _warn { - my $warning; + my @warning; { - local $SIG{__WARN__} = sub { $warning = $_[0] }; + local $SIG{__WARN__} = sub { @warning = @_ }; Carp::Always::_warn(@_); } - $warning =~ s/(.*)/$1<\/span>/; - warn $warning; + $warning[0] =~ s/(.*)( at .*? line .*?$)/$1<\/span>$2/m; + warn @warning; } my %OLD_SIG; diff --git a/lib/Carp/Always/Color/Term.pm b/lib/Carp/Always/Color/Term.pm index c4789f6..579eb5c 100644 --- a/lib/Carp/Always/Color/Term.pm +++ b/lib/Carp/Always/Color/Term.pm @@ -23,20 +23,21 @@ of where STDERR is pointing to. BEGIN { $Carp::Internal{(__PACKAGE__)}++ } sub _die { + die @_ if ref($_[0]); eval { Carp::Always::_die(@_) }; my $err = $@; - $err =~ s/(.*)/\e[31m$1\e[m/; + $err =~ s/(.*)( at .*? line .*?$)/\e[31m$1\e[m$2/m; die $err; } sub _warn { - my $warning; + my @warning; { - local $SIG{__WARN__} = sub { $warning = $_[0] }; + local $SIG{__WARN__} = sub { @warning = @_ }; Carp::Always::_warn(@_); } - $warning =~ s/(.*)/\e[33m$1\e[m/; - warn $warning; + $warning[0] =~ s/(.*)( at .*? line .*?$)/\e[33m$1\e[m$2/m; + warn @warning; } my %OLD_SIG; diff --git a/t/001-term.t b/t/001-term.t index 07c2751..7c1977d 100644 --- a/t/001-term.t +++ b/t/001-term.t @@ -20,7 +20,7 @@ output_is(<foo at -e line 2\n", + "foo at -e line 2\n", "simple warns work"); output_is(<foo at -e line 3\n\tmain::foo() called at -e line 5\n", + "foo at -e line 3\n\tmain::foo() called at -e line 5\n", "warns with a stacktrace work"); output_is(<foo at -e line 2\n", + "foo at -e line 2\n", "simple dies work"); output_is(<foo at -e line 3\n\tmain::foo() called at -e line 5\n", + "foo at -e line 3\n\tmain::foo() called at -e line 5\n", "dies with a stacktrace work"); diff --git a/t/003-detect.t b/t/003-detect.t index aadcf88..6c4f7d3 100644 --- a/t/003-detect.t +++ b/t/003-detect.t @@ -20,7 +20,7 @@ output_is(<foo at -e line 7\n", + "foo at -e line 7\n", "detection works for terminal output"); diff --git a/t/004-eval.t b/t/004-eval.t new file mode 100644 index 0000000..3500dc0 --- /dev/null +++ b/t/004-eval.t @@ -0,0 +1,40 @@ +#!/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 $@; + plan tests => 2; +} + +sub output_is { + local $Test::Builder::Level = $Test::Builder::Level + 1; + my ($script, $expected, $desc) = @_; + my $pty = IO::Pty::Easy->new; + $pty->spawn("$^X", "-e", $script); + is($pty->read, $expected, $desc); +} + +output_is(< 1; + +use Carp::Always::Color; + +my $err = bless({}, 'My::Error::Class'); +eval { die $err }; +is($@, $err, "exception objects aren't affected"); -- cgit v1.2.3