support expr {} in join cond
[dbsrgits/DBIx-Class.git] / t / 53lean_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
8c49cf15 4my ($initial_inc_contents, $expected_dbic_deps, $require_sites);
3b80fa31 5BEGIN {
8c49cf15 6 # these envvars *will* bring in more stuff than the baseline
7 delete @ENV{qw(DBICTEST_SQLT_DEPLOY DBIC_TRACE)};
8
45638aed 9 unshift @INC, 't/lib';
10 require DBICTest::Util::OverrideRequire;
11
12 DBICTest::Util::OverrideRequire::override_global_require( sub {
13 my $res = $_[0]->();
8c49cf15 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
45638aed 59 return $res;
60 });
3b80fa31 61}
62
63use strict;
64use warnings;
65use Test::More;
66
c5ffac15 67use lib 't/dqlib';
68
45638aed 69BEGIN {
8c49cf15 70 plan skip_all => 'A defined PERL5OPT may inject extra deps crashing this test'
71 if $ENV{PERL5OPT};
72
73 plan skip_all => 'Dependency load patterns are radically different before perl 5.10'
74 if $] < 5.010;
75
76 # add what we loaded so far
77 for (keys %INC) {
78 my $mod = $_;
79 $mod =~ s/\.pm$//;
80 $mod =~ s!\/!::!g;
81 $initial_inc_contents->{$mod} = 1;
82 }
45638aed 83}
84
8c49cf15 85#######
86### This is where the test starts
87#######
3b80fa31 88
8c49cf15 89# checking base schema load, no storage no connection
90{
91 register_lazy_loadable_requires(qw(
92 B
0d8817bc 93 constant
8c49cf15 94 overload
0d8817bc 95
3b80fa31 96 base
8c49cf15 97 Devel::GlobalDestruction
3b80fa31 98 mro
3b80fa31 99
8c49cf15 100 Carp
3b80fa31 101 namespace::clean
102 Try::Tiny
103 Sub::Name
104
105 Scalar::Util
106 List::Util
6a9e3dd5 107 Data::Compare
3b80fa31 108
3b80fa31 109 Class::Accessor::Grouped
110 Class::C3::Componentised
76bd7cd2 111
112 Module::Runtime
113 Data::Query::Constants
114 Data::Query::ExprHelpers
8c49cf15 115 ));
3b80fa31 116
8c49cf15 117 require DBICTest::Schema;
118 assert_no_missing_expected_requires();
119}
3b80fa31 120
8c49cf15 121# check schema/storage instantiation with no connect
122{
123 register_lazy_loadable_requires(qw(
124 Moo
125 Sub::Quote
126 Context::Preserve
127 ));
3b80fa31 128
8c49cf15 129 my $s = DBICTest::Schema->connect('dbi:SQLite::memory:');
130 ok (! $s->storage->connected, 'no connection');
131 assert_no_missing_expected_requires();
132}
3b80fa31 133
8c49cf15 134# do something (deploy, insert)
135{
136 register_lazy_loadable_requires(qw(
137 DBI
138 SQL::Abstract
139 Hash::Merge
140 ));
141
142 my $s = DBICTest::Schema->connect('dbi:SQLite::memory:');
143 $s->storage->dbh_do(sub {
144 $_[1]->do('CREATE TABLE artist (
145 "artistid" INTEGER PRIMARY KEY NOT NULL,
146 "name" varchar(100),
147 "rank" integer NOT NULL DEFAULT 13,
148 "charfield" char(10)
149 )');
150 });
3b80fa31 151
8c49cf15 152 my $art = $s->resultset('Artist')->create({ name => \[ '?' => 'foo'], rank => 42 });
153 $art->discard_changes;
154 $art->update({ rank => 69, name => 'foo' });
155 assert_no_missing_expected_requires();
156}
6a9e3dd5 157
8c49cf15 158# and do full populate() as well, just in case - shouldn't add new stuff
159{
4a24dba9 160 local $ENV{DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER};
5e724964 161 {
162 # in general we do not want DBICTest to load before sqla, but it is
163 # ok to cheat here
164 local $INC{'SQL/Abstract.pm'};
165 require DBICTest;
166 }
8c49cf15 167 my $s = DBICTest->init_schema;
fb88ca2c 168 is ($s->resultset('Artist')->find(1)->name, 'Caterwauler McCrae');
8c49cf15 169 assert_no_missing_expected_requires();
3b80fa31 170}
171
8c49cf15 172done_testing;
3b80fa31 173
8c49cf15 174sub register_lazy_loadable_requires {
175 local $Test::Builder::Level = $Test::Builder::Level + 1;
3b80fa31 176
8c49cf15 177 for my $mod (@_) {
178 (my $modfn = "$mod.pm") =~ s!::!\/!g;
179 fail(join "\n",
180 "Module $mod already loaded by require site(s):",
181 (map { "\t$_" } @{$require_sites->{$mod}}),
182 '',
183 ) if $INC{$modfn} and !$initial_inc_contents->{$mod};
184
185 $expected_dbic_deps->{$mod}++
186 }
187}
3b80fa31 188
f873b733 189# check if anything we were expecting didn't actually load
8c49cf15 190sub assert_no_missing_expected_requires {
191 my $nl;
192 for my $mod (keys %$expected_dbic_deps) {
193 (my $modfn = "$mod.pm") =~ s/::/\//g;
194 unless ($INC{$modfn}) {
195 my $err = sprintf "Expected DBIC core dependency '%s' never loaded - %s needs adjustment", $mod, __FILE__;
196 if (DBICTest::RunMode->is_smoker or DBICTest::RunMode->is_author) {
197 fail ($err)
198 }
199 else {
200 diag "\n" unless $nl->{$mod}++;
201 diag $err;
202 }
f873b733 203 }
204 }
8c49cf15 205 pass(sprintf 'All modules expected at %s line %s loaded by DBIC: %s',
206 __FILE__,
207 (caller(0))[2],
208 join (', ', sort keys %$expected_dbic_deps ),
209 ) unless $nl;
f873b733 210}