From 742e2a2752fd8cc97323930b0bd534784a959f64 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 21 Dec 2021 09:44:09 -0300 Subject: [PATCH] Bug 29746: Unit tests Signed-off-by: Tomas Cohen Arazi --- t/Koha/Boolean.t | 74 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100755 t/Koha/Boolean.t diff --git a/t/Koha/Boolean.t b/t/Koha/Boolean.t new file mode 100755 index 0000000000..131a81c190 --- /dev/null +++ b/t/Koha/Boolean.t @@ -0,0 +1,74 @@ +#!/usr/bin/perl + +# This file is part of Koha. +# +# 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 => 4; + +use_ok('Koha::Boolean'); + +subtest 'new() tests' => sub { + + plan tests => 4; + + ok( Koha::Boolean->new, + 'Defaults to true if initialized without the parameter' ); + ok( Koha::Boolean->new('Martin'), + 'Evals to true in boolean context if set an expression that evals to true' ); + ok( !Koha::Boolean->new(0), + 'Evals to false in boolean context if set a false expression' ); + ok( !Koha::Boolean->new(""), + 'Evals to false in boolean context if set a false expression' ); + +}; + +subtest 'set_value() tests' => sub { + + plan tests => 4; + + my $bool = Koha::Boolean->new; + + ok( !$bool->set_value(), + 'Undef makes it eval to false' ); + ok( $bool->set_value('Martin'), + 'Evals to true in boolean context if set an expression that evals to true' ); + ok( !$bool->set_value(0), + 'Evals to false in boolean context if set a false expression' ); + ok( !$bool->set_value(""), + 'Evals to false in boolean context if set a false expression' ); + +}; + +subtest 'messages() and add_message() tests' => sub { + + plan tests => 5; + + my $bool = Koha::Boolean->new(); + + my @messages = @{ $bool->messages }; + is( scalar @messages, 0, 'No messages' ); + + $bool->add_message({ message => "message_1" }); + $bool->add_message({ message => "message_2" }); + + @messages = @{ $bool->messages }; + + is( scalar @messages, 2, 'Messages are returned' ); + is( ref($messages[0]), 'Koha::Object::Message', 'Right type returned' ); + is( ref($messages[1]), 'Koha::Object::Message', 'Right type returned' ); + is( $messages[0]->message, 'message_1', 'Right message recorded' ); +}; -- 2.32.0