3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Test
::More tests
=> 51;
22 use C4
::RotatingCollections
;
31 'C4::RotatingCollections',
37 GetCollectionItemBranches
40 RemoveItemFromCollection
44 isItemInThisCollection
48 my $schema = Koha
::Database
->new->schema;
49 $schema->storage->txn_begin;
50 my $dbh = C4
::Context
->dbh;
53 $dbh->do(q
|DELETE FROM issues
|);
54 $dbh->do(q
|DELETE FROM borrowers
|);
55 $dbh->do(q
|DELETE FROM items
|);
56 $dbh->do(q
|DELETE FROM collections_tracking
|);
57 $dbh->do(q
|DELETE FROM collections
|);
58 $dbh->do(q
|DELETE FROM branches
|);
59 $dbh->do(q
|DELETE FROM categories
|);
61 #Test CreateCollection
62 my $collections = GetCollections
();
63 my $countcollection = scalar(@
$collections);
65 my ($success,$errorCode,$errorMessage);
67 ($success,$errorCode,$errorMessage) = CreateCollection
( 'Collection1', 'Description1' );
68 is
( $success, 1, "All parameters have been given - Collection 1 added" );
69 ok
( !defined $errorCode && !defined $errorMessage,
70 "Collection added, no error code or message");
71 my $collection_id1 = $dbh->last_insert_id( undef, undef, 'collections', undef );
73 ($success,$errorCode,$errorMessage) = CreateCollection
( 'Collection2', 'Description2' );
74 is
( $success, 1, "All parameters have been given - Collection 2 added" );
75 ok
( !defined $errorCode && !defined $errorMessage,
76 "Collection added, no error code or message");
77 my $collection_id2 = $dbh->last_insert_id( undef, undef, 'collections', undef );
79 $collections = GetCollections
();
80 is
( scalar(@
$collections), $countcollection + 2,
81 "Collection1 and Collection2 have been added" );
83 ($success,$errorCode,$errorMessage) = CreateCollection
('Collection3');
84 is
( $success, 1, "Collections can be created without description" );
85 ok
( !defined $errorCode && !defined $errorMessage,
86 "Collection added, no error code or message");
87 my $collection_id3 = $dbh->last_insert_id( undef, undef, 'collections', undef );
89 ($success,$errorCode,$errorMessage) = CreateCollection
();
90 is
( $success, 0, "Title missing, fails to create collection" );
91 is
( $errorCode, 1, "Title missing, error code is 1" );
92 is
( $errorMessage, 'NO_TITLE', "Title missing, error message is NO_TITLE" );
94 $collections = GetCollections
();
95 is
( scalar(@
$collections), $countcollection + 3, "Only one collection added" );
97 #FIXME, as the id is auto incremented, two similar Collections (same title /same description) can be created
98 #$collection1 = CreateCollection('Collection1','Description1');
101 my $collection = GetCollections
();
106 colId
=> $collection_id1,
107 colTitle
=> 'Collection1',
108 colDesc
=> 'Description1',
109 colBranchcode
=> undef
112 colId
=> $collection_id2,
113 colTitle
=> 'Collection2',
114 colDesc
=> 'Description2',
115 colBranchcode
=> undef
118 colId
=> $collection_id3,
119 colTitle
=> 'Collection3',
121 colBranchcode
=> undef
128 #Test UpdateCollection
129 ($success,$errorCode,$errorMessage) =
130 UpdateCollection
( $collection_id2, 'Collection2bis', undef );
131 is
( $success, 1, "UpdateCollection succeeds without description");
133 ($success,$errorCode,$errorMessage) =
134 UpdateCollection
( $collection_id2, 'Collection2 modified', 'Description2 modified' );
135 is
( $success, 1, "Collection2 has been modified" );
136 ok
( !defined $errorCode && !defined $errorMessage,
137 "Collection2 modified, no error code or message");
139 ($success,$errorCode,$errorMessage) =
140 UpdateCollection
( $collection_id2, undef, 'Description' ),
141 ok
( !$success, "UpdateCollection fails without title" );
142 is
( $errorCode, 2, "Title missing, error code is 2");
143 is
( $errorMessage, 'NO_TITLE', "Title missing, error message is NO_TITLE");
145 is
( UpdateCollection
(), 'NO_ID', "UpdateCollection without params" );
148 my @collection1 = GetCollection
($collection_id1);
151 [ $collection_id1, 'Collection1', 'Description1', undef ],
152 "Collection1's informations"
154 my @collection2 = GetCollection
($collection_id2);
157 [ $collection_id2, 'Collection2 modified', 'Description2 modified', undef ],
158 "Collection2's informations"
160 my @undef_collection = GetCollection
();
163 [ undef, undef, undef, undef ],
164 "GetCollection without id given"
166 @undef_collection = GetCollection
(-1);
169 [ undef, undef, undef, undef ],
170 "GetCollection with a wrong id"
173 #Test TransferCollection
176 branchname
=> 'Sample Branch',
177 branchaddress1
=> 'sample adr1',
178 branchaddress2
=> 'sample adr2',
179 branchaddress3
=> 'sample adr3',
180 branchzip
=> 'sample zip',
181 branchcity
=> 'sample city',
182 branchstate
=> 'sample state',
183 branchcountry
=> 'sample country',
184 branchphone
=> 'sample phone',
185 branchfax
=> 'sample fax',
186 branchemail
=> 'sample email',
187 branchurl
=> 'sample url',
188 branchip
=> 'sample ip',
189 branchprinter
=> undef,
190 branchnotes
=> 'sample note',
191 opac_info
=> 'sample opac',
193 Koha
::Library
->new($samplebranch)->store;
194 is
( TransferCollection
( $collection_id1, $samplebranch->{branchcode
} ),
195 1, "Collection1 has been transfered in the branch SAB" );
196 @collection1 = GetCollection
($collection_id1);
200 $collection_id1, 'Collection1',
201 'Description1', $samplebranch->{branchcode
}
203 "Collection1 belongs to the sample branch (SAB)"
205 is
( TransferCollection
, "NO_ID", "TransferCollection without ID" );
207 TransferCollection
($collection_id1),
209 "TransferCollection without branchcode"
212 #Test AddItemToCollection
213 my $record = MARC
::Record
->new();
214 $record->append_fields(
217 a
=> $samplebranch->{branchcode
},
218 b
=> $samplebranch->{branchcode
}
221 my ( $biblionumber, $biblioitemnumber ) = C4
::Biblio
::AddBiblio
( $record, '', );
222 my @sampleitem1 = C4
::Items
::AddItem
(
225 itemcallnumber
=> 'callnumber1',
226 homebranch
=> $samplebranch->{branchcode
},
227 holdingbranch
=> $samplebranch->{branchcode
}
231 my $item_id1 = $sampleitem1[2];
232 my @sampleitem2 = C4
::Items
::AddItem
(
235 itemcallnumber
=> 'callnumber2',
236 homebranch
=> $samplebranch->{branchcode
},
237 holdingbranch
=> $samplebranch->{branchcode
}
241 my $item_id2 = $sampleitem2[2];
242 is
( AddItemToCollection
( $collection_id1, $item_id1 ),
243 1, "Sampleitem1 has been added to Collection1" );
244 is
( AddItemToCollection
( $collection_id1, $item_id2 ),
245 1, "Sampleitem2 has been added to Collection1" );
247 #Test GetItemsInCollection
248 my $itemsincollection1;
249 ($itemsincollection1,$success,$errorCode,$errorMessage) = GetItemsInCollection
($collection_id1);
250 is
( scalar @
$itemsincollection1, 2, "Collection1 has 2 items" );
256 itemcallnumber
=> 'callnumber1',
257 biblionumber
=> $biblionumber,
262 itemcallnumber
=> 'callnumber2',
263 biblionumber
=> $biblionumber,
267 "Collection1 has Item1 and Item2"
269 ($itemsincollection1,$success,$errorCode,$errorMessage) = GetItemsInCollection
();
270 ok
( !$success, "GetItemsInCollection fails without a collection ID" );
271 is
( $errorCode, 1, "Title missing, error code is 2");
272 is
( $errorMessage, 'NO_ID', "Collection ID missing, error message is NO_ID");
274 #Test RemoveItemFromCollection
275 is
( RemoveItemFromCollection
( $collection_id1, $item_id2 ),
276 1, "Item2 has been removed from collection 1" );
277 $itemsincollection1 = GetItemsInCollection
($collection_id1);
278 is
( scalar @
$itemsincollection1, 1, "Collection1 has 1 items" );
280 #Test isItemInAnyCollection
281 is
( C4
::RotatingCollections
::isItemInAnyCollection
($item_id1),
282 1, "Item1 is in a collection" );
283 is
( C4
::RotatingCollections
::isItemInAnyCollection
($item_id2),
284 0, "Item2 is not in a collection" );
285 is
( C4
::RotatingCollections
::isItemInAnyCollection
(),
286 0, "isItemInAnyCollection returns 0 if no itemid given " );
287 is
( C4
::RotatingCollections
::isItemInAnyCollection
(-1),
288 0, "isItemInAnyCollection returns 0 if a wrong id is given" );
290 #Test isItemInThisCollection
292 C4
::RotatingCollections
::isItemInThisCollection
(
293 $item_id1, $collection_id1
296 "Item1 is in the Collection1"
299 C4
::RotatingCollections
::isItemInThisCollection
(
300 $item_id1, $collection_id2
303 "Item1 is not in the Collection2"
306 C4
::RotatingCollections
::isItemInThisCollection
(
307 $item_id2, $collection_id2
310 "Item2 is not in the Collection2"
312 is
( C4
::RotatingCollections
::isItemInThisCollection
($collection_id1),
313 0, "isItemInThisCollection returns 0 is ItemId is missing" );
314 is
( C4
::RotatingCollections
::isItemInThisCollection
($item_id1),
315 0, "isItemInThisCollection returns 0 is Collectionid if missing" );
316 is
( C4
::RotatingCollections
::isItemInThisCollection
(),
317 0, "isItemInThisCollection returns 0 if no params given" );
319 #Test DeleteCollection
320 is
( DeleteCollection
($collection_id2), 1, "Collection2 deleted" );
321 is
( DeleteCollection
($collection_id1), 1, "Collection1 deleted" );
325 "DeleteCollection without id"
327 $collections = GetCollections
();
329 scalar(@
$collections),
330 $countcollection + 1,
331 "Two Collections have been deleted"