Bug 22454: Unit tests
authorTomas Cohen Arazi <tomascohen@theke.io>
Tue, 5 Mar 2019 12:44:40 +0000 (09:44 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 13 Mar 2019 05:31:31 +0000 (05:31 +0000)
Signed-off-by: Michal Denar <black23@gmail.com>
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
t/db_dependent/Koha/Item.t [new file with mode: 0644]

diff --git a/t/db_dependent/Koha/Item.t b/t/db_dependent/Koha/Item.t
new file mode 100644 (file)
index 0000000..62c648f
--- /dev/null
@@ -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 <http://www.gnu.org/licenses>.
+
+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;
+};