Fix bind params debugging output; consolidate some related, duplicated code.
[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
e5d9ee92 10plan tests => 6;
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
e5d9ee92 50# test trace output correctness for bind params
51{
52 my $sql = '';
53 $schema->storage->debugcb( sub { $sql = $_[1] } );
54
55 my @cds = $schema->resultset('CD')->search( { artist => 1, cdid => { -between => [ 1, 3 ] }, } );
56 like(
57 $sql,
58 qr/\QSELECT me.cdid, me.artist, me.title, me.year FROM cd me WHERE ( artist = ? AND cdid BETWEEN ? AND ? ): '1', '1', '3'\E/,
59 'got correct SQL with all bind parameters'
60 );
61}
62
004d31fb 631;