Bug 22922: Allow to modify hold dates on reserve/request.pl
[koha.git] / t / Labels_split_lccn.t
blobf9462ba23c9c7d663ad85ae0dbbd07b0efabc179
1 #!/usr/bin/perl
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>.
18 # for context, see http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2691
20 use strict;
21 use warnings;
23 use C4::ClassSplitRoutine::LCC;
24 use Test::More;
26 BEGIN {
27 our $lccns = {};
28 if ($ARGV[0]) {
29 BAIL_OUT("USAGE: perl Labels_split_lccn.t 'HE 8700.7 .P6 T44 1983' 'HE,8700.7,.P6,T44,1983'") unless $ARGV[1];
30 $lccns = {$ARGV[0] => [split (/,/,$ARGV[1])],};
32 else {
33 $lccns = {
34 'HE8700.7 .P6T44 1983' => [qw(HE 8700.7 .P6 T44 1983)],
35 'BS2545.E8 H39 1996' => [qw(BS 2545 .E8 H39 1996)],
36 'NX512.S85 A4 2006' => [qw(NX 512 .S85 A4 2006)],
37 'QH541.15.C6 C25 2012' => [qw(QH 541.15 .C6 C25 2012)],
38 '123 ABC FOO BAR' => [qw(123 ABC FOO BAR)],
41 my $test_num = 1;
42 foreach (keys(%$lccns)) {
43 my $split_num += scalar(@{$lccns->{$_}});
44 $test_num += 2 * $split_num;
45 $test_num += 4;
47 plan tests => $test_num;
48 use_ok('C4::Labels::Label');
49 use vars qw($lccns);
52 foreach my $lccn (sort keys %$lccns) {
53 my (@parts, @expected);
54 ok($lccn, "lccn: $lccn");
55 ok(@expected = @{$lccns->{$lccn}}, "split expected to produce " . scalar(@expected) . " pieces");
56 ok(@parts = C4::ClassSplitRoutine::LCC::split_callnumber($lccn), "split LCC ($lccn)");
57 ok(scalar(@expected) == scalar(@parts), sprintf("%d of %d pieces produced", scalar(@parts), scalar(@expected)));
58 my $i = 0;
59 foreach my $unit (@expected) {
60 my $part;
61 ok($part = $parts[$i], "($lccn)[$i] populated: " . (defined($part) ? $part : 'UNDEF'));
62 ok((defined($part) and $part eq $unit), "($lccn)[$i] matches: $unit");
63 $i++;