DBIx::Class::Bundled
[dbsrgits/DBIx-Class.git] / t / 53lean_startup.t
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
3
4 my ($initial_inc_contents, $expected_dbic_deps, $require_sites);
5 BEGIN {
6   # these envvars *will* bring in more stuff than the baseline
7   delete @ENV{qw(DBICTEST_SQLT_DEPLOY DBIC_TRACE)};
8
9   unshift @INC, 't/lib';
10   require DBICTest::Util::OverrideRequire;
11
12   DBICTest::Util::OverrideRequire::override_global_require( sub {
13     my $res = $_[0]->();
14
15     my $req = $_[1];
16     $req =~ s/\.pm$//;
17     $req =~ s/\//::/g;
18
19     my $up = 0;
20     my @caller;
21     do { @caller = caller($up++) } while (
22       @caller and (
23         # exclude our test suite, known "module require-rs" and eval frames
24         $caller[1] =~ /^ t [\/\\] /x
25           or
26         $caller[0] =~ /^ (?: base | parent | Class::C3::Componentised | Module::Inspector | Module::Runtime ) $/x
27           or
28         $caller[3] eq '(eval)',
29       )
30     );
31
32     push @{$require_sites->{$req}}, "$caller[1] line $caller[2]"
33       if @caller;
34
35     return $res if $req =~ /^DBIx::Class|^DBICTest::/;
36
37     # exclude everything where the current namespace does not match the called function
38     # (this works around very weird XS-induced require callstack corruption)
39     if (
40       !$initial_inc_contents->{$req}
41         and
42       !$expected_dbic_deps->{$req}
43         and
44       @caller
45         and
46       $caller[0] =~ /^DBIx::Class/
47         and
48       (caller($up))[3] =~ /\Q$caller[0]/
49     ) {
50       CORE::require('Test/More.pm');
51       Test::More::fail ("Unexpected require of '$req' by $caller[0] ($caller[1] line $caller[2])");
52
53       if ($ENV{TEST_VERBOSE}) {
54         CORE::require('DBICTest/Util.pm');
55         Test::More::diag( 'Require invoked' .  DBICTest::Util::stacktrace() );
56       }
57     }
58
59     return $res;
60   });
61 }
62
63 use strict;
64 use warnings;
65 use Test::More;
66
67 BEGIN {
68   plan skip_all => 'A defined PERL5OPT may inject extra deps crashing this test'
69     if $ENV{PERL5OPT};
70
71   plan skip_all => 'Dependency load patterns are radically different before perl 5.10'
72     if $] < 5.010;
73
74   # add what we loaded so far
75   for (keys %INC) {
76     my $mod = $_;
77     $mod =~ s/\.pm$//;
78     $mod =~ s!\/!::!g;
79     $initial_inc_contents->{$mod} = 1;
80   }
81 }
82
83 #######
84 ### This is where the test starts
85 #######
86
87 # checking base schema load, no storage no connection
88 {
89   register_lazy_loadable_requires(qw(
90     B
91     constant
92     overload
93
94     base
95     Devel::GlobalDestruction
96     mro
97
98     Carp
99     namespace::clean
100     Try::Tiny
101     Sub::Name
102
103     Scalar::Util
104     List::Util
105
106     Class::Accessor::Grouped
107     Class::C3::Componentised
108
109     Data::Dumper::Concise
110
111     File::Spec
112
113     Module::Runtime
114     Data::Query::Constants
115     Data::Query::ExprHelpers
116     Data::Query::ExprDeclare
117   ));
118
119   require DBICTest::Schema;
120   assert_no_missing_expected_requires();
121 }
122
123 # check schema/storage instantiation with no connect
124 {
125   register_lazy_loadable_requires(qw(
126     Moo
127     Sub::Quote
128     Context::Preserve
129     Data::Compare
130   ));
131
132   my $s = DBICTest::Schema->connect('dbi:SQLite::memory:');
133   ok (! $s->storage->connected, 'no connection');
134   assert_no_missing_expected_requires();
135 }
136
137 # do something (deploy, insert)
138 {
139   register_lazy_loadable_requires(qw(
140     DBI
141     SQL::Abstract
142     Hash::Merge
143   ));
144
145   my $s = DBICTest::Schema->connect('dbi:SQLite::memory:');
146   $s->storage->dbh_do(sub {
147     $_[1]->do('CREATE TABLE artist (
148       "artistid" INTEGER PRIMARY KEY NOT NULL,
149       "name" varchar(100),
150       "rank" integer NOT NULL DEFAULT 13,
151       "charfield" char(10)
152     )');
153   });
154
155   my $art = $s->resultset('Artist')->create({ name => \[ '?' => 'foo'], rank => 42 });
156   $art->discard_changes;
157   $art->update({ rank => 69, name => 'foo' });
158   assert_no_missing_expected_requires();
159 }
160
161 # and do full populate() as well, just in case - shouldn't add new stuff
162 {
163   local $ENV{DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER};
164   {
165     # in general we do not want DBICTest to load before sqla, but it is
166     # ok to cheat here
167     local $INC{'SQL/Abstract.pm'};
168     require DBICTest;
169   }
170   my $s = DBICTest->init_schema;
171   is ($s->resultset('Artist')->find(1)->name, 'Caterwauler McCrae');
172   assert_no_missing_expected_requires();
173 }
174
175 done_testing;
176
177 sub register_lazy_loadable_requires {
178   local $Test::Builder::Level = $Test::Builder::Level + 1;
179
180   for my $mod (@_) {
181     (my $modfn = "$mod.pm") =~ s!::!\/!g;
182     fail(join "\n",
183       "Module $mod already loaded by require site(s):",
184       (map { "\t$_" } @{$require_sites->{$mod}}),
185       '',
186     ) if $INC{$modfn} and !$initial_inc_contents->{$mod};
187
188     $expected_dbic_deps->{$mod}++
189   }
190 }
191
192 # check if anything we were expecting didn't actually load
193 sub assert_no_missing_expected_requires {
194   my $nl;
195   for my $mod (keys %$expected_dbic_deps) {
196     (my $modfn = "$mod.pm") =~ s/::/\//g;
197     unless ($INC{$modfn}) {
198       my $err = sprintf "Expected DBIC core dependency '%s' never loaded - %s needs adjustment", $mod, __FILE__;
199       if (DBICTest::RunMode->is_smoker or DBICTest::RunMode->is_author) {
200         fail ($err)
201       }
202       else {
203         diag "\n" unless $nl->{$mod}++;
204         diag $err;
205       }
206     }
207   }
208   pass(sprintf 'All modules expected at %s line %s loaded by DBIC: %s',
209     __FILE__,
210     (caller(0))[2],
211     join (', ', sort keys %$expected_dbic_deps ),
212   ) unless $nl;
213 }