Line 0
Link Here
|
0 |
- |
1 |
#!/usr/bin/perl |
|
|
2 |
|
3 |
# Copyright 2021 Koha Development team |
4 |
# |
5 |
# This file is part of Koha |
6 |
# |
7 |
# Koha is free software; you can redistribute it and/or modify it |
8 |
# under the terms of the GNU General Public License as published by |
9 |
# the Free Software Foundation; either version 3 of the License, or |
10 |
# (at your option) any later version. |
11 |
# |
12 |
# Koha is distributed in the hope that it will be useful, but |
13 |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
14 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 |
# GNU General Public License for more details. |
16 |
# |
17 |
# You should have received a copy of the GNU General Public License |
18 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
19 |
|
20 |
use Modern::Perl; |
21 |
|
22 |
use Test::More tests => 1; |
23 |
use Test::MockModule; |
24 |
use JSON qw( encode_json decode_json ); |
25 |
|
26 |
use Koha::Database; |
27 |
use Koha::BackgroundJobs; |
28 |
use t::lib::TestBuilder; |
29 |
|
30 |
my $schema = Koha::Database->new->schema; |
31 |
|
32 |
my $builder = t::lib::TestBuilder->new; |
33 |
|
34 |
subtest "Exceptions must be stringified" => sub { |
35 |
plan tests => 1; |
36 |
|
37 |
$schema->storage->txn_begin; |
38 |
|
39 |
my $C4_biblio_module = Test::MockModule->new('C4::Biblio'); |
40 |
$C4_biblio_module->mock( 'ModBiblio', |
41 |
sub { Koha::Exceptions::Exception->throw("It didn't work"); } ); |
42 |
|
43 |
my $biblio = $builder->build_sample_biblio; |
44 |
my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); |
45 |
my $job = Koha::BackgroundJob::BatchUpdateBiblio->new( |
46 |
{ |
47 |
status => 'new', |
48 |
size => 1, |
49 |
borrowernumber => $patron->borrowernumber, |
50 |
type => 'batch_biblio_record_modification', |
51 |
data => encode_json { |
52 |
record_ids => [ $biblio->biblionumber ], |
53 |
} |
54 |
} |
55 |
)->store; |
56 |
$job = Koha::BackgroundJobs->find( $job->id ); |
57 |
$job->process( |
58 |
{ job_id => $job->id, record_ids => [ $biblio->biblionumber ] } ); |
59 |
|
60 |
my $data = decode_json $job->get_from_storage->data; |
61 |
is_deeply( |
62 |
$data->{messages}->[0], |
63 |
{ |
64 |
biblionumber => $biblio->biblionumber, |
65 |
code => 'biblio_not_modified', |
66 |
error => "It didn't work", |
67 |
type => "error" |
68 |
} |
69 |
); |
70 |
|
71 |
$schema->storage->txn_rollback; |
72 |
}; |