Refactor Statistics to clean up printing of debug info and to avoid crashing on
[dbsrgits/DBIx-Class.git] / t / 91debug.t
CommitLineData
004d31fb 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
8my $schema = DBICTest->init_schema();
9
70f39278 10plan tests => 5;
004d31fb 11
12ok ( $schema->storage->debug(1), 'debug' );
13ok ( defined(
14 $schema->storage->debugfh(
15 IO::File->new('t/var/sql.log', 'w')
16 )
17 ),
18 'debugfh'
19 );
20
70f39278 21my $rs = $schema->resultset('CD')->search({});
22$rs->count();
23
24my $log = new IO::File('t/var/sql.log', 'r') or die($!);
25my $line = <$log>;
26$log->close();
27ok($line =~ /^SELECT COUNT/, 'Log success');
28
29$schema->storage->debugfh(undef);
30$ENV{'DBIC_TRACE'} = '=t/var/foo.log';
31$rs = $schema->resultset('CD')->search({});
32$rs->count();
33$log = new IO::File('t/var/foo.log', 'r') or die($!);
34$line = <$log>;
35$log->close();
36ok($line =~ /^SELECT COUNT/, 'Log success');
37
38$schema->storage->debugobj->debugfh(undef);
39delete($ENV{'DBIC_TRACE'});
40open(STDERRCOPY, '>&STDERR');
41stat(STDERRCOPY); # nop to get warnings quiet
42close(STDERR);
43eval {
44 $rs = $schema->resultset('CD')->search({});
45 $rs->count();
46};
47ok($@, 'Died on closed FH');
48open(STDERR, '>&STDERRCOPY');
49
004d31fb 501;