changing get_component and get_component_args
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_component_loading.t
CommitLineData
5e3121a8 1# way too many tests to count
2use Test::More;
0756fe3b 3
4use strict;
5use warnings;
6
7use File::Spec;
8use File::Path;
9
10my $libdir = 'test_trash';
06400669 11local @INC = @INC;
0756fe3b 12unshift(@INC, $libdir);
13
14my $appclass = 'TestComponents';
15my @components = (
16 { type => 'Controller', prefix => 'C', name => 'Bar' },
17 { type => 'Controller', prefix => 'C', name => 'Foo::Bar' },
18 { type => 'Controller', prefix => 'C', name => 'Foo::Foo::Bar' },
19 { type => 'Controller', prefix => 'C', name => 'Foo::Foo::Foo::Bar' },
20 { type => 'Controller', prefix => 'Controller', name => 'Bar::Bar::Bar::Foo' },
21 { type => 'Controller', prefix => 'Controller', name => 'Bar::Bar::Foo' },
22 { type => 'Controller', prefix => 'Controller', name => 'Bar::Foo' },
23 { type => 'Controller', prefix => 'Controller', name => 'Foo' },
24 { type => 'Model', prefix => 'M', name => 'Bar' },
25 { type => 'Model', prefix => 'M', name => 'Foo::Bar' },
26 { type => 'Model', prefix => 'M', name => 'Foo::Foo::Bar' },
27 { type => 'Model', prefix => 'M', name => 'Foo::Foo::Foo::Bar' },
28 { type => 'Model', prefix => 'Model', name => 'Bar::Bar::Bar::Foo' },
29 { type => 'Model', prefix => 'Model', name => 'Bar::Bar::Foo' },
30 { type => 'Model', prefix => 'Model', name => 'Bar::Foo' },
31 { type => 'Model', prefix => 'Model', name => 'Foo' },
32 { type => 'View', prefix => 'V', name => 'Bar' },
33 { type => 'View', prefix => 'V', name => 'Foo::Bar' },
34 { type => 'View', prefix => 'V', name => 'Foo::Foo::Bar' },
35 { type => 'View', prefix => 'V', name => 'Foo::Foo::Foo::Bar' },
36 { type => 'View', prefix => 'View', name => 'Bar::Bar::Bar::Foo' },
37 { type => 'View', prefix => 'View', name => 'Bar::Bar::Foo' },
38 { type => 'View', prefix => 'View', name => 'Bar::Foo' },
39 { type => 'View', prefix => 'View', name => 'Foo' },
40);
41
5d50f369 42sub write_component_file {
b94b200c 43 my ($dir_list, $module_name, $content) = @_;
44
45 my $dir = File::Spec->catdir(@$dir_list);
46 my $file = File::Spec->catfile($dir, $module_name . '.pm');
47
48 mkpath(join(q{/}, @$dir_list) );
49 open(my $fh, '>', $file) or die "Could not open file $file for writing: $!";
50 print $fh $content;
51 close $fh;
52}
53
0756fe3b 54sub make_component_file {
06400669 55 my ($libdir, $appclass, $type, $prefix, $name) = @_;
0756fe3b 56
57 my $compbase = "Catalyst::${type}";
58 my $fullname = "${appclass}::${prefix}::${name}";
59 my @namedirs = split(/::/, $name);
60 my $name_final = pop(@namedirs);
61 my @dir_list = ($libdir, $appclass, $prefix, @namedirs);
0756fe3b 62
b94b200c 63 write_component_file(\@dir_list, $name_final, <<EOF);
0756fe3b 64package $fullname;
f27f2c6d 65use MRO::Compat;
0756fe3b 66use base '$compbase';
67sub COMPONENT {
dbb2d5cd 68 my \$self = shift->next::method(\@_);
0756fe3b 69 no strict 'refs';
70 *{\__PACKAGE__ . "::whoami"} = sub { return \__PACKAGE__; };
71 \$self;
72}
731;
74
75EOF
0756fe3b 76}
77
78foreach my $component (@components) {
06400669 79 make_component_file(
80 $libdir,
81 $appclass,
82 $component->{type},
83 $component->{prefix},
84 $component->{name},
85 );
0756fe3b 86}
87
f27f2c6d 88my $shut_up_deprecated_warnings = q{
0f52a840 89 __PACKAGE__->log(Catalyst::Log->new('fatal'));
f27f2c6d 90};
91
92eval "package $appclass; use Catalyst; $shut_up_deprecated_warnings __PACKAGE__->setup";
0756fe3b 93
89b6b254 94is_deeply(
95 [ sort $appclass->locate_components ],
96 [ map { $appclass . '::' . $_->{prefix} . '::' . $_->{name} } @components ], 'locate_components finds the components correctly'
97);
98
0756fe3b 99can_ok( $appclass, 'components');
100
101my $complist = $appclass->components;
102
103# the +1 below is for the app class itself
104is(scalar keys %$complist, 24+1, "Correct number of components loaded");
105
106foreach (keys %$complist) {
107
108 # Skip the component which happens to be the app itself
109 next if $_ eq $appclass;
110
111 my $instance = $appclass->component($_);
112 isa_ok($instance, $_);
113 can_ok($instance, 'whoami');
114 is($instance->whoami, $_);
115
116 if($_ =~ /^${appclass}::(?:V|View)::(.*)/) {
117 my $moniker = $1;
118 isa_ok($instance, 'Catalyst::View');
119 can_ok($appclass->view($moniker), 'whoami');
120 is($appclass->view($moniker)->whoami, $_);
121 }
122 elsif($_ =~ /^${appclass}::(?:M|Model)::(.*)/) {
123 my $moniker = $1;
124 isa_ok($instance, 'Catalyst::Model');
125 can_ok($appclass->model($moniker), 'whoami');
126 is($appclass->model($moniker)->whoami, $_);
127 }
128 elsif($_ =~ /^${appclass}::(?:C|Controller)::(.*)/) {
129 my $moniker = $1;
130 isa_ok($instance, 'Catalyst::Controller');
131 can_ok($appclass->controller($moniker), 'whoami');
132 is($appclass->controller($moniker)->whoami, $_);
133 }
134 else {
135 die "Something is wrong with this test, this should"
136 . " have been unreachable";
137 }
138}
139
140rmtree($libdir);
18de900e 141
142# test extra component loading options
143
144$appclass = 'ExtraOptions';
145push @components, { type => 'View', prefix => 'Extra', name => 'Foo' };
146
147foreach my $component (@components) {
06400669 148 make_component_file(
149 $libdir,
150 $appclass,
151 $component->{type},
152 $component->{prefix},
153 $component->{name},
154 );
18de900e 155}
156
157eval qq(
158package $appclass;
159use Catalyst;
f27f2c6d 160$shut_up_deprecated_warnings
18de900e 161__PACKAGE__->config->{ setup_components } = {
162 search_extra => [ '::Extra' ],
163 except => [ "${appclass}::Controller::Foo" ]
164};
165__PACKAGE__->setup;
166);
167
89b6b254 168{
169 my $config = {
170 search_extra => [ '::Extra' ],
171 except => [ "${appclass}::Controller::Foo" ]
172 };
173 my @components_located = $appclass->locate_components($config);
174 my @components_expected;
175 for (@components) {
176 my $name = $appclass . '::' . $_->{prefix} . '::' . $_->{name};
177 push @components_expected, $name if $name ne "${appclass}::Controller::Foo";
178 }
179 is_deeply(
180 [ sort @components_located ],
181 [ sort @components_expected ],
182 'locate_components finds the components correctly'
183 );
184}
185
18de900e 186can_ok( $appclass, 'components');
187
188$complist = $appclass->components;
189
190is(scalar keys %$complist, 24+1, "Correct number of components loaded");
191
2d486591 192ok( !exists $complist->{ "${appclass}::Controller::Foo" }, 'Controller::Foo was skipped' );
193ok( exists $complist->{ "${appclass}::Extra::Foo" }, 'Extra::Foo was loaded' );
18de900e 194
b94b200c 195rmtree($libdir);
196
197$appclass = "ComponentOnce";
198
199write_component_file([$libdir, $appclass, 'Model'], 'TopLevel', <<EOF);
200package ${appclass}::Model::TopLevel;
201use base 'Catalyst::Model';
202sub COMPONENT {
5d50f369 203
dbb2d5cd 204 my \$self = shift->next::method(\@_);
b94b200c 205 no strict 'refs';
206 *{\__PACKAGE__ . "::whoami"} = sub { return \__PACKAGE__; };
e7e4c469 207 *${appclass}::Model::TopLevel::GENERATED::ACCEPT_CONTEXT = sub {
208 return bless {}, 'FooBarBazQuux';
209 };
b94b200c 210 \$self;
211}
212
213package ${appclass}::Model::TopLevel::Nested;
214
215sub COMPONENT { die "COMPONENT called in the wrong order!"; }
216
2171;
218
219EOF
220
221write_component_file([$libdir, $appclass, 'Model', 'TopLevel'], 'Nested', <<EOF);
222package ${appclass}::Model::TopLevel::Nested;
223use base 'Catalyst::Model';
224
ac424253 225my \$called=0;
b94b200c 226no warnings 'redefine';
ac424253 227sub COMPONENT { \$called++;return shift->next::method(\@_); }
228sub called { return \$called };
b94b200c 2291;
230
231EOF
232
233eval "package $appclass; use Catalyst; __PACKAGE__->setup";
234
235is($@, '', "Didn't load component twice");
ac424253 236is($appclass->model('TopLevel::Nested')->called,1, 'COMPONENT called once');
b94b200c 237
2832ecea 238# relying on regex fallback
e7e4c469 239ok($appclass->model('TopLevel::Generated'), 'Have generated model');
240is(ref($appclass->model('TopLevel::Generated')), 'FooBarBazQuux',
241 'ACCEPT_CONTEXT in generated inner package fired as expected');
242
e1dd56e6 243$appclass = "InnerComponent";
244
245{
246 package InnerComponent::Controller::Test;
247 use base 'Catalyst::Controller';
248}
249
250$INC{'InnerComponent/Controller/Test.pm'} = 1;
251
252eval "package $appclass; use Catalyst; __PACKAGE__->setup";
253
254isa_ok($appclass->controller('Test'), 'Catalyst::Controller');
255
b94b200c 256rmtree($libdir);
5e3121a8 257
258done_testing;