| File: | t/Labels_split_lccn.t |
| Coverage: | 84.6% |
| line | stmt | bran | cond | sub | time | code |
|---|---|---|---|---|---|---|
| 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.33283531185077e+15 2 25 | use strict; | |||
| 21 | 1 1 1 | 4 1 30 | use warnings; | |||
| 22 | ||||||
| 23 | 1 1 1 | 221 18793 80 | use Test::More; | |||
| 24 | ||||||
| 25 | BEGIN { | |||||
| 26 | 1 | 43 | our $lccns = {}; | |||
| 27 | 1 | 41 | if ($ARGV[0]) { | |||
| 28 | 0 | 0 | BAIL_OUT("USAGE: perl Labels_split_lccn.t 'HE 8700.7 .P6 T44 1983' 'HE,8700.7,.P6,T44,1983'") unless $ARGV[1]; | |||
| 29 | 0 | 0 | $lccns = {$ARGV[0] => [split (/,/,$ARGV[1])],}; | |||
| 30 | } | |||||
| 31 | else { | |||||
| 32 | 1 | 50 | $lccns = { | |||
| 33 | 'HE8700.7 .P6T44 1983' => [qw(HE 8700.7 .P6 T44 1983)], | |||||
| 34 | 'BS2545.E8 H39 1996' => [qw(BS 2545 .E8 H39 1996)], | |||||
| 35 | 'NX512.S85 A4 2006' => [qw(NX 512 .S85 A4 2006)], | |||||
| 36 | }; | |||||
| 37 | } | |||||
| 38 | 1 | 10 | my $test_num = 1; | |||
| 39 | 1 | 4 | foreach (keys(%$lccns)) { | |||
| 40 | 3 3 | 3 4 | my $split_num += scalar(@{$lccns->{$_}}); | |||
| 41 | 3 | 4 | $test_num += 2 * $split_num; | |||
| 42 | 3 | 4 | $test_num += 4; | |||
| 43 | } | |||||
| 44 | 1 | 30 | plan tests => $test_num; | |||
| 45 | 1 | 1256 | use_ok('C4::Labels::Label'); | |||
| 46 | 1 1 1 | 532 52 90 | use vars qw($lccns); | |||
| 47 | } | |||||
| 48 | ||||||
| 49 | 1 | 503942 | foreach my $lccn (sort keys %$lccns) { | |||
| 50 | 3 | 34 | my (@parts, @expected); | |||
| 51 | 3 | 49 | ok($lccn, "lccn: $lccn"); | |||
| 52 | 3 3 | 1822 59 | ok(@expected = @{$lccns->{$lccn}}, "split expected to produce " . scalar(@expected) . " pieces"); | |||
| 53 | 3 | 1346 | ok(@parts = C4::Labels::Label::_split_lccn($lccn), "C4::Labels::Label::_split_lccn($lccn)"); | |||
| 54 | 3 | 994 | ok(scalar(@expected) == scalar(@parts), sprintf("%d of %d pieces produced", scalar(@parts), scalar(@expected))); | |||
| 55 | 3 | 1244 | my $i = 0; | |||
| 56 | 3 | 7 | foreach my $unit (@expected) { | |||
| 57 | 15 | 31 | my $part; | |||
| 58 | 15 | 135 | ok($part = $parts[$i], "($lccn)[$i] populated: " . (defined($part) ? $part : 'UNDEF')); | |||
| 59 | 15 | 6324 | ok((defined($part) and $part eq $unit), "($lccn)[$i] matches: $unit"); | |||
| 60 | 15 | 6631 | $i++; | |||
| 61 | } | |||||
| 62 | } | |||||
| 63 | ||||||