Bug 15128 - (QA Followup) Fix use of 'my' variable causing loss of data
[koha.git] / t / Labels_split_ddcn.t
1 #!/usr/bin/perl
2 #
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17 #
18 # for context, see http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2691
19
20 use strict;
21 use warnings;
22
23 use Test::More;
24
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])],};
30     }
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)],
36         };
37     }
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;
43     }
44     plan tests => $test_num;
45     use_ok('C4::Labels::Label');
46     use vars qw($ddcns);
47 }
48
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++;
61     }
62 }