summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
blob: c1a299479610db94b0c7d074b49b807a6d3909c1 (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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Plack::Test;
use FindBin;

use HTTP::Request::Common;
use Path::Class ();

{
    package Foo::Controller;
    use Moose;

    has view => (
        is       => 'ro',
        isa      => 'OX::View::TT',
        required => 1,
        handles  => ['render'],
    );

    our $AUTOLOAD;
    sub AUTOLOAD {
        my $self = shift;
        my ($r) = @_;
        (my $template = $AUTOLOAD) =~ s/.*:://;
        $template .= '.tt';
        my $defaults = $r->env->{'plack.router.match'}->mapping;
        $self->render($r, $template, $defaults);
    }
}

{
    package Foo;
    use OX;

    config template_root => sub {
        Path::Class::dir($FindBin::Bin)->subdir('data', '01', 'templates')
    };

    component View => 'OX::View::TT', (
        template_root => depends_on('/Config/template_root'),
    );

    component Controller => 'Foo::Controller', (
        view => depends_on('/Component/View'),
    );

    router as {
        route '/' => 'root.index', (
            content => 'Hello world',
        );
        route '/foo' => 'root.foo';
    }, (root => depends_on('/Component/Controller'));
}

my $foo = Foo->new;
my $view = $foo->resolve(service => '/Component/View');
isa_ok($view, 'OX::View::TT');
isa_ok($view->tt, 'Template');

test_psgi
    app => $foo->to_app,
    client => sub {
        my $cb = shift;

        {
            my $res = $cb->(GET 'http://localhost/');
            is($res->code, 200, "right code");
            is($res->content, "<b>Hello world</b>\n", "right content");
        }
        {
            my $res = $cb->(GET 'http://localhost/foo');
            is($res->code, 200, "right code");
            is($res->content, "<p>/foo</p>\n", "right content");
        }
    };

done_testing;