Bugzilla – Attachment 131105 Details for
Bug 30181
Koha::BackgroundJob->_derived_class returns an empty object
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30181: Regression tests
Bug-30181-Regression-tests.patch (text/plain), 2.34 KB, created by
Tomás Cohen Arazi (tcohen)
on 2022-02-25 09:46:55 UTC
(
hide
)
Description:
Bug 30181: Regression tests
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2022-02-25 09:46:55 UTC
Size:
2.34 KB
patch
obsolete
>From 8089e74dc805b365236741c463e9f979d0ea77c9 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Fri, 25 Feb 2022 06:40:17 -0300 >Subject: [PATCH] Bug 30181: Regression tests > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > 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 <http://www.gnu.org/licenses>. >+ >+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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 30181
:
131105
|
131106
|
131107
|
131322
|
131323
|
131324
|
131325
|
131799
|
131800
|
131801
|
131802
|
131845
|
131846
|
131847
|
131848