Bug 14097: Fixed missing test cases
[koha.git] / t / db_dependent / Category.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2014 - Koha Team
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use t::lib::TestBuilder;
23 use Test::More tests => 3;
24
25 use Koha::Database;
26
27 BEGIN {
28     use_ok('C4::Category');
29 }
30
31 my $schema  = Koha::Database->new->schema;
32 $schema->storage->txn_begin;
33
34 my $builder = t::lib::TestBuilder->new();
35
36 my $nonexistent_categorycode = 'NONEXISTEN';
37 $builder->build({
38     source => 'Category',
39     value  => {
40         categorycode          => $nonexistent_categorycode,
41         description           => 'Desc',
42         enrolmentperiod       => 12,
43         enrolementperioddate  => '2014-01-02',
44         upperagelimit         => 99,
45         dateofbirthrequired   => 1,
46         enrolmentfee          => 1.5,
47         reservefee            => 2.5,
48         hidelostitems         => 0,
49         overduenoticerequired => 0,
50         category_type         => 'A',
51     },
52 });
53
54 my @categories = C4::Category->all;
55 ok( @categories, 'all returns categories' );
56
57 my $match = grep {$_->{categorycode} eq $nonexistent_categorycode } @categories;
58 is( $match, 1, 'all returns the inserted category');
59
60 $schema->storage->txn_rollback;
61
62 1;