Patch from zamolxes: MyApp->model/view now looks at MyApp->config->{default_view...
[catagits/Catalyst-Runtime.git] / t / unit_core_mvc.t
1 use Test::More tests => 27;
2 use strict;
3 use warnings;
4
5 use_ok('Catalyst');
6
7 my @complist =
8   map { "MyApp::$_"; }
9   qw/C::Controller M::Model V::View Controller::C Model::M View::V Controller::Model::Dummy::Model Model::Dummy::Model/;
10
11 my $thingie={};
12 bless $thingie,'MyApp::Model::Test::Object';
13 push @complist,$thingie;
14 {
15
16     package MyApp;
17
18     use base qw/Catalyst/;
19
20     __PACKAGE__->components( { map { ( ref($_)||$_ , $_ ) } @complist } );
21 }
22
23 is( MyApp->view('View'), 'MyApp::V::View', 'V::View ok' );
24
25 is( MyApp->controller('Controller'),
26     'MyApp::C::Controller', 'C::Controller ok' );
27
28 is( MyApp->model('Model'), 'MyApp::M::Model', 'M::Model ok' );
29
30 is( MyApp->model('Dummy::Model'), 'MyApp::Model::Dummy::Model', 'Model::Dummy::Model ok' );
31
32 isa_ok( MyApp->model('Test::Object'), 'MyApp::Model::Test::Object', 'Test::Object ok' );
33
34 is( MyApp->controller('Model::Dummy::Model'), 'MyApp::Controller::Model::Dummy::Model', 'Controller::Model::Dummy::Model ok' );
35
36 is( MyApp->view('V'), 'MyApp::View::V', 'View::V ok' );
37
38 is( MyApp->controller('C'), 'MyApp::Controller::C', 'Controller::C ok' );
39
40 is( MyApp->model('M'), 'MyApp::Model::M', 'Model::M ok' );
41
42 is_deeply( [ sort MyApp->views ],
43            [ qw/V View/ ],
44            'views ok' );
45
46 is_deeply( [ sort MyApp->controllers ],
47            [ qw/C Controller Model::Dummy::Model/ ],
48            'controllers ok');
49
50 is_deeply( [ sort MyApp->models ],
51            [ qw/Dummy::Model M Model Test::Object/ ],
52            'models ok');
53
54 is (MyApp->view , 'MyApp::V::View', 'view() with no defaults ok');
55
56 is ( bless ({stash=>{current_view=>'V'}}, 'MyApp')->view , 'MyApp::View::V', 'current_view ok');
57
58 my $view = bless {} , 'MyApp::View::V'; 
59 is ( bless ({stash=>{current_view_instance=> $view }}, 'MyApp')->view , $view, 'current_view_instance ok');
60
61 is ( bless ({stash=>{current_view_instance=> $view, current_view=>'MyApp::V::View' }}, 'MyApp')->view , $view, 
62   'current_view_instance precedes current_view ok');
63
64 is (MyApp->model , 'MyApp::M::Model', 'model() with no defaults ok');
65
66 is ( bless ({stash=>{current_model=>'M'}}, 'MyApp')->model , 'MyApp::Model::M', 'current_model ok');
67
68 my $model = bless {} , 'MyApp::Model::M'; 
69 is ( bless ({stash=>{current_model_instance=> $model }}, 'MyApp')->model , $model, 'current_model_instance ok');
70
71 is ( bless ({stash=>{current_model_instance=> $model, current_model=>'MyApp::M::Model' }}, 'MyApp')->model , $model, 
72   'current_model_instance precedes current_model ok');
73
74 MyApp->config->{default_view} = 'V';
75 is ( bless ({stash=>{}}, 'MyApp')->view , 'MyApp::View::V', 'default_view ok');
76 is ( MyApp->view , 'MyApp::View::V', 'default_view in class method ok');
77
78 MyApp->config->{default_model} = 'M';
79 is ( bless ({stash=>{}}, 'MyApp')->model , 'MyApp::Model::M', 'default_model ok');
80 is ( MyApp->model , 'MyApp::Model::M', 'default_model in class method ok');
81
82 #checking @args passed to ACCEPT_CONTEXT
83 my $args;
84 {
85         no warnings; 
86         *MyApp::Model::M::ACCEPT_CONTEXT = sub { my ($self, $c, @args) = @_; $args= \@args};
87         *MyApp::View::V::ACCEPT_CONTEXT = sub { my ($self, $c, @args) = @_; $args= \@args};
88
89 MyApp->model('M', qw/foo bar/);
90 is_deeply($args, [qw/foo bar/], '$c->model args passed to ACCEPT_CONTEXT ok');
91 MyApp->view('V', qw/baz moo/);
92 is_deeply($args, [qw/baz moo/], '$c->view args passed to ACCEPT_CONTEXT ok');