clean up logging and debug output, minor doc fixes
[catagits/Catalyst-Runtime.git] / t / unit_core_log.t
CommitLineData
adee716c 1use strict;
2use warnings;
3
4use Test::More tests => 24;
5use Test::NoWarnings; # Adds an extra test.
6
adee716c 7my $LOG;
8
9BEGIN {
10 chdir 't' if -d 't';
11 use lib '../lib';
12 $LOG = 'Catalyst::Log';
13 use_ok $LOG or die;
14}
15my @MESSAGES;
16{
17 no warnings 'redefine';
18 *Catalyst::Log::_send_to_log = sub {
19 my $self = shift;
20 push @MESSAGES, @_;
21 };
22}
23
24can_ok $LOG, 'new';
25ok my $log = $LOG->new, '... and creating a new log object should succeed';
26isa_ok $log, $LOG, '... and the object it returns';
27
28can_ok $log, 'is_info';
29ok $log->is_info, '... and the default behavior is to allow info messages';
30
31can_ok $log, 'info';
32ok $log->info('hello there!'),
33 '... passing it an info message should succeed';
34
35can_ok $log, "_flush";
36$log->_flush;
37ok @MESSAGES, '... and flushing the log should succeed';
38is scalar @MESSAGES, 1, '... with one log message';
34d28dfd 39like $MESSAGES[0], qr/^\[info\] hello there!$/,
adee716c 40 '... which should match the format we expect';
41
42{
43
44 package Catalyst::Log::Subclass;
34d28dfd 45 use Moose;
46 extends 'Catalyst::Log';
adee716c 47
48 sub _send_to_log {
49 my $self = shift;
50 push @MESSAGES, '---';
51 push @MESSAGES, @_;
52 }
53}
54
55my $SUBCLASS = 'Catalyst::Log::Subclass';
56can_ok $SUBCLASS, 'new';
57ok $log = Catalyst::Log::Subclass->new,
58 '... and the log subclass constructor shoudl return a new object';
59isa_ok $log, $SUBCLASS, '... and the object it returns';
60isa_ok $log, $LOG, '... and it also';
61
62can_ok $log, 'info';
63ok $log->info('hi there!'),
64 '... passing it an info message should succeed';
65
66can_ok $log, "_flush";
67@MESSAGES = (); # clear the message log
68$log->_flush;
69ok @MESSAGES, '... and flushing the log should succeed';
70is scalar @MESSAGES, 2, '... with two log messages';
71is $MESSAGES[0], '---', '... with the first one being our new data';
34d28dfd 72like $MESSAGES[1], qr/^\[info\] hi there!$/,
adee716c 73 '... which should match the format we expect';
74