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

(-)a/t/db_dependent/Koha/Plugins/Biblio_and_Items_plugin_hooks.t (-1 / +72 lines)
Lines 17-24 Link Here
17
use Modern::Perl;
17
use Modern::Perl;
18
18
19
use Test::NoWarnings;
19
use Test::NoWarnings;
20
use Test::More tests => 7;
20
use Test::More tests => 11;
21
use Test::Warn;
21
use Test::Warn;
22
use JSON qw( decode_json );
22
23
23
use File::Basename;
24
use File::Basename;
24
25
Lines 38-43 BEGIN { Link Here
38
    use_ok('Koha::Plugins');
39
    use_ok('Koha::Plugins');
39
    use_ok('Koha::Plugins::Handler');
40
    use_ok('Koha::Plugins::Handler');
40
    use_ok('Koha::Plugin::Test');
41
    use_ok('Koha::Plugin::Test');
42
43
    use_ok('Koha::BackgroundJobs');
44
    use_ok('Koha::BackgroundJob::MARCImportCommitBatch');
45
    use_ok('Koha::BackgroundJob::StageMARCForImport');
41
}
46
}
42
47
43
my $schema  = Koha::Database->new->schema;
48
my $schema  = Koha::Database->new->schema;
Lines 190-192 subtest 'elasticsearch_to_document() hooks tests' => sub { Link Here
190
    Koha::Plugins->RemovePlugins;
195
    Koha::Plugins->RemovePlugins;
191
    $schema->storage->txn_rollback;
196
    $schema->storage->txn_rollback;
192
};
197
};
198
199
subtest 'before_batch_action() and after_batch_action() hooks tests' => sub {
200
201
    plan tests => 1;
202
203
    $schema->storage->txn_begin;
204
205
    my $plugins = Koha::Plugins->new;
206
    $plugins->InstallPlugins;
207
208
    my $plugin = Koha::Plugin::Test->new->enable;
209
210
    my $test_plugin3 = Test::MockModule->new('Koha::Plugin::Test');
211
    $test_plugin3->mock( 'item_barcode_transform', undef );
212
    $test_plugin3->mock( 'after_item_action',      undef );
213
214
    my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
215
    my $job = Koha::BackgroundJob::StageMARCForImport->new(
216
        {
217
            status         => 'new',
218
            size           => 1,
219
            borrowernumber => $patron->borrowernumber,
220
            type           => 'stage_marc_for_import',
221
        }
222
    )->store;
223
    $job = Koha::BackgroundJobs->find( $job->id );
224
    $job->process(
225
        {
226
            job_id      => $job->id,
227
            record_type => 'biblio',
228
            encoding    => 'UTF-8',
229
            format      => 'ISO2709',
230
            filepath    => 't/db_dependent/data/marc21/zebraexport/biblio/exported_records',
231
            filename    => 'some_records',
232
            parse_items => 1,
233
        }
234
    );
235
236
    my $report = decode_json($job->get_from_storage->data)->{report};
237
    my $import_batch_id = $report->{import_batch_id};
238
239
    my $job2 = Koha::BackgroundJob::MARCImportCommitBatch->new(
240
        {
241
            status         => 'new',
242
            size           => 1,
243
            borrowernumber => $patron->borrowernumber,
244
            type           => 'marc_import_commit_batch'
245
        }
246
    )->store;
247
    $job2 = Koha::BackgroundJobs->find( $job2->id );
248
249
    warning_like {
250
        $job2->process(
251
            {
252
                job_id          => $job2->id,
253
                import_batch_id => $import_batch_id,
254
                frameworkcode   => q{},
255
            }
256
        );
257
    } qr/after_batch_action called with addBiblio count: 178/,
258
        'MARCImportCommitBatch calls the after_batch_action hook';
259
260
    Koha::Plugins->RemovePlugins;
261
    $schema->storage->txn_rollback;
262
263
};
(-)a/t/lib/plugins/Koha/Plugin/Test.pm (-2 / +21 lines)
Lines 174-186 sub before_biblio_action { Link Here
174
    return $record;
174
    return $record;
175
}
175
}
176
176
177
my $is_batch = 0;
178
my @addBiblio;
177
sub after_biblio_action {
179
sub after_biblio_action {
178
    my ( $self, $params ) = @_;
180
    my ( $self, $params ) = @_;
179
    my $action    = $params->{action} // '';
181
    my $action    = $params->{action} // '';
180
    my $biblio    = $params->{biblio};
182
    my $biblio    = $params->{biblio};
181
    my $biblio_id = $params->{biblio_id};
183
    my $biblio_id = $params->{biblio_id};
182
184
183
    if ( $action ne 'delete' ) {
185
    if ($is_batch) {
186
        if ( $action eq 'create' ) {
187
            push @addBiblio, $biblio_id;
188
        }
189
    } elsif ( $action ne 'delete' ) {
184
        Koha::Exception->throw( "after_biblio_action called with action: $action, ref: " . ref($biblio) );
190
        Koha::Exception->throw( "after_biblio_action called with action: $action, ref: " . ref($biblio) );
185
    } else {
191
    } else {
186
        Koha::Exception->throw("after_biblio_action called with action: $action, id: $biblio_id") if $biblio_id;
192
        Koha::Exception->throw("after_biblio_action called with action: $action, id: $biblio_id") if $biblio_id;
Lines 389-394 sub after_recall_action { Link Here
389
    Koha::Exception->throw( "after_recall_action called with action: $action, ref: " . ref($recall) );
395
    Koha::Exception->throw( "after_recall_action called with action: $action, ref: " . ref($recall) );
390
}
396
}
391
397
398
sub before_batch_action {
399
    my ( $self ) = @_;
400
    $is_batch = 1;
401
}
402
403
sub after_batch_action {
404
    my ( $self ) = @_;
405
    $is_batch = 0;
406
407
    if (@addBiblio) {
408
        Koha::Exception->throw("after_batch_action called with addBiblio count: " . scalar(@addBiblio));
409
    }
410
}
411
392
sub template_include_paths {
412
sub template_include_paths {
393
    my ($self) = @_;
413
    my ($self) = @_;
394
414
395
- 

Return to bug 39156