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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
# Use a require override instead of @INC munging (less common)
# Do the override as early as possible so that CORE::require doesn't get compiled away
my ($initial_inc_contents, $expected_dbic_deps, $require_sites);
BEGIN {
# these envvars *will* bring in more stuff than the baseline
delete @ENV{qw(
DBICTEST_SWAPOUT_SQLAC_WITH
DBICTEST_SQLT_DEPLOY
DBIC_TRACE
)};
# make sure extras do not load even when this is set
$ENV{PERL_STRICTURES_EXTRA} = 1;
unshift @INC, 't/lib';
require DBICTest::Util::OverrideRequire;
DBICTest::Util::OverrideRequire::override_global_require( sub {
my $res = $_[0]->();
my $req = $_[1];
$req =~ s/\.pm$//;
$req =~ s/\//::/g;
my $up = 0;
my @caller;
do { @caller = caller($up++) } while (
@caller and (
# exclude our test suite, known "module require-rs" and eval frames
$caller[1] =~ /^ t [\/\\] /x
or
$caller[0] =~ /^ (?: base | parent | Class::C3::Componentised | Module::Inspector | Module::Runtime ) $/x && $caller[3] !~ m/::BEGIN$/
or
$caller[3] eq '(eval)',
)
);
push @{$require_sites->{$req}}, "$caller[1] line $caller[2]"
if @caller;
return $res if $req =~ /^DBIx::Class|^DBICTest::/;
# exclude everything where the current namespace does not match the called function
# (this works around very weird XS-induced require callstack corruption)
if (
!$initial_inc_contents->{$req}
and
!$expected_dbic_deps->{$req}
and
@caller
and
$caller[0] =~ /^DBIx::Class/
and
(caller($up))[3] =~ /\Q$caller[0]/
) {
CORE::require('Test/More.pm');
Test::More::fail ("Unexpected require of '$req' by $caller[0] ($caller[1] line $caller[2])");
if ( $ENV{TEST_VERBOSE} or ! DBICTest::RunMode->is_plain ) {
CORE::require('DBICTest/Util.pm');
Test::More::diag( 'Require invoked' . DBICTest::Util::stacktrace() );
}
}
return $res;
});
}
use strict;
use warnings;
use Test::More;
BEGIN {
plan skip_all => 'A defined PERL5OPT may inject extra deps crashing this test'
if $ENV{PERL5OPT};
plan skip_all => 'Dependency load patterns are radically different before perl 5.10'
if "$]" < 5.010;
# these envvars *will* bring in more stuff than the baseline
delete @ENV{qw(
DBIC_TRACE
DBIC_SHUFFLE_UNORDERED_RESULTSETS
DBICTEST_SQLT_DEPLOY
DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER
DBICTEST_VIA_REPLICATED
DBICTEST_DEBUG_CONCURRENCY_LOCKS
)};
$ENV{DBICTEST_ANFANG_DEFANG} = 1;
# make sure extras do not load even when this is set
$ENV{PERL_STRICTURES_EXTRA} = 1;
# add what we loaded so far
for (keys %INC) {
my $mod = $_;
$mod =~ s/\.pm$//;
$mod =~ s!\/!::!g;
$initial_inc_contents->{$mod} = 1;
}
}
BEGIN {
delete $ENV{$_} for qw(
DBICTEST_DEBUG_CONCURRENCY_LOCKS
);
}
#######
### This is where the test starts
#######
# checking base schema load, no storage no connection
{
register_lazy_loadable_requires(qw(
B
constant
overload
base
Devel::GlobalDestruction
mro
Carp
namespace::clean
Try::Tiny
Sub::Name
Sub::Defer
Sub::Quote
Hash::Merge
Scalar::Util
Storable
Class::Accessor::Grouped
Class::C3::Componentised
SQL::Abstract::Util
));
require DBICTest::Schema;
assert_no_missing_expected_requires();
}
# check schema/storage instantiation with no connect
{
register_lazy_loadable_requires(qw(
Moo
Moo::Object
Method::Generate::Accessor
Method::Generate::Constructor
Context::Preserve
));
my $s = DBICTest::Schema->connect('dbi:SQLite::memory:');
ok (! $s->storage->connected, 'no connection');
assert_no_missing_expected_requires();
}
# do something (deploy, insert)
{
register_lazy_loadable_requires(qw(
DBI
SQL::Abstract::Classic
));
my $s = DBICTest::Schema->connect('dbi:SQLite::memory:');
$s->storage->dbh_do(sub {
$_[1]->do('CREATE TABLE artist (
"artistid" INTEGER PRIMARY KEY NOT NULL,
"name" varchar(100),
"rank" integer NOT NULL DEFAULT 13,
"charfield" char(10)
)');
});
my $art = $s->resultset('Artist')->create({ name => \[ '?' => 'foo'], rank => 42 });
$art->discard_changes;
$art->update({ rank => 69, name => 'foo' });
$s->resultset('Artist')->all;
assert_no_missing_expected_requires();
}
# and do full populate() as well, just in case - shouldn't add new stuff
{
local $ENV{DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER};
{
# in general we do not want DBICTest to load before sqlac, but it is
# ok to cheat here
local $INC{'SQL/Abstract/Classic.pm'};
require DBICTest;
}
my $s = DBICTest->init_schema;
is ($s->resultset('Artist')->find(1)->name, 'Caterwauler McCrae');
assert_no_missing_expected_requires();
}
done_testing;
sub register_lazy_loadable_requires {
local $Test::Builder::Level = $Test::Builder::Level + 1;
for my $mod (@_) {
(my $modfn = "$mod.pm") =~ s!::!\/!g;
fail(join "\n",
"Module $mod already loaded by require site(s):",
(map { "\t$_" } @{$require_sites->{$mod}}),
'',
) if $INC{$modfn} and !$initial_inc_contents->{$mod};
$expected_dbic_deps->{$mod}++
}
}
# check if anything we were expecting didn't actually load
sub assert_no_missing_expected_requires {
my $nl;
for my $mod (keys %$expected_dbic_deps) {
(my $modfn = "$mod.pm") =~ s/::/\//g;
unless ($INC{$modfn}) {
my $err = sprintf "Expected DBIC core dependency '%s' never loaded - %s needs adjustment", $mod, __FILE__;
if (DBICTest::RunMode->is_smoker or DBICTest::RunMode->is_author) {
fail ($err)
}
else {
diag "\n" unless $nl->{$mod}++;
diag $err;
}
}
}
pass(sprintf 'All modules expected at %s line %s loaded by DBIC: %s',
__FILE__,
(caller(0))[2],
join (', ', sort keys %$expected_dbic_deps ),
) unless $nl;
}
|