fixing search_extra functionality
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_mvc.t
CommitLineData
a9df50f8 1use Test::More;
5d50f369 2use strict;
3use warnings;
e10b40fd 4
a9df50f8 5use Moose::Meta::Class;
5d50f369 6
7use_ok('Catalyst');
8
a2c0d071 9our @complist_suffix = qw/C::Controller M::Model V::View Controller::C Model::M View::V Controller::Model::Dummy::Model Model::Dummy::Model/;
10
11our @complist = map { "MyMVCTestApp::$_" } @complist_suffix;
5d50f369 12
a9df50f8 13foreach my $comp (@complist) {
14 Moose::Meta::Class->create(
15 $comp =>
16 version => '0.1',
17 );
18}
19our $warnings = 0;
20our $loaded = 0;
21
22Moose::Meta::Class->create('Some::Test::Object');
5d50f369 23
a9df50f8 24Moose::Meta::Class->create(
25 'MyMVCTestApp::Model::Test::Object' =>
26 superclasses => [ 'Catalyst::Model', 'Some::Test::Object' ],
27);
28
29{
5d50f369 30 package MyMVCTestApp;
31
32 use base qw/Catalyst/;
33
a9df50f8 34 sub locate_components {
35 return (@::complist, 'MyMVCTestApp::Model::Test::Object');
36 }
5d50f369 37
a9df50f8 38 no warnings 'redefine';
39 *Catalyst::Log::warn = sub { $::warnings++ };
e10b40fd 40 *Catalyst::Utils::ensure_class_loaded = sub {
41 my $class = shift;
42 $::loaded++
43 if Class::MOP::is_class_loaded($class) && $class =~ /^MyMVCTestApp/
44 };
5d50f369 45
a9df50f8 46 __PACKAGE__->setup;
5d50f369 47}
48
a9df50f8 49ok( $warnings, 'Issues deprecated warnings' );
50is( $loaded, scalar @complist + 1, 'Loaded all components' );
51
5d50f369 52is( MyMVCTestApp->view('View'), 'MyMVCTestApp::V::View', 'V::View ok' );
53
54is( MyMVCTestApp->controller('Controller'),
55 'MyMVCTestApp::C::Controller', 'C::Controller ok' );
56
57is( MyMVCTestApp->model('Model'), 'MyMVCTestApp::M::Model', 'M::Model ok' );
58
59is( MyMVCTestApp->model('Dummy::Model'), 'MyMVCTestApp::Model::Dummy::Model', 'Model::Dummy::Model ok' );
60
61isa_ok( MyMVCTestApp->model('Test::Object'), 'Some::Test::Object', 'Test::Object ok' );
62
63is( MyMVCTestApp->controller('Model::Dummy::Model'), 'MyMVCTestApp::Controller::Model::Dummy::Model', 'Controller::Model::Dummy::Model ok' );
64
65is( MyMVCTestApp->view('V'), 'MyMVCTestApp::View::V', 'View::V ok' );
66
67is( MyMVCTestApp->controller('C'), 'MyMVCTestApp::Controller::C', 'Controller::C ok' );
68
69is( MyMVCTestApp->model('M'), 'MyMVCTestApp::Model::M', 'Model::M ok' );
70
71# failed search
72{
73 is( MyMVCTestApp->model('DNE'), undef, 'undef for invalid search' );
74}
75
76is_deeply( [ sort MyMVCTestApp->views ],
77 [ qw/V View/ ],
78 'views ok' );
79
80is_deeply( [ sort MyMVCTestApp->controllers ],
81 [ qw/C Controller Model::Dummy::Model/ ],
82 'controllers ok');
83
84is_deeply( [ sort MyMVCTestApp->models ],
85 [ qw/Dummy::Model M Model Test::Object/ ],
86 'models ok');
87
88{
a9df50f8 89 $warnings = 0;
5d50f369 90
a2c0d071 91 is( MyMVCTestApp->view , undef, 'view() w/o a default is undef' );
92 ok( $warnings, 'warnings thrown for view() w/o a default' );
5d50f369 93}
94
95is ( bless ({stash=>{current_view=>'V'}}, 'MyMVCTestApp')->view , 'MyMVCTestApp::View::V', 'current_view ok');
96
97my $view = bless {} , 'MyMVCTestApp::View::V';
98is ( bless ({stash=>{current_view_instance=> $view }}, 'MyMVCTestApp')->view , $view, 'current_view_instance ok');
99
100is ( bless ({stash=>{current_view_instance=> $view, current_view=>'MyMVCTestApp::V::View' }}, 'MyMVCTestApp')->view , $view,
101 'current_view_instance precedes current_view ok');
102
103{
a9df50f8 104 $warnings = 0;
5d50f369 105
a2c0d071 106 is( MyMVCTestApp->model, undef, 'model() w/o a default is undef' );
107 ok( $warnings, 'warnings thrown for model() w/o a default' );
5d50f369 108}
109
110is ( bless ({stash=>{current_model=>'M'}}, 'MyMVCTestApp')->model , 'MyMVCTestApp::Model::M', 'current_model ok');
111
112my $model = bless {} , 'MyMVCTestApp::Model::M';
113is ( bless ({stash=>{current_model_instance=> $model }}, 'MyMVCTestApp')->model , $model, 'current_model_instance ok');
114
115is ( bless ({stash=>{current_model_instance=> $model, current_model=>'MyMVCTestApp::M::Model' }}, 'MyMVCTestApp')->model , $model,
116 'current_model_instance precedes current_model ok');
117
e10b40fd 118{
119 use FindBin '$Bin';
120 use lib "$Bin/../lib";
121
122 use Catalyst::Test 'TestAppController';
123
124 is( get('/foo/test_controller'), 'bar', 'controller() with empty args returns current controller' );
125}
126
a2c0d071 127our @complist_default_view =
128 map { "MyMVCTestAppDefaultView::$_" } @complist_suffix;
129
130{
131 package MyMVCTestAppDefaultView;
132
133 use base qw/Catalyst/;
134
135 sub locate_components {
136 return @::complist_default_view;
137 }
138
139 no warnings 'redefine';
140 *Catalyst::Utils::ensure_class_loaded = sub {
141 my $class = shift;
142 $::loaded++
143 if Class::MOP::is_class_loaded($class) && $class =~ /^MyMVCTestAppDefaultView/
144 };
145
146 __PACKAGE__->config( default_view => 'V' );
147
148 __PACKAGE__->setup;
149}
150
151is( bless ({stash=>{}}, 'MyMVCTestAppDefaultView')->view, 'MyMVCTestAppDefaultView::View::V', 'default_view ok' );
152is( MyMVCTestAppDefaultView->view , 'MyMVCTestAppDefaultView::View::V', 'default_view in class method ok' );
153
154our @complist_default_model =
155 map { "MyMVCTestAppDefaultModel::$_" } @complist_suffix;
156
157{
158 package MyMVCTestAppDefaultModel;
159
160 use base qw/Catalyst/;
161
162 sub locate_components {
163 return @::complist_default_model;
164 }
165
166 no warnings 'redefine';
167 *Catalyst::Utils::ensure_class_loaded = sub {
168 my $class = shift;
169 $::loaded++
170 if Class::MOP::is_class_loaded($class) && $class =~ /^MyMVCTestAppDefaultModel/
171 };
172
173 __PACKAGE__->config( default_model => 'M' );
174
175 __PACKAGE__->setup;
176}
5d50f369 177
a2c0d071 178is( bless ({stash=>{}}, 'MyMVCTestAppDefaultModel')->model , 'MyMVCTestAppDefaultModel::Model::M', 'default_model ok' );
179is( MyMVCTestAppDefaultModel->model , 'MyMVCTestAppDefaultModel::Model::M', 'default_model in class method ok' );
5d50f369 180
181# regexp behavior tests
182{
183 # is_deeply is used because regexp behavior means list context
184 is_deeply( [ MyMVCTestApp->view( qr{^V[ie]+w$} ) ], [ 'MyMVCTestApp::V::View' ], 'regexp view ok' );
185 is_deeply( [ MyMVCTestApp->controller( qr{Dummy\::Model$} ) ], [ 'MyMVCTestApp::Controller::Model::Dummy::Model' ], 'regexp controller ok' );
186 is_deeply( [ MyMVCTestApp->model( qr{Dum{2}y} ) ], [ 'MyMVCTestApp::Model::Dummy::Model' ], 'regexp model ok' );
187
188 # object w/ qr{}
189 is_deeply( [ MyMVCTestApp->model( qr{Test} ) ], [ MyMVCTestApp->components->{'MyMVCTestApp::Model::Test::Object'} ], 'Object returned' );
190
191 {
a9df50f8 192 $warnings = 0;
5d50f369 193
194 # object w/ regexp fallback
5a53ef3d 195 is( MyMVCTestApp->model( 'Test' ), undef, 'no regexp fallback' );
5d50f369 196 ok( $warnings, 'regexp fallback warnings' );
197 }
198
5a53ef3d 199 is( MyMVCTestApp->view('MyMVCTestApp::V::View$'), undef, 'no regexp fallback');
200
201 is( MyMVCTestApp->controller('MyMVCTestApp::C::Controller$'), undef, 'no regexp fallback');
202
203 is( MyMVCTestApp->model('MyMVCTestApp::M::Model$'), undef, 'no regexp fallback');
5d50f369 204}
205
206{
207 my @expected = qw( MyMVCTestApp::C::Controller MyMVCTestApp::Controller::C );
208 is_deeply( [ sort MyMVCTestApp->controller( qr{^C} ) ], \@expected, 'multiple controller returns from regexp search' );
209}
210
211{
212 my @expected = qw( MyMVCTestApp::V::View MyMVCTestApp::View::V );
213 is_deeply( [ sort MyMVCTestApp->view( qr{^V} ) ], \@expected, 'multiple view returns from regexp search' );
214}
215
216{
217 my @expected = qw( MyMVCTestApp::M::Model MyMVCTestApp::Model::M );
218 is_deeply( [ sort MyMVCTestApp->model( qr{^M} ) ], \@expected, 'multiple model returns from regexp search' );
219}
220
221# failed search
222{
223 is( scalar MyMVCTestApp->controller( qr{DNE} ), 0, '0 results for failed search' );
224}
225
226#checking @args passed to ACCEPT_CONTEXT
227{
228 my $args;
229
230 {
231 no warnings 'once';
232 *MyMVCTestApp::Model::M::ACCEPT_CONTEXT = sub { my ($self, $c, @args) = @_; $args= \@args};
233 *MyMVCTestApp::View::V::ACCEPT_CONTEXT = sub { my ($self, $c, @args) = @_; $args= \@args};
234 }
235
236 my $c = bless {}, 'MyMVCTestApp';
237
238 # test accept-context with class rather than instance
239 MyMVCTestApp->model('M', qw/foo bar/);
240 is_deeply($args, [qw/foo bar/], 'MyMVCTestApp->model args passed to ACCEPT_CONTEXT ok');
241
242
243 $c->model('M', qw/foo bar/);
244 is_deeply($args, [qw/foo bar/], '$c->model args passed to ACCEPT_CONTEXT ok');
245
246 my $x = $c->view('V', qw/foo2 bar2/);
247 is_deeply($args, [qw/foo2 bar2/], '$c->view args passed to ACCEPT_CONTEXT ok');
248
02fee6c6 249}
250
251{
252 package MyApp::WithoutRegexFallback;
253
254 use base qw/Catalyst/;
255
256 __PACKAGE__->config( { disable_component_resolution_regex_fallback => 1 } );
257
258 __PACKAGE__->components( { map { ( ref($_)||$_ , $_ ) }
259 qw/MyApp::WithoutRegexFallback::Controller::Another::Foo/ } );
260
261 # allow $c->log->warn to work
262 __PACKAGE__->setup_log;
263}
264
265{
266 # test if non-regex component retrieval still works
267 is( MyApp::WithoutRegexFallback->controller('Another::Foo'),
268 'MyApp::WithoutRegexFallback::Controller::Another::Foo', 'controller Another::Foo found');
269}
270
271{
272 my $warnings = 0;
273 no warnings 'redefine';
274 local *Catalyst::Log::warn = sub { $warnings++ };
275
276 # try to get nonexisting object w/o regexp fallback
277 is( MyApp::WithoutRegexFallback->controller('Foo'), undef, 'no controller Foo found');
02fee6c6 278}
a9df50f8 279
5a53ef3d 280done_testing;