From 8089e74dc805b365236741c463e9f979d0ea77c9 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 25 Feb 2022 06:40:17 -0300 Subject: [PATCH] Bug 30181: Regression tests Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Koha/BackgroundJob.t | 58 +++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100755 t/db_dependent/Koha/BackgroundJob.t diff --git a/t/db_dependent/Koha/BackgroundJob.t b/t/db_dependent/Koha/BackgroundJob.t new file mode 100755 index 0000000000..7dcabcbcda --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob.t @@ -0,0 +1,58 @@ +#!/usr/bin/perl + +# This file is part of Koha +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use Test::More tests => 1; + +use Koha::Database; +use Koha::BackgroundJobs; + +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest '_derived_class() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $mapping = Koha::BackgroundJob::type_to_class_mapping; + + # pick the first + my $type = ( keys %{$mapping} )[0]; + + my $job = $builder->build_object( + { class => 'Koha::BackgroundJobs', + value => { type => $type, data => 'Foo' } + } + ); + + my $derived = $job->_derived_class; + + is( ref($derived), $mapping->{$type}, 'Job object class is correct' ); + ok( $derived->in_storage, 'The object is correctly marked as in storage' ); + + $derived->data('Bar')->store->discard_changes; + $job->discard_changes; + + is_deeply( $job->unblessed, $derived->unblessed, '_derived_class object refers to the same DB object and can be manipulated as expected' ); + + $schema->storage->txn_rollback; +}; -- 2.35.1