Bugzilla – Attachment 130284 Details for
Bug 17385
Add custom export formats for bibliographic records
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17385: (QA follow-up) Do not needlessly scan biblioexport folder
Bug-17385-QA-follow-up-Do-not-needlessly-scan-bibl.patch (text/plain), 4.35 KB, created by
The Minh Luong
on 2022-02-08 13:29:26 UTC
(
hide
)
Description:
Bug 17385: (QA follow-up) Do not needlessly scan biblioexport folder
Filename:
MIME Type:
Creator:
The Minh Luong
Created:
2022-02-08 13:29:26 UTC
Size:
4.35 KB
patch
obsolete
>From 2bcbd06564ac2c182d57c57c7dfbc38d17c80ec9 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Fri, 22 Mar 2019 08:03:16 +0000 >Subject: [PATCH] Bug 17385: (QA follow-up) Do not needlessly scan biblioexport > folder > >Performance: We need to return an empty list if OpacExportOptions does not contain Custom. No need to scan the directory for custom files, if we are not using them at all. > >Note: The test only pertains to OPAC now, since the pref should not control intranet behavior. We have no intranet counterpart. See further next follow-up. > >Test plan: >Run t/db_dependent/XSLT.t >--- > C4/XSLT.pm | 48 +++++++++++++++++++++++++++++++++++++++++++ > t/db_dependent/XSLT.t | 31 +++++++++++----------------- > 2 files changed, 60 insertions(+), 19 deletions(-) > >diff --git a/C4/XSLT.pm b/C4/XSLT.pm >index a8edb76043..62cb127e2e 100644 >--- a/C4/XSLT.pm >+++ b/C4/XSLT.pm >@@ -463,6 +463,54 @@ sub engine { > return $engine; > } > >+=head2 CustomXSLTExportList >+ >+ Returns list of file for custom xslt conversion >+ >+=cut >+ >+sub CustomXSLTExportList { >+ my $opac = shift; # opac (1) vs intranet (0) >+ return [] if $opac && C4::Context->preference('OpacExportOptions') !~ /custom/; >+ >+ my @tabFiles; >+ >+ my $dir = C4::Context->config( $opac ? 'opachtdocs' : 'intrahtdocs') . >+ '/' . C4::Context->preference( $opac ? "opacthemes" : "template") . >+ '/' . C4::Languages::getlanguage() . >+ '/xslt/biblioexport'; >+ my @files = glob qq("$dir/*.xsl"); >+ foreach my $file (@files) { >+ if ( -f "$file" ) { >+ (my $text = $file) =~ s/.*\///g; >+ >+ ## Get title of the option >+ my $dom; >+ eval { $dom = XML::LibXML->load_xml( location => $file ); }; >+ next unless $dom; >+ >+ my $node = $dom->documentElement(); >+ my $title = $node->{"title"}; >+ ($title = $text) =~ s/\.xsl// unless defined $title; >+ >+ # Get output format >+ # There should only be one xsl:output node, so taking the first one only is OK >+ $node = @{$node->findnodes("xsl:output")}[0]; >+ my $outputformat= ""; >+ $outputformat = $node->{"method"} if $node; >+ $outputformat = "txt" if ($outputformat eq "" || $outputformat eq "text"); >+ >+ my %row = ( >+ value => $text, >+ filename => $title, >+ format => $outputformat, >+ ); >+ >+ push @tabFiles, \%row; >+ } >+ } >+ return \@tabFiles; >+} > 1; > > __END__ >diff --git a/t/db_dependent/XSLT.t b/t/db_dependent/XSLT.t >index a92133e5d7..2e3d01fbb0 100755 >--- a/t/db_dependent/XSLT.t >+++ b/t/db_dependent/XSLT.t >@@ -1,20 +1,3 @@ >-#!/usr/bin/perl >- >-# This file is part of Koha. >-# >-# Koha is free software; you can redistribute it and/or modify it >-# under the terms of the GNU General Public License as published by >-# the Free Software Foundation; either version 3 of the License, or >-# (at your option) any later version. >-# >-# Koha is distributed in the hope that it will be useful, but >-# WITHOUT ANY WARRANTY; without even the implied warranty of >-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >-# GNU General Public License for more details. >-# >-# You should have received a copy of the GNU General Public License >-# along with Koha; if not, see <http://www.gnu.org/licenses>. >- > use Modern::Perl; > > use MARC::Record; >@@ -26,15 +9,25 @@ use t::lib::Mocks; > use Koha::Database; > use Koha::Libraries; > use Koha::ItemTypes; >+use C4::XSLT; > > BEGIN { > use_ok('C4::XSLT', qw( transformMARCXML4XSLT getAuthorisedValues4MARCSubfields buildKohaItemsNamespace )); > } > >-my $schema = Koha::Database->new->schema; >-my $builder = t::lib::TestBuilder->new; >+our $schema = Koha::Database->new->schema; > >+# Here we go > $schema->storage->txn_begin; >+subtest 'CustomXSLTExportList: Check export options' => sub { >+ plan tests => 2; >+ t::lib::Mocks::mock_preference('OpacExportOptions', 'custom'); >+ my $list = C4::XSLT::CustomXSLTExportList(1); >+ is( @$list>0, 1, 'We expect at least one result: simple export' ); >+ t::lib::Mocks::mock_preference('OpacExportOptions', 'dc'); >+ $list = C4::XSLT::CustomXSLTExportList(1); >+ is( @$list, 0, 'We expect an empty list now' ); >+}; > > subtest 'transformMARCXML4XSLT tests' => sub { > plan tests => 1; >-- >2.25.1
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 17385
:
55961
|
58308
|
64033
|
64034
|
67357
|
67579
|
74660
|
74661
|
79055
|
79056
|
80675
|
81385
|
81386
|
84388
|
84389
|
84390
|
86875
|
86876
|
86877
|
86878
|
86879
|
86880
|
97076
|
97101
|
97102
|
97103
|
97104
|
97105
|
100289
|
100290
|
100291
|
100292
|
100293
|
100663
|
100670
|
100671
|
100672
|
100673
|
100674
|
100675
|
112671
|
112672
|
112673
|
112674
|
112675
|
112676
|
112677
|
112678
|
112679
|
112680
|
112681
|
112682
|
112956
|
112957
|
112958
|
112959
|
130283
|
130284
|
130285
|
130286
|
130287
|
130691
|
130692
|
130693
|
130694
|
130695
|
131492
|
132488
|
132489
|
132490
|
132491
|
132492
|
132493
|
132581
|
133498
|
133499
|
133500
|
133501
|
133502
|
133503
|
133504
|
138031
|
138032
|
138033
|
138034
|
138035
|
138036
|
138037
|
138082
|
138083
|
138084
|
138085
|
138086
|
138087
|
138088
|
138132
|
139277
|
139278
|
139279
|
139280
|
139281
|
139282
|
139283
|
139284
|
141157
|
141158
|
141159
|
141160
|
141161
|
141162
|
141163
|
141164
|
144335
|
144336
|
144380
|
144384
|
151095
|
151096
|
151097
|
151098
|
151099
|
151102
|
151103
|
151104
|
151105
|
151106
|
151377
|
151378
|
151379
|
151380
|
151381
|
154379
|
154380
|
154381
|
154382
|
154383
|
156815
|
156816
|
156817
|
156818
|
156819
|
159142
|
159143
|
159144
|
159145
|
159146
|
159147
|
159148
|
163623
|
170014
|
170015
|
170016
|
170017
|
170018
|
170019
|
170026
|
170027
|
170028
|
170029
|
170030
|
170031
|
170983
|
170984
|
170985
|
170986
|
170987
|
170988