Skip to content

Commit

Permalink
some simple tests
Browse files Browse the repository at this point in the history
  • Loading branch information
doy committed Jan 25, 2011
1 parent 89c2156 commit 5bc4f40
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 0 deletions.
79 changes: 79 additions & 0 deletions t/01-basic.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,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'}->route->defaults;
$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;
1 change: 1 addition & 0 deletions t/data/01/templates/foo.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>[% r.path_info %]</p>
1 change: 1 addition & 0 deletions t/data/01/templates/index.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<b>[% content %]</b>

0 comments on commit 5bc4f40

Please sign in to comment.