From bb3ff3e1f924d530b3bfdf192849b5ac1b9aa5b2 Mon Sep 17 00:00:00 2001 From: "mascip (Pierre Masci)" Date: Mon, 9 Dec 2013 13:22:21 +0000 Subject: template_params dependency, to send parameters to the template --- t/array_parameter.t | 92 +++++++++++++++++++++++++++++++ t/data/array_parameter/templates/index.tt | 8 +++ 2 files changed, 100 insertions(+) create mode 100644 t/array_parameter.t create mode 100644 t/data/array_parameter/templates/index.tt (limited to 't') diff --git a/t/array_parameter.t b/t/array_parameter.t new file mode 100644 index 0000000..22533c2 --- /dev/null +++ b/t/array_parameter.t @@ -0,0 +1,92 @@ +#!/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'; + $self->render($r, $template, $r->mapping); + } + sub can { 1 } +} + +{ + package Foo; + use OX; + + has template_root => ( + is => 'ro', + isa => 'Str', + block => sub { + Path::Class::dir($FindBin::Bin)->subdir('data', 'array_parameter', 'templates')->stringify + }, + ); + + has 'template_params' => ( + block => sub { + my $s = shift; + return { + some_scalar => 'scalar', + some_array => ['one', 'two'], + other_array => ['four', 'five'], + }; + }, + ); + + has view => ( + is => 'ro', + isa => 'OX::View::TT', + dependencies => ['template_root', 'template_params'], + ); + + has root => ( + is => 'ro', + isa => 'Foo::Controller', + dependencies => ['view'], + ); + + router as { + route '/' => 'root.index', ( + content => 'Hello world', + ); + }; +} + +my $foo = Foo->new; +my $view = $foo->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, "Hello world\n

scalar

\n\none\n\ntwo\n\n\nfour\n\nfive\n\n", "array parameter was passed"); + } + }; + +done_testing; diff --git a/t/data/array_parameter/templates/index.tt b/t/data/array_parameter/templates/index.tt new file mode 100644 index 0000000..5454d04 --- /dev/null +++ b/t/data/array_parameter/templates/index.tt @@ -0,0 +1,8 @@ +[% content %] +

[% some_scalar %]

+[% FOREACH elem IN some_array %] +[% elem %] +[% END %] +[% FOREACH elem IN other_array %] +[% elem %] +[% END %] -- cgit v1.2.3-54-g00ecf