Bugzilla – Attachment 177735 Details for
Bug 39092
When loading an ILL backend plugin it should be cached
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39092: Unit tests
Bug-39092-Unit-tests.patch (text/plain), 4.96 KB, created by
Tomás Cohen Arazi (tcohen)
on 2025-02-11 15:17:34 UTC
(
hide
)
Description:
Bug 39092: Unit tests
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2025-02-11 15:17:34 UTC
Size:
4.96 KB
patch
obsolete
>From 0782b62a8931e0c656482d8f604eef7c953971be Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 11 Feb 2025 11:02:37 -0300 >Subject: [PATCH] Bug 39092: Unit tests > >--- > t/db_dependent/Koha/Plugins/ILL/Backends.t | 65 ++++++++++++++++++++ > t/lib/plugins/Koha/Plugin/Test.pm | 12 ++++ > t/lib/plugins/Koha/Plugin/Test/ILLBackend.pm | 42 +++++++++++++ > 3 files changed, 119 insertions(+) > create mode 100755 t/db_dependent/Koha/Plugins/ILL/Backends.t > create mode 100644 t/lib/plugins/Koha/Plugin/Test/ILLBackend.pm > >diff --git a/t/db_dependent/Koha/Plugins/ILL/Backends.t b/t/db_dependent/Koha/Plugins/ILL/Backends.t >new file mode 100755 >index 00000000000..6ad4c44849f >--- /dev/null >+++ b/t/db_dependent/Koha/Plugins/ILL/Backends.t >@@ -0,0 +1,65 @@ >+#!/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 File::Basename; >+use Test::More tests => 4; >+ >+use t::lib::Mocks; >+use t::lib::TestBuilder; >+ >+use Koha::Database; >+ >+BEGIN { >+ # Mock pluginsdir before loading Plugins module >+ my $path = dirname(__FILE__) . '/../../../../lib/plugins'; >+ t::lib::Mocks::mock_config( 'pluginsdir', $path ); >+ >+ use_ok('Koha::Plugins'); >+ use_ok('Koha::Plugins::Handler'); >+ use_ok('Koha::Plugin::Test'); >+} >+ >+my $schema = Koha::Database->new->schema; >+my $builder = t::lib::TestBuilder->new; >+ >+t::lib::Mocks::mock_config( 'enable_plugins', 1 ); >+ >+subtest 'get_backend_plugin(), new_ill_backend() and load_backend() tests' => sub { >+ >+ plan tests => 6; >+ >+ $schema->storage->txn_begin; >+ >+ my $plugins = Koha::Plugins->new; >+ $plugins->InstallPlugins; >+ >+ my $plugin = Koha::ILL::Request->new->get_backend_plugin('Test Plugin'); >+ >+ is( ref($plugin), 'Koha::Plugin::Test', 'Returns our Test Plugin which implements the Test Plugin backend' ); >+ my $backend = $plugin->new_ill_backend(); >+ is( ref($backend), 'Koha::Plugin::Test::ILLBackend', 'Returns the right object class' ); >+ >+ my $request = Koha::ILL::Request->new->load_backend('Test Plugin'); >+ ok( $request->{plugin}, 'Instantiated plugin stored for later use' ); >+ is( ref( $request->{plugin} ), 'Koha::Plugin::Test', 'Class is correct' ); >+ >+ ok( $request->{_my_backend}, 'Instantiated backend stored for later use' ); >+ is( ref( $request->{_my_backend} ), 'Koha::Plugin::Test::ILLBackend', 'Returns the right object class' ); >+ >+ Koha::Plugins::Methods->delete; >+ $schema->storage->txn_rollback; >+}; >diff --git a/t/lib/plugins/Koha/Plugin/Test.pm b/t/lib/plugins/Koha/Plugin/Test.pm >index 970c4ec7b6b..7b9a5106b67 100644 >--- a/t/lib/plugins/Koha/Plugin/Test.pm >+++ b/t/lib/plugins/Koha/Plugin/Test.pm >@@ -9,6 +9,8 @@ use Koha::Plugins::Tab; > use MARC::Field; > use Mojo::JSON qw( decode_json ); > >+use Koha::Plugin::Test::ILLBackend; >+ > use t::lib::TestBuilder; > > ## Required for all plugins >@@ -448,6 +450,16 @@ sub auth_client_get_user { > return; > } > >+sub ill_backend { >+ my ($self) = @_; >+ return 'Test Plugin'; >+} >+ >+sub new_ill_backend { >+ my ( $self, $args ) = @_; >+ return Koha::Plugin::Test::ILLBackend->new($args); >+} >+ > sub _private_sub { > return ""; > } >diff --git a/t/lib/plugins/Koha/Plugin/Test/ILLBackend.pm b/t/lib/plugins/Koha/Plugin/Test/ILLBackend.pm >new file mode 100644 >index 00000000000..e172109173a >--- /dev/null >+++ b/t/lib/plugins/Koha/Plugin/Test/ILLBackend.pm >@@ -0,0 +1,42 @@ >+package Koha::Plugin::Test::ILLBackend; >+ >+# 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; >+ >+=head1 NAME >+ >+Koha::Plugin::Test::ILLBackend - Dummy ILL backend class >+ >+=head1 API >+ >+=head2 Class methods >+ >+=head3 new >+ >+ my $backend = Koha::Plugin::Test::ILLBackend->new; >+ >+Constructor. >+ >+=cut >+ >+sub new { >+ my ( $class, $args ) = @_; >+ my $self = \$args; >+ bless( $self, $class ); >+ return $self; >+} >+ >+1; >-- >2.48.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 39092
: 177735 |
177736
|
177737
|
177738