summaryrefslogtreecommitdiffstats
path: root/t/010_container.t
blob: 379950a3a5aa866641eac6f6b397c5f80b6da44d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
use v6;
use Test;

use Bread::Board;

sub does_ok(Mu $var, Mu $type, $msg = ("The object does '" ~ $type.perl ~ "'")) {
    ok($var.does($type), $msg);
}

class MyApp::Schema {}
class MyApp::View::TT {}

my $c = Bread::Board::Container.new(name => '/');
isa_ok($c, Bread::Board::Container);

$c.add_sub_container(
    Bread::Board::Container.new(
        name => 'Application',
        sub_containers => [
            Bread::Board::Container.new(
                name => 'Model',
                services => [
                    Bread::Board::Literal.new(name => 'dsn', value => ''),
                    Bread::Board::ConstructorInjection.new(
                        name         => 'schema',
                        class        => MyApp::Schema,
                        dependencies => {
                            dsn => Bread::Board::Dependency.new(
                                service_path => '../dsn',
                            ),
                            user => Bread::Board::Literal.new(
                                name  => 'user',
                                value => '',
                            ),
                            pass => Bread::Board::Literal.new(
                                name  => 'pass',
                                value => '',
                            ),
                        },
                    ),
                ],
            ),
            Bread::Board::Container.new(
                name => 'View',
                services => [
                    Bread::Board::ConstructorInjection.new(
                        name         => 'TT',
                        class        => MyApp::View::TT,
                        dependencies => {
                            tt_include_path => Bread::Board::Literal.new(
                                name  => 'include_path',
                                value => [],
                            ),
                        },
                    ),
                ],
            ),
            Bread::Board::Container.new(
                name => 'Controller',
            ),
        ],
    ),
);

my $app = $c.get_sub_container('Application');
isa_ok($app, Bread::Board::Container);

is($app.name, 'Application');

{
    my $controller = $app.get_sub_container('Controller');
    isa_ok($controller, Bread::Board::Container);
    is($controller.name, 'Controller');
    is($controller.parent, $app);
    ok(!$controller.has_services);
}

{
    my $view = $app.get_sub_container('View');
    isa_ok($view, Bread::Board::Container);
    is($view.name, 'View');
    is($view.parent, $app);
    ok($view.has_services);

    my $service = $view.get_service('TT');
    does_ok($service, Bread::Board::Service);
    is($service.parent, $view);
}

{
    my $model = $app.get_sub_container('Model');
    isa_ok($model, Bread::Board::Container);
    is($model.name, 'Model');
    is($model.parent, $app);
    ok($model.has_services);

    my $service = $model.get_service('schema');
    does_ok($service, Bread::Board::Service);
    is($service.parent, $model);
}

done;