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