Bug 12858: Add error handling to Syndetics Index
[koha.git] / t / Labels_split_ddcn.t
blobde119b7a4107b6d62708c62e4a42dadc4b6a67c9
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
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 $ddcns = {};
27 if ($ARGV[0]) {
28 BAIL_OUT("USAGE: perl Labels_split_ddcn.t '621.3828 J28l' '621.3828,J28l'") unless $ARGV[1];
29 $ddcns = {$ARGV[0] => [split (/,/,$ARGV[1])],};
31 else {
32 $ddcns = {
33 'R220.3 H2793Z H32 c.2' => [qw(R 220.3 H2793Z H32 c.2)],
34 'CD-ROM 787.87 EAS' => [qw(CD-ROM 787.87 EAS)],
35 '252.051 T147 v.1-2' => [qw(252.051 T147 v.1-2)],
38 my $test_num = 1;
39 foreach (keys(%$ddcns)) {
40 my $split_num += scalar(@{$ddcns->{$_}});
41 $test_num += 2 * $split_num;
42 $test_num += 4;
44 plan tests => $test_num;
45 use_ok('C4::Labels::Label');
46 use vars qw($ddcns);
49 foreach my $ddcn (sort keys %$ddcns) {
50 my (@parts, @expected);
51 ok($ddcn, "ddcn: $ddcn");
52 ok(@expected = @{$ddcns->{$ddcn}}, "split expected to produce " . scalar(@expected) . " pieces");
53 ok(@parts = C4::Labels::Label::_split_ddcn($ddcn), "C4::Labels::Label::_split_ddcn($ddcn)");
54 ok(scalar(@expected) == scalar(@parts), sprintf("%d of %d pieces produced", scalar(@parts), scalar(@expected)));
55 my $i = 0;
56 foreach my $unit (@expected) {
57 my $part;
58 ok($part = $parts[$i], "($ddcn)[$i] populated: " . (defined($part) ? $part : 'UNDEF'));
59 ok((defined($part) and $part eq $unit), "($ddcn)[$i] matches: $unit");
60 $i++;