File Coverage

File:t/Labels_split_ddcn.t
Coverage:84.6%

linestmtbrancondsubtimecode
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 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.
9#
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.
13#
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
17#
18# for context, see http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2691
19
20
1
1
1
1.33283530840875e+15
19
41
use strict;
21
1
1
1
19
15
46
use warnings;
22
23
1
1
1
540
18812
45
use Test::More;
24
25BEGIN {
26
1
28
    our $ddcns = {};
27
1
27
    if ($ARGV[0]) {
28
0
0
        BAIL_OUT("USAGE: perl Labels_split_ddcn.t '621.3828 J28l' '621.3828,J28l'") unless $ARGV[1];
29
0
0
        $ddcns = {$ARGV[0] => [split (/,/,$ARGV[1])],};
30    }
31    else {
32
1
31
        $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
1
47
    my $test_num = 1;
39
1
25
    foreach (keys(%$ddcns)) {
40
3
3
55
54
        my $split_num += scalar(@{$ddcns->{$_}});
41
3
55
        $test_num += 2 * $split_num;
42
3
50
        $test_num += 4;
43    }
44
1
22
    plan tests => $test_num;
45
1
1084
    use_ok('C4::Labels::Label');
46
1
1
1
534
29
68
    use vars qw($ddcns);
47}
48
49
1
499881
foreach my $ddcn (sort keys %$ddcns) {
50
3
48
    my (@parts, @expected);
51
3
67
    ok($ddcn, "ddcn: $ddcn");
52
3
3
1728
89
    ok(@expected = @{$ddcns->{$ddcn}}, "split expected to produce " . scalar(@expected) . " pieces");
53
3
1463
    ok(@parts = C4::Labels::Label::_split_ddcn($ddcn), "C4::Labels::Label::_split_ddcn($ddcn)");
54
3
1403
    ok(scalar(@expected) == scalar(@parts), sprintf("%d of %d pieces produced", scalar(@parts), scalar(@expected)));
55
3
1320
    my $i = 0;
56
3
15
    foreach my $unit (@expected) {
57
11
33
        my $part;
58
11
118
        ok($part = $parts[$i], "($ddcn)[$i] populated: " . (defined($part) ? $part : 'UNDEF'));
59
11
5522
        ok((defined($part) and $part eq $unit), "($ddcn)[$i] matches: $unit");
60
11
4927
        $i++;
61    }
62}