From fea400ac65d174233a5ff583bbeaf92febb0aea8 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 5 Mar 2019 09:44:40 -0300 Subject: [PATCH] Bug 22454: Unit tests --- t/db_dependent/Koha/Item.t | 52 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 t/db_dependent/Koha/Item.t diff --git a/t/db_dependent/Koha/Item.t b/t/db_dependent/Koha/Item.t new file mode 100644 index 0000000000..62c648ff5b --- /dev/null +++ b/t/db_dependent/Koha/Item.t @@ -0,0 +1,52 @@ +#!/usr/bin/perl + +# Copyright 2019 Koha Development team +# +# 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 => 1; + +use Koha::Items; +use Koha::Database; + +use t::lib::TestBuilder; +use t::lib::Mocks; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'hidden_in_opac() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $item = $builder->build_sample_item; + my $rules = {}; + + ok( !$item->hidden_in_opac, 'No rules passed, shouldn\'t hide' ); + ok( !$item->hidden_in_opac({ rules => $rules }), 'Empty rules passed, shouldn\'t hide' ); + + my $withdrawn = $item->withdrawn + 1; # make sure this attribute doesn't match + + $rules = { withdrawn => $withdrawn, itype => [ $item->itype ] }; + + ok( $item->hidden_in_opac({ rules => $rules }), 'Rule matching itype passed, should hide' ); + + $schema->storage->txn_rollback; +}; -- 2.21.0