View | Details | Raw Unified | Return to bug 39092
Collapse All | Expand All

(-)a/t/db_dependent/Koha/Plugins/ILL/Backends.t (+65 lines)
Line 0 Link Here
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 3 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
15
# with Koha; if not, see <http://www.gnu.org/licenses>.
16
17
use Modern::Perl;
18
use File::Basename;
19
use Test::More tests => 4;
20
21
use t::lib::Mocks;
22
use t::lib::TestBuilder;
23
24
use Koha::Database;
25
26
BEGIN {
27
    # Mock pluginsdir before loading Plugins module
28
    my $path = dirname(__FILE__) . '/../../../../lib/plugins';
29
    t::lib::Mocks::mock_config( 'pluginsdir', $path );
30
31
    use_ok('Koha::Plugins');
32
    use_ok('Koha::Plugins::Handler');
33
    use_ok('Koha::Plugin::Test');
34
}
35
36
my $schema  = Koha::Database->new->schema;
37
my $builder = t::lib::TestBuilder->new;
38
39
t::lib::Mocks::mock_config( 'enable_plugins', 1 );
40
41
subtest 'get_backend_plugin(), new_ill_backend() and load_backend() tests' => sub {
42
43
    plan tests => 6;
44
45
    $schema->storage->txn_begin;
46
47
    my $plugins = Koha::Plugins->new;
48
    $plugins->InstallPlugins;
49
50
    my $plugin = Koha::ILL::Request->new->get_backend_plugin('Test Plugin');
51
52
    is( ref($plugin), 'Koha::Plugin::Test', 'Returns our Test Plugin which implements the Test Plugin backend' );
53
    my $backend = $plugin->new_ill_backend();
54
    is( ref($backend), 'Koha::Plugin::Test::ILLBackend', 'Returns the right object class' );
55
56
    my $request = Koha::ILL::Request->new->load_backend('Test Plugin');
57
    ok( $request->{plugin}, 'Instantiated plugin stored for later use' );
58
    is( ref( $request->{plugin} ), 'Koha::Plugin::Test', 'Class is correct' );
59
60
    ok( $request->{_my_backend}, 'Instantiated backend stored for later use' );
61
    is( ref( $request->{_my_backend} ), 'Koha::Plugin::Test::ILLBackend', 'Returns the right object class' );
62
63
    Koha::Plugins::Methods->delete;
64
    $schema->storage->txn_rollback;
65
};
(-)a/t/lib/plugins/Koha/Plugin/Test.pm (+12 lines)
Lines 9-14 use Koha::Plugins::Tab; Link Here
9
use MARC::Field;
9
use MARC::Field;
10
use Mojo::JSON qw( decode_json );
10
use Mojo::JSON qw( decode_json );
11
11
12
use Koha::Plugin::Test::ILLBackend;
13
12
use t::lib::TestBuilder;
14
use t::lib::TestBuilder;
13
15
14
## Required for all plugins
16
## Required for all plugins
Lines 448-453 sub auth_client_get_user { Link Here
448
    return;
450
    return;
449
}
451
}
450
452
453
sub ill_backend {
454
    my ($self) = @_;
455
    return 'Test Plugin';
456
}
457
458
sub new_ill_backend {
459
    my ( $self, $args ) = @_;
460
    return Koha::Plugin::Test::ILLBackend->new($args);
461
}
462
451
sub _private_sub {
463
sub _private_sub {
452
    return "";
464
    return "";
453
}
465
}
(-)a/t/lib/plugins/Koha/Plugin/Test/ILLBackend.pm (-1 / +42 lines)
Line 0 Link Here
0
- 
1
package Koha::Plugin::Test::ILLBackend;
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 3 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
15
# with Koha; if not, see <http://www.gnu.org/licenses>.
16
17
use Modern::Perl;
18
19
=head1 NAME
20
21
Koha::Plugin::Test::ILLBackend - Dummy ILL backend class
22
23
=head1 API
24
25
=head2 Class methods
26
27
=head3 new
28
29
    my $backend = Koha::Plugin::Test::ILLBackend->new;
30
31
Constructor.
32
33
=cut
34
35
sub new {
36
    my ( $class, $args ) = @_;
37
    my $self = \$args;
38
    bless( $self, $class );
39
    return $self;
40
}
41
42
1;

Return to bug 39092