Bug 25855: (QA follow-up) Simplify payload
[koha.git] / t / db_dependent / Koha / Plugins / Circulation_hooks.t
blob54f21f390a4d43a17d65a33bf265a3ef744c8702
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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>.
17 use Modern::Perl;
19 use Test::More tests => 4;
20 use Test::MockModule;
21 use Test::Warn;
23 use File::Basename;
25 use C4::Circulation qw(AddIssue AddRenewal);
27 use t::lib::Mocks;
28 use t::lib::TestBuilder;
30 BEGIN {
31 # Mock pluginsdir before loading Plugins module
32 my $path = dirname(__FILE__) . '/../../../lib';
33 t::lib::Mocks::mock_config( 'pluginsdir', $path );
35 use_ok('Koha::Plugins');
36 use_ok('Koha::Plugins::Handler');
37 use_ok('Koha::Plugin::Test');
40 my $schema = Koha::Database->new->schema;
41 my $builder = t::lib::TestBuilder->new;
43 t::lib::Mocks::mock_config( 'enable_plugins', 1 );
45 subtest 'after_circ_action() hook tests' => sub {
47 plan tests => 1;
49 $schema->storage->txn_begin;
51 my $plugins = Koha::Plugins->new;
52 $plugins->InstallPlugins;
54 my $plugin = Koha::Plugin::Test->new->enable;
56 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
58 t::lib::Mocks::mock_userenv(
60 patron => $patron,
61 branchcode => $patron->branchcode
65 # Avoid testing useless warnings
66 my $test_plugin = Test::MockModule->new('Koha::Plugin::Test');
67 $test_plugin->mock( 'after_item_action', undef );
68 $test_plugin->mock( 'after_biblio_action', undef );
70 my $biblio = $builder->build_sample_biblio();
71 my $item = $builder->build_sample_item({ biblionumber => $biblio->biblionumber });
72 AddIssue( $patron->unblessed, $item->barcode );
74 warning_like { AddRenewal( $patron->borrowernumber, $item->id, $patron->branchcode ); }
75 qr/after_circ_action called with action: renewal, ref: Koha::Checkout/,
76 'AddRenewal calls the after_circ_action hook';
78 $schema->storage->txn_rollback;
79 Koha::Plugins::Methods->delete;