From 8eda30af8c8c46ff3cfc77412c79577f38f7c8a2 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Fri, 10 Mar 2023 10:20:07 -0500 Subject: [PATCH] Bug 33030: Add unit tests Signed-off-by: David Nind Signed-off-by: Marcel de Rooy Signed-off-by: Tomas Cohen Arazi --- t/Template/Utils.t | 60 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100755 t/Template/Utils.t diff --git a/t/Template/Utils.t b/t/Template/Utils.t new file mode 100755 index 0000000000..0f1a9ed307 --- /dev/null +++ b/t/Template/Utils.t @@ -0,0 +1,60 @@ +#!/usr/bin/perl + +# This file is part of Koha. +# +# Copyright (C) 2023 ByWater Solutions +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; +use Test::More tests => 3; + +use utf8; + +use_ok('Koha::TemplateUtils'); + +subtest 'Process arbitrary var' => sub { + plan tests => 2; + + is( + Koha::TemplateUtils::process_tt( + "This is a test.", + { test => 'simple test' } + ), + "This is a test.", + "Processing template toolkit with no TT markup works" + ); + + is( + Koha::TemplateUtils::process_tt( + "This is a [% test %].", + { test => 'simple test' } + ), + "This is a simple test.", + "Processing template toolkit with a var works" + ); +}; + +subtest 'Plugin related tests' => sub { + plan tests => 1; + + is( + Koha::TemplateUtils::process_tt( + q{[% USE raw %]This is a [% test | $raw %].}, + { test => 'simple test' } + ), + "This is a simple test.", + "Processing template toolkit with a Koha plugin works" + ); +}; -- 2.20.1