Bug 16699: Remove requirement from borrowernumberQueryParam
[koha.git] / t / Labels_split_ccn.t
blob936c883284b869e85d5987a47ad19ce3c36be3be
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 Test::More;
25 BEGIN {
26 our $ccns = {};
27 if ($ARGV[0]) {
28 BAIL_OUT("USAGE: perl Labels_split_ccn.t 'BIO JP2 R5c.1' 'BIO,JP2,R5c.1'") unless $ARGV[1];
29 $ccns = {$ARGV[0] => [split (/,/,$ARGV[1])],};
31 else {
32 $ccns = {
33 'BIO JP2 R5c.1' => [qw(BIO JP2 R5 c.1)],
34 'FIC GIR J5c.1' => [qw(FIC GIR J5 c.1)],
35 'J DAR G7c.11' => [qw( J DAR G7 c.11)],
36 'MP3-CD F PARKER' => [qw(MP3-CD F PARKER)],
39 my $test_num = 1;
40 foreach (keys(%$ccns)) {
41 my $split_num += scalar(@{$ccns->{$_}});
42 $test_num += 2 * $split_num;
43 $test_num += 4;
45 plan tests => $test_num;
46 use_ok('C4::Labels::Label');
47 use vars qw($ccns);
50 foreach my $ccn (sort keys %$ccns) {
51 my (@parts, @expected);
52 ok($ccn, "ddcn: $ccn");
53 ok(@expected = @{$ccns->{$ccn}}, "split expected to produce " . scalar(@expected) . " pieces");
54 ok(@parts = C4::Labels::Label::_split_ccn($ccn), "C4::Labels::Label::_split_ccn($ccn)");
55 ok(scalar(@expected) == scalar(@parts), sprintf("%d of %d pieces produced", scalar(@parts), scalar(@expected)));
56 my $i = 0;
57 foreach my $unit (@expected) {
58 my $part;
59 ok($part = $parts[$i], "($ccn)[$i] populated: " . (defined($part) ? $part : 'UNDEF'));
60 ok((defined($part) and $part eq $unit), "($ccn)[$i] matches: $unit");
61 $i++;