Better lean startup check
[dbsrgits/DBIx-Class.git] / xt / extra / lean_startup.t
CommitLineData
3b80fa31 1# Use a require override instead of @INC munging (less common)
2# Do the override as early as possible so that CORE::require doesn't get compiled away
3b80fa31 3
92fbedbc 4BEGIN {
5 if ( $ENV{RELEASE_TESTING} ) {
6 require warnings and warnings->import;
7 require strict and strict->import;
8 }
9}
10
11my ($initial_inc_contents, $expected_dbic_deps, $require_sites, %stack);
3b80fa31 12BEGIN {
45638aed 13 unshift @INC, 't/lib';
14 require DBICTest::Util::OverrideRequire;
15
16 DBICTest::Util::OverrideRequire::override_global_require( sub {
17 my $res = $_[0]->();
8c49cf15 18
92fbedbc 19 return $res if $stack{neutralize_override};
20
8c49cf15 21 my $req = $_[1];
22 $req =~ s/\.pm$//;
23 $req =~ s/\//::/g;
24
25 my $up = 0;
26 my @caller;
92fbedbc 27 do { @caller = CORE::caller($up++) } while (
8c49cf15 28 @caller and (
29 # exclude our test suite, known "module require-rs" and eval frames
92fbedbc 30 $caller[1] =~ / (?: \A | [\/\\] ) x?t [\/\\] /x
8c49cf15 31 or
32 $caller[0] =~ /^ (?: base | parent | Class::C3::Componentised | Module::Inspector | Module::Runtime ) $/x
33 or
34 $caller[3] eq '(eval)',
35 )
36 );
37
38 push @{$require_sites->{$req}}, "$caller[1] line $caller[2]"
39 if @caller;
40
41 return $res if $req =~ /^DBIx::Class|^DBICTest::/;
42
92fbedbc 43 # FIXME - work around RT#114641
44 #
45 # Because *OF COURSE* when (questionable) unicode tests fail on < 5.8
46 # the answer is to make the entire module 5.8 only, instead of skipping
47 # the tests in question
48 # rjbs-- # thinly veiled passive aggressive bullshit
49 #
50 # The actual skip is needed because the use happens before 'package' had
51 # a chance to switch the namespace, so the shim thinks DBIC::Schema tried
52 # to require this
53 return $res if $req eq '5.008';
54
8c49cf15 55 # exclude everything where the current namespace does not match the called function
56 # (this works around very weird XS-induced require callstack corruption)
57 if (
58 !$initial_inc_contents->{$req}
59 and
60 !$expected_dbic_deps->{$req}
61 and
62 @caller
63 and
64 $caller[0] =~ /^DBIx::Class/
65 and
92fbedbc 66 (CORE::caller($up))[3] =~ /\Q$caller[0]/
8c49cf15 67 ) {
92fbedbc 68 local $stack{neutralize_override} = 1;
69
70 do 1 while CORE::caller(++$up);
71
72 require('Test/More.pm');
73 local $Test::Builder::Level = $up + 1;
8c49cf15 74 Test::More::fail ("Unexpected require of '$req' by $caller[0] ($caller[1] line $caller[2])");
75
92fbedbc 76 require('DBICTest/Util.pm');
554484cb 77 Test::More::diag( 'Require invoked' . DBICTest::Util::stacktrace() );
8c49cf15 78 }
79
45638aed 80 return $res;
81 });
3b80fa31 82}
83
84use strict;
85use warnings;
86use Test::More;
87
45638aed 88BEGIN {
8c49cf15 89 plan skip_all => 'A defined PERL5OPT may inject extra deps crashing this test'
90 if $ENV{PERL5OPT};
91
26710bc9 92 plan skip_all => 'Presence of sitecustomize.pl may inject extra deps crashing this test'
93 if grep { $_ =~ m| \/ sitecustomize\.pl $ |x } keys %INC;
94
8c49cf15 95 plan skip_all => 'Dependency load patterns are radically different before perl 5.10'
750a4ad2 96 if "$]" < 5.010;
8c49cf15 97
26710bc9 98 # these envvars *will* bring in more stuff than the baseline
99 delete @ENV{qw(
100 DBIC_TRACE
101 DBICTEST_SQLT_DEPLOY
92fbedbc 102 DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER
26710bc9 103 DBICTEST_VIA_REPLICATED
104 DBICTEST_DEBUG_CONCURRENCY_LOCKS
105 )};
106
107 $ENV{DBICTEST_ANFANG_DEFANG} = 1;
108
109 # make sure extras do not load even when this is set
110 $ENV{PERL_STRICTURES_EXTRA} = 1;
111
8c49cf15 112 # add what we loaded so far
113 for (keys %INC) {
114 my $mod = $_;
115 $mod =~ s/\.pm$//;
116 $mod =~ s!\/!::!g;
117 $initial_inc_contents->{$mod} = 1;
118 }
45638aed 119}
120
8b60b921 121
8c49cf15 122#######
123### This is where the test starts
124#######
3b80fa31 125
8c49cf15 126# checking base schema load, no storage no connection
127{
128 register_lazy_loadable_requires(qw(
129 B
0d8817bc 130 constant
8c49cf15 131 overload
0d8817bc 132
3b80fa31 133 base
8c49cf15 134 Devel::GlobalDestruction
3b80fa31 135 mro
3b80fa31 136
8c49cf15 137 Carp
3b80fa31 138 namespace::clean
139 Try::Tiny
140 Sub::Name
cbd7f87a 141 Sub::Defer
7f9a3f70 142 Sub::Quote
3b80fa31 143
144 Scalar::Util
145 List::Util
d7d45bdc 146 Storable
3b80fa31 147
3b80fa31 148 Class::Accessor::Grouped
149 Class::C3::Componentised
8c49cf15 150 ));
3b80fa31 151
92fbedbc 152 require DBIx::Class::Schema;
8c49cf15 153 assert_no_missing_expected_requires();
154}
3b80fa31 155
8c49cf15 156# check schema/storage instantiation with no connect
157{
158 register_lazy_loadable_requires(qw(
159 Moo
cbd7f87a 160 Moo::Object
161 Method::Generate::Accessor
162 Method::Generate::Constructor
8c49cf15 163 Context::Preserve
92fbedbc 164 SQL::Abstract
8c49cf15 165 ));
3b80fa31 166
92fbedbc 167 my $s = DBIx::Class::Schema->connect('dbi:SQLite::memory:');
8c49cf15 168 ok (! $s->storage->connected, 'no connection');
169 assert_no_missing_expected_requires();
170}
3b80fa31 171
8c49cf15 172# do something (deploy, insert)
173{
174 register_lazy_loadable_requires(qw(
175 DBI
8c49cf15 176 Hash::Merge
177 ));
178
92fbedbc 179 {
180 eval <<'EOP' or die $@;
181
182 package DBICTest::Result::Artist;
183
184 use warnings;
185 use strict;
186
187 use base 'DBIx::Class::Core';
188
189 __PACKAGE__->table("artist");
190
191 __PACKAGE__->add_columns(
192 artistid => {
193 data_type => 'integer',
194 is_auto_increment => 1,
195 },
196 name => {
197 data_type => 'varchar',
198 size => 100,
199 is_nullable => 1,
200 },
201 rank => {
202 data_type => 'integer',
203 default_value => 13,
204 },
205 charfield => {
206 data_type => 'char',
207 size => 10,
208 is_nullable => 1,
209 },
210 );
211
212 __PACKAGE__->set_primary_key('artistid');
213 __PACKAGE__->add_unique_constraint(['name']);
214 __PACKAGE__->add_unique_constraint(u_nullable => [qw/charfield rank/]);
215
216 1;
217
218EOP
219 }
220
221 my $s = DBIx::Class::Schema->connect('dbi:SQLite::memory:');
222
223 $s->register_class( Artist => 'DBICTest::Result::Artist' );
224
8c49cf15 225 $s->storage->dbh_do(sub {
226 $_[1]->do('CREATE TABLE artist (
227 "artistid" INTEGER PRIMARY KEY NOT NULL,
228 "name" varchar(100),
229 "rank" integer NOT NULL DEFAULT 13,
230 "charfield" char(10)
231 )');
232 });
3b80fa31 233
8c49cf15 234 my $art = $s->resultset('Artist')->create({ name => \[ '?' => 'foo'], rank => 42 });
235 $art->discard_changes;
236 $art->update({ rank => 69, name => 'foo' });
237 assert_no_missing_expected_requires();
238}
6a9e3dd5 239
92fbedbc 240
241# and do full DBICTest based populate() as well, just in case - shouldn't add new stuff
8c49cf15 242{
92fbedbc 243 # DBICTest needs File::Spec, but older versions of Storable load it alread
244 # Instead of adding a contrived conditional, just preempt the testing entirely
245 require File::Spec;
246
247 require DBICTest;
248 DBICTest->import;
249
8c49cf15 250 my $s = DBICTest->init_schema;
92fbedbc 251 is ($s->resultset('Artist')->find(1)->name, 'Caterwauler McCrae', 'Expected find() result');
3b80fa31 252}
253
8c49cf15 254done_testing;
92fbedbc 255# one final quiet guard to run at all times
256END { assert_no_missing_expected_requires('quiet') };
3b80fa31 257
8c49cf15 258sub register_lazy_loadable_requires {
259 local $Test::Builder::Level = $Test::Builder::Level + 1;
3b80fa31 260
8c49cf15 261 for my $mod (@_) {
262 (my $modfn = "$mod.pm") =~ s!::!\/!g;
263 fail(join "\n",
264 "Module $mod already loaded by require site(s):",
265 (map { "\t$_" } @{$require_sites->{$mod}}),
266 '',
267 ) if $INC{$modfn} and !$initial_inc_contents->{$mod};
268
269 $expected_dbic_deps->{$mod}++
270 }
271}
3b80fa31 272
f873b733 273# check if anything we were expecting didn't actually load
8c49cf15 274sub assert_no_missing_expected_requires {
92fbedbc 275 my $quiet = shift;
276
8c49cf15 277 for my $mod (keys %$expected_dbic_deps) {
278 (my $modfn = "$mod.pm") =~ s/::/\//g;
554484cb 279 fail sprintf (
280 "Expected DBIC core dependency '%s' never loaded - %s needs adjustment",
281 $mod,
282 __FILE__
283 ) unless $INC{$modfn};
f873b733 284 }
92fbedbc 285
8c49cf15 286 pass(sprintf 'All modules expected at %s line %s loaded by DBIC: %s',
287 __FILE__,
288 (caller(0))[2],
289 join (', ', sort keys %$expected_dbic_deps ),
92fbedbc 290 ) unless $quiet;
f873b733 291}