Bugzilla – Attachment 160808 Details for
Bug 35536
Improve removal of Koha plugins in unit tests
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35536: Remove last two references to resultset PluginData
Bug-35536-Remove-last-two-references-to-resultset-.patch (text/plain), 1.95 KB, created by
Marcel de Rooy
on 2024-01-11 08:20:44 UTC
(
hide
)
Description:
Bug 35536: Remove last two references to resultset PluginData
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2024-01-11 08:20:44 UTC
Size:
1.95 KB
patch
obsolete
>From b3d2cdac408d91438c5057b1c565c64e052b07b3 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Tue, 19 Dec 2023 15:29:35 +0000 >Subject: [PATCH] Bug 35536: Remove last two references to resultset PluginData >Content-Type: text/plain; charset=utf-8 > >Test plan: >Run t/db_dependent/Koha/Plugins/Plugins.t >--- > Koha/Plugins.pm | 5 ++--- > t/db_dependent/Koha/Plugins/Plugins.t | 4 +--- > 2 files changed, 3 insertions(+), 6 deletions(-) > >diff --git a/Koha/Plugins.pm b/Koha/Plugins.pm >index cd08953515..d93e9fe40f 100644 >--- a/Koha/Plugins.pm >+++ b/Koha/Plugins.pm >@@ -121,9 +121,8 @@ sub get_enabled_plugins { > > my @plugin_classes; > try { >- my $rs = Koha::Database->schema->resultset('PluginData'); >- $rs = $rs->search({ plugin_key => '__ENABLED__', plugin_value => 1 }); >- @plugin_classes = $rs->get_column('plugin_class')->all(); >+ my $rs = Koha::Plugins::Datas->search({ plugin_key => '__ENABLED__', plugin_value => 1 }); >+ @plugin_classes = $rs->get_column('plugin_class'); > } catch { > warn "$_"; > }; >diff --git a/t/db_dependent/Koha/Plugins/Plugins.t b/t/db_dependent/Koha/Plugins/Plugins.t >index 53ef4f9a31..1dcd8578b1 100755 >--- a/t/db_dependent/Koha/Plugins/Plugins.t >+++ b/t/db_dependent/Koha/Plugins/Plugins.t >@@ -194,9 +194,7 @@ subtest 'Version upgrade tests' => sub { > my $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } ); > > # make sure there's no version on the DB >- $schema->resultset('PluginData') >- ->search( { plugin_class => $plugin->{class}, plugin_key => '__INSTALLED_VERSION__' } ) >- ->delete; >+ Koha::Plugins::Datas->search( { plugin_class => $plugin->{class}, plugin_key => '__INSTALLED_VERSION__' } )->delete; > > $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } ); > my $version = $plugin->retrieve_data('__INSTALLED_VERSION__'); >-- >2.30.2
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 35536
:
159804
|
159820
|
159821
|
159822
|
159823
|
159824
|
159825
|
159830
|
159839
|
159840
|
159841
|
159842
|
159843
|
159844
|
160024
|
160025
|
160026
|
160027
|
160028
|
160029
|
160030
|
160031
|
160032
|
160801
|
160802
|
160803
|
160804
|
160805
|
160806
|
160807
|
160808
|
160809
|
160817
|
160818
|
160819
|
160820
|
160821
|
160822
|
160823
|
160824
|
160825
|
160881
|
160882
|
160883
|
160884
|
160885
|
160886
|
160887
|
160888
|
160889
|
163701
|
163797