Koha/t/Template/Utils.t
Kyle Hall 8eda30af8c
Bug 33030: Add unit tests
Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-07-14 16:52:06 -03:00

60 lines
1.6 KiB
Raku
Executable file

#!/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 <http://www.gnu.org/licenses>.
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"
);
};