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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
use strict;
use warnings;
no warnings 'once';
use Test::More;
use Test::Exception;
use Try::Tiny;
use File::Spec;
use lib qw(t/lib);
use DBICTest;
use Path::Class qw/file/;
# something deep in Path::Class - mainline ditched it altogether
plan skip_all => "Test is finicky under -T before 5.10"
if "$]" < 5.010 and ${^TAINT};
BEGIN { delete @ENV{qw(DBIC_TRACE DBIC_TRACE_PROFILE DBICTEST_SQLITE_USE_FILE)} }
my $schema = DBICTest->init_schema();
my $lfn = file("t/var/sql-$$.log");
unlink $lfn or die $!
if -e $lfn;
# make sure we are testing the vanilla debugger and not ::PrettyTrace
require DBIx::Class::Storage::Statistics;
$schema->storage->debugobj(DBIx::Class::Storage::Statistics->new);
ok ( $schema->storage->debug(1), 'debug' );
$schema->storage->debugfh($lfn->openw);
$schema->storage->debugfh->autoflush(1);
$schema->resultset('CD')->count;
my @loglines = $lfn->slurp;
is (@loglines, 1, 'one line of log');
like($loglines[0], qr/^SELECT COUNT/, 'File log via debugfh success');
$schema->storage->debugfh(undef);
{
local $ENV{DBIC_TRACE} = "=$lfn";
unlink $lfn;
$schema->resultset('CD')->count;
my $schema2 = DBICTest->init_schema(no_deploy => 1);
$schema2->storage->_do_query('SELECT 1'); # _do_query() logs via standard mechanisms
my @loglines = $lfn->slurp;
is(@loglines, 2, '2 lines of log');
like($loglines[0], qr/^SELECT COUNT/, 'Env log from schema1 success');
like($loglines[1], qr/^SELECT 1:/, 'Env log from schema2 success');
$schema->storage->debugobj->debugfh(undef)
}
END {
unlink $lfn if $lfn;
}
open(STDERRCOPY, '>&STDERR');
my $exception_line_number;
# STDERR will be closed, no T::B diag in blocks
my $exception = try {
close(STDERR);
$exception_line_number = __LINE__ + 1; # important for test, do not reformat
$schema->resultset('CD')->search({})->count;
} catch {
$_
} finally {
# restore STDERR
open(STDERR, '>&STDERRCOPY');
};
ok $exception =~ /
\QDuplication of STDERR for debug output failed (perhaps your STDERR is closed?)\E
.+
\Qat @{[__FILE__]} line $exception_line_number\E$
/xms
or diag "Unexpected exception text:\n\n$exception\n";
my @warnings;
$exception = try {
local $SIG{__WARN__} = sub { push @warnings, @_ if $_[0] =~ /character/i };
close STDERR;
open(STDERR, '>', File::Spec->devnull) or die $!;
$schema->resultset('CD')->search({ title => "\x{1f4a9}" })->count;
'';
} catch {
$_;
} finally {
# restore STDERR
close STDERR;
open(STDERR, '>&STDERRCOPY');
};
die "How did that fail... $exception"
if $exception;
is_deeply(\@warnings, [], 'No warnings with unicode on STDERR');
# test debugcb and debugobj protocol
{
my $rs = $schema->resultset('CD')->search( {
artist => 1,
cdid => { -between => [ 1, 3 ] },
title => { '!=' => \[ '?', undef ] }
});
my $sql_trace = 'SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me WHERE ( ( artist = ? AND ( cdid BETWEEN ? AND ? ) AND title != ? ) )';
my @bind_trace = qw( '1' '1' '3' NULL ); # quotes are in fact part of the trace </facepalm>
my @args;
$schema->storage->debugcb(sub { push @args, @_ } );
$rs->all;
is_deeply( \@args, [
"SELECT",
sprintf( "%s: %s\n", $sql_trace, join ', ', @bind_trace ),
]);
{
package DBICTest::DebugObj;
our @ISA = 'DBIx::Class::Storage::Statistics';
sub query_start {
my $self = shift;
( $self->{_traced_sql}, @{$self->{_traced_bind}} ) = @_;
}
}
my $do = $schema->storage->debugobj(DBICTest::DebugObj->new);
$rs->all;
is( $do->{_traced_sql}, $sql_trace );
is_deeply ( $do->{_traced_bind}, \@bind_trace );
}
# recreate test as seen in DBIx::Class::QueryLog
# the rationale is that if someone uses a non-IO::Handle object
# on CPAN, many are *bound* to use one on darkpan. Thus this
# test to ensure there is no future silent breakage
{
my $output = "";
{
package DBICTest::_Printable;
sub print {
my ($self, @args) = @_;
$output .= join('', @args);
}
}
$schema->storage->debugobj(undef);
$schema->storage->debug(1);
$schema->storage->debugfh( bless {}, "DBICTest::_Printable" );
$schema->storage->txn_do( sub { $schema->resultset('Artist')->count } );
like (
$output,
qr/
\A
^ \QBEGIN WORK\E \s*?
^ \QSELECT COUNT( * ) FROM artist me:\E \s*?
^ \QCOMMIT\E \s*?
\z
/xm
);
$schema->storage->debug(0);
$schema->storage->debugfh(undef);
}
done_testing;
|