|
Line 0
Link Here
|
| 0 |
- |
1 |
#!/usr/bin/perl |
|
|
2 |
# |
| 3 |
# Copyright 2014 Catalyst IT |
| 4 |
# |
| 5 |
# This file is part of Koha. |
| 6 |
# |
| 7 |
# Koha is free software; you can redistribute it and/or modify it under the |
| 8 |
# terms of the GNU General Public License as published by the Free Software |
| 9 |
# Foundation; either version 3 of the License, or (at your option) any later |
| 10 |
# version. |
| 11 |
# |
| 12 |
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY |
| 13 |
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
| 14 |
# A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
| 15 |
# |
| 16 |
# You should have received a copy of the GNU General Public License along |
| 17 |
# with Koha; if not, write to the Free Software Foundation, Inc., |
| 18 |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 19 |
|
| 20 |
# XXX This doesn't work because I need to figure out how to do transactions |
| 21 |
# in a test-case with DBIx::Class |
| 22 |
|
| 23 |
use Modern::Perl; |
| 24 |
|
| 25 |
use Test::More tests => 8; |
| 26 |
use Data::Dumper; |
| 27 |
|
| 28 |
BEGIN { |
| 29 |
use_ok('Koha::ItemTypes'); |
| 30 |
} |
| 31 |
|
| 32 |
my $dbh = C4::Context->dbh; |
| 33 |
|
| 34 |
# Start transaction |
| 35 |
$dbh->{AutoCommit} = 0; |
| 36 |
$dbh->{RaiseError} = 1; |
| 37 |
|
| 38 |
my $prep = $dbh->prepare('INSERT INTO itemtypes (itemtype, description, rentalcharge, imageurl, summary, checkinmsg, checkinmsgtype) VALUES (?,?,?,?,?,?,?)'); |
| 39 |
$prep->execute('type1', 'description', 'rentalcharge', 'imageurl', 'summary', 'checkinmsg', 'checkinmsgtype'); |
| 40 |
$prep->execute('type2', 'description', 'rentalcharge', 'imageurl', 'summary', 'checkinmsg', 'checkinmsgtype'); |
| 41 |
|
| 42 |
my $itypes = Koha::ItemTypes->new(); |
| 43 |
|
| 44 |
my @types = $itypes->get_itemtype('type1', 'type2'); |
| 45 |
|
| 46 |
die Dumper(\@types); |
| 47 |
my $type = $types[0]; |
| 48 |
ok(defined($type), 'first result'); |
| 49 |
is( $type->code, 'type1', 'itemtype/code' ); |
| 50 |
is( $type->description, 'description', 'description' ); |
| 51 |
is( $type->rentalcharge, 'rentalcharge', 'rentalcharge' ); |
| 52 |
is( $type->imageurl, 'imageurl', 'imageurl' ); |
| 53 |
is( $type->summary, 'summary', 'summary' ); |
| 54 |
is( $type->checkinmsg, 'checkinmsg', 'checkinmsg' ); |
| 55 |
is( $type->checkinmsgtype, 'checkinmsgtype', 'checkinmsgtype' ); |
| 56 |
|
| 57 |
$type = $types[1]; |
| 58 |
ok(defined($type), 'second result'); |
| 59 |
is( $type->code, 'type2', 'itemtype/code' ); |
| 60 |
is( $type->description, 'description', 'description' ); |
| 61 |
is( $type->rentalcharge, 'rentalcharge', 'rentalcharge' ); |
| 62 |
is( $type->imageurl, 'imageurl', 'imageurl' ); |
| 63 |
is( $type->summary, 'summary', 'summary' ); |
| 64 |
is( $type->checkinmsg, 'checkinmsg', 'checkinmsg' ); |
| 65 |
is( $type->checkinmsgtype, 'checkinmsgtype', 'checkinmsgtype' ); |