File Coverage

File:t/Labels_split_ccn.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.33283530477507e+15
2
24
use strict;
21
1
1
1
4
1
31
use warnings;
22
23
1
1
1
214
18938
14
use Test::More;
24
25BEGIN {
26
1
2
    our $ccns = {};
27
1
4
    if ($ARGV[0]) {
28
0
0
        BAIL_OUT("USAGE: perl Labels_split_ccn.t 'BIO JP2 R5c.1' 'BIO,JP2,R5c.1'") unless $ARGV[1];
29
0
0
        $ccns = {$ARGV[0] => [split (/,/,$ARGV[1])],};
30    }
31    else {
32
1
37
        $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)],
37        };
38    }
39
1
124
    my $test_num = 1;
40
1
17
    foreach (keys(%$ccns)) {
41
4
4
4
5
        my $split_num += scalar(@{$ccns->{$_}});
42
4
6
        $test_num += 2 * $split_num;
43
4
5
        $test_num += 4;
44    }
45
1
30
    plan tests => $test_num;
46
1
1009
    use_ok('C4::Labels::Label');
47
1
1
1
619
1
43
    use vars qw($ccns);
48}
49
50
1
586267
foreach my $ccn (sort keys %$ccns) {
51
4
9
    my (@parts, @expected);
52
4
28
    ok($ccn, "ddcn: $ccn");
53
4
4
1769
45
    ok(@expected = @{$ccns->{$ccn}}, "split expected to produce " . scalar(@expected) . " pieces");
54
4
2173
    ok(@parts = C4::Labels::Label::_split_ccn($ccn), "C4::Labels::Label::_split_ccn($ccn)");
55
4
1754
    ok(scalar(@expected) == scalar(@parts), sprintf("%d of %d pieces produced", scalar(@parts), scalar(@expected)));
56
4
1489
    my $i = 0;
57
4
16
    foreach my $unit (@expected) {
58
15
27
        my $part;
59
15
139
        ok($part = $parts[$i], "($ccn)[$i] populated: " . (defined($part) ? $part : 'UNDEF'));
60
15
6147
        ok((defined($part) and $part eq $unit), "($ccn)[$i] matches: $unit");
61
15
6406
        $i++;
62    }
63}