Bug 31351: (QA follow-up) Adjust tests accordingly
[koha.git] / t / db_dependent / Koha / BackgroundJobs / BatchUpdateBiblio.t
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
25 use Koha::Database;
26 use Koha::BackgroundJobs;
27 use Koha::BackgroundJob::BatchUpdateBiblio;
28 use Koha::Exception;
29 use t::lib::TestBuilder;
30
31 my $schema = Koha::Database->new->schema;
32
33 my $builder = t::lib::TestBuilder->new;
34
35 subtest "Exceptions must be stringified" => sub {
36     plan tests => 1;
37
38     $schema->storage->txn_begin;
39
40     my $C4_biblio_module = Test::MockModule->new('C4::Biblio');
41     $C4_biblio_module->mock( 'ModBiblio',
42         sub { Koha::Exception->throw("It didn't work"); } );
43
44     my $biblio = $builder->build_sample_biblio;
45     my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
46     my $job    = Koha::BackgroundJob::BatchUpdateBiblio->new(
47         {
48             status         => 'new',
49             size           => 1,
50             borrowernumber => $patron->borrowernumber,
51             type           => 'batch_biblio_record_modification',
52         }
53     );
54     my $data = $job->json->encode({ record_ids => [ $biblio->biblionumber ] });
55     $job->data( $data )->store;
56     $job = Koha::BackgroundJobs->find( $job->id );
57     $job->process(
58         { job_id => $job->id, record_ids => [ $biblio->biblionumber ] } );
59
60     $data = $job->json->decode( $job->get_from_storage->data );
61     is_deeply(
62         $data->{messages}->[0],
63         {
64             biblionumber => $biblio->biblionumber,
65             code         => 'biblio_not_modified',
66             error        => qq{Exception 'Koha::Exception' thrown 'It didn't work'\n},
67             type         => "error"
68         }
69     );
70
71     $schema->storage->txn_rollback;
72 };