Bugzilla – Attachment 56955 Details for
Bug 14629
Add aggressive ISSN matching feature equivalent to the aggressive ISBN matcher
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14629 - [QA Followup] Pass invalid ISSN through GetVariationsOfISSN
Bug-14629---QA-Followup-Pass-invalid-ISSN-through-.patch (text/plain), 2.54 KB, created by
Marcel de Rooy
on 2016-10-28 10:35:59 UTC
(
hide
)
Description:
Bug 14629 - [QA Followup] Pass invalid ISSN through GetVariationsOfISSN
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2016-10-28 10:35:59 UTC
Size:
2.54 KB
patch
obsolete
>From d6894040dbcc1a46e56cf36bbf786cf44bd579ac Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 31 Dec 2015 16:00:10 +0000 >Subject: [PATCH] Bug 14629 - [QA Followup] Pass invalid ISSN through > GetVariationsOfISSN >Content-Type: text/plain; charset=utf-8 > >This is an optional follow up depending on community opinion. > >While copying over the code form the ISBN portion I noticed that with >aggressive matching enabled invalid ISBNs (and hence ISSNs) were being >stripped from the record. > >I think in the case of a library exporting records, making changes, and >reimporting they would expect to get a match on ISSN or ISBN whether or >not the number is valid. > >This patch changes the subroutine to return the original ISSN in the >case of it being invalid. > >To test: >With first patch only export a record with an invalid ISSN and reimport >with AggressiveMatchOnISSN enabled and match on ISSN - you should not get a match >Apply this patch >reimport the file and you should find a match. > >Signed-off-by: Chad Roseburg <croseburg@ncrl.org> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > C4/Koha.pm | 7 +++++-- > t/Koha.t | 5 +++-- > 2 files changed, 8 insertions(+), 4 deletions(-) > >diff --git a/C4/Koha.pm b/C4/Koha.pm >index 3b99029..1b2164d 100644 >--- a/C4/Koha.pm >+++ b/C4/Koha.pm >@@ -1396,8 +1396,11 @@ sub GetVariationsOfISSN { > > my @issns; > >- push( @issns, NormalizeISSN({ issn => $issn }) ); >- push( @issns, NormalizeISSN({ issn => $issn, strip_hyphen => 1 }) ); >+ if( NormalizeISSN({issn => $issn}) ){ >+ push( @issns, NormalizeISSN({ issn => $issn }) ); >+ push( @issns, NormalizeISSN({ issn => $issn, strip_hyphen => 1 }) ); >+ } >+ else { push( @issns, $issn) } > > # Strip out any "empty" strings from the array > @issns = grep { defined($_) && $_ =~ /\S/ } @issns; >diff --git a/t/Koha.t b/t/Koha.t >index 500dcb5..e617146 100755 >--- a/t/Koha.t >+++ b/t/Koha.t >@@ -25,7 +25,7 @@ use Module::Load::Conditional qw/check_install/; > > BEGIN { > if ( check_install( module => 'Test::DBIx::Class' ) ) { >- plan tests => 37; >+ plan tests => 38; > } else { > plan skip_all => "Need Test::DBIx::Class" > } >@@ -152,6 +152,7 @@ eval { > ok($@ eq '', 'NormalizeISSN does not throw exception when parsing invalid ISSN'); > > @issns = GetVariationsOfISSNs('abc'); >-is(scalar(@issns), 0, 'zero variations returned of invalid ISSN'); >+is($issns[0], 'abc', 'Original ISSN passed through even if invalid'); >+is(scalar(@issns), 1, 'zero additional variations returned of invalid ISSN'); > > 1; >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 14629
:
46102
|
46159
|
46440
|
48509
|
48510
|
48513
|
48514
|
48793
|
48794
|
51028
|
51029
|
54280
|
56954
| 56955 |
56956
|
56957