Bug 16086: Add tests for Koha::Issues
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 6 Apr 2016 12:09:31 +0000 (13:09 +0100)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Thu, 7 Apr 2016 00:31:22 +0000 (00:31 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
t/db_dependent/Koha/Issues.t [new file with mode: 0644]

diff --git a/t/db_dependent/Koha/Issues.t b/t/db_dependent/Koha/Issues.t
new file mode 100644 (file)
index 0000000..38023c8
--- /dev/null
@@ -0,0 +1,60 @@
+#!/usr/bin/perl
+
+# Copyright 2015 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 => 4;
+
+use Koha::Issue;
+use Koha::Issues;
+use Koha::Database;
+
+use t::lib::TestBuilder;
+
+my $schema = Koha::Database->new->schema;
+$schema->storage->txn_begin;
+
+my $builder      = t::lib::TestBuilder->new;
+my $patron       = $builder->build( { source => 'Borrower' } );
+my $item_1       = $builder->build( { source => 'Item' } );
+my $item_2       = $builder->build( { source => 'Item' } );
+my $nb_of_issues = Koha::Issues->search->count;
+my $new_issue_1  = Koha::Issue->new(
+    {   borrowernumber => $patron->{borrowernumber},
+        itemnumber     => $item_1->{itemnumber},
+    }
+)->store;
+my $new_issue_2 = Koha::Issue->new(
+    {   borrowernumber => $patron->{borrowernumber},
+        itemnumber     => $item_2->{itemnumber},
+    }
+)->store;
+
+like( $new_issue_1->issue_id, qr|^\d+$|, 'Adding a new issue should have set the issue_id' );
+is( Koha::Issues->search->count, $nb_of_issues + 2, 'The 2 issues should have been added' );
+
+my $retrieved_issue_1 = Koha::Issues->find( $new_issue_1->issue_id );
+is( $retrieved_issue_1->itemnumber, $new_issue_1->itemnumber, 'Find a issue by id should return the correct issue' );
+
+$retrieved_issue_1->delete;
+is( Koha::Issues->search->count, $nb_of_issues + 1, 'Delete should delete the issue' );
+
+$schema->storage->txn_rollback;
+
+1;