From 9e025bb7aac56bdf2a2777e2c38674edf326076f Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 14 Dec 2022 14:30:18 -0300 Subject: [PATCH] Bug 32394: Regression tests Signed-off-by: Tomas Cohen Arazi --- .../Koha/BackgroundJob/BatchCancelHold.t | 49 ++++++++++++++++ .../Koha/BackgroundJob/BatchDeleteAuthority.t | 48 ++++++++++++++++ .../Koha/BackgroundJob/BatchDeleteBiblio.t | 48 ++++++++++++++++ .../Koha/BackgroundJob/BatchDeleteItem.t | 48 ++++++++++++++++ .../Koha/BackgroundJob/BatchUpdateAuthority.t | 56 +++++++++++++++++++ .../Koha/BackgroundJob/BatchUpdateBiblio.t | 56 +++++++++++++++++++ .../BatchUpdateBiblioHoldsQueue.t | 56 +++++++++++++++++++ .../Koha/BackgroundJob/BatchUpdateItem.t | 48 ++++++++++++++++ .../CreateEHoldingsFromBiblios.t | 56 +++++++++++++++++++ .../BackgroundJob/MARCImportCommitBatch.t | 51 +++++++++++++++++ .../BackgroundJob/MARCImportRevertBatch.t | 51 +++++++++++++++++ .../Koha/BackgroundJob/StageMARCForImport.t | 46 +++++++++++++++ .../Koha/BackgroundJob/UpdateElasticIndex.t | 56 +++++++++++++++++++ 13 files changed, 669 insertions(+) create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchCancelHold.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchDeleteAuthority.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchDeleteBiblio.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchDeleteItem.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchUpdateAuthority.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblio.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.t create mode 100755 t/db_dependent/Koha/BackgroundJob/BatchUpdateItem.t create mode 100755 t/db_dependent/Koha/BackgroundJob/CreateEHoldingsFromBiblios.t create mode 100755 t/db_dependent/Koha/BackgroundJob/MARCImportCommitBatch.t create mode 100755 t/db_dependent/Koha/BackgroundJob/MARCImportRevertBatch.t create mode 100755 t/db_dependent/Koha/BackgroundJob/StageMARCForImport.t create mode 100755 t/db_dependent/Koha/BackgroundJob/UpdateElasticIndex.t diff --git a/t/db_dependent/Koha/BackgroundJob/BatchCancelHold.t b/t/db_dependent/Koha/BackgroundJob/BatchCancelHold.t new file mode 100755 index 0000000000..da9e4cae0b --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchCancelHold.t @@ -0,0 +1,49 @@ +#!/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 Koha::BackgroundJob::BatchCancelHold; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $reason = 'Some reason'; + my $hold_ids = [ 1, 2 ]; + + my $job_id = Koha::BackgroundJob::BatchCancelHold->new->enqueue( { hold_ids => $hold_ids }, reason => $reason ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$hold_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchDeleteAuthority.t b/t/db_dependent/Koha/BackgroundJob/BatchDeleteAuthority.t new file mode 100755 index 0000000000..87302cf815 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchDeleteAuthority.t @@ -0,0 +1,48 @@ +#!/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 Koha::BackgroundJob::BatchDeleteAuthority; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $record_ids = [ 1, 2 ]; + + my $job_id = Koha::BackgroundJob::BatchDeleteAuthority->new->enqueue( { record_ids => $record_ids } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchDeleteBiblio.t b/t/db_dependent/Koha/BackgroundJob/BatchDeleteBiblio.t new file mode 100755 index 0000000000..30e26bfb70 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchDeleteBiblio.t @@ -0,0 +1,48 @@ +#!/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 Koha::BackgroundJob::BatchDeleteBiblio; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $record_ids = [ 1, 2 ]; + + my $job_id = Koha::BackgroundJob::BatchDeleteBiblio->new->enqueue( { record_ids => $record_ids } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchDeleteItem.t b/t/db_dependent/Koha/BackgroundJob/BatchDeleteItem.t new file mode 100755 index 0000000000..1a45510bd5 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchDeleteItem.t @@ -0,0 +1,48 @@ +#!/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 Koha::BackgroundJob::BatchDeleteItem; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $record_ids = [ 1, 2 ]; + + my $job_id = Koha::BackgroundJob::BatchDeleteItem->new->enqueue( { record_ids => $record_ids } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchUpdateAuthority.t b/t/db_dependent/Koha/BackgroundJob/BatchUpdateAuthority.t new file mode 100755 index 0000000000..9e9c223312 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchUpdateAuthority.t @@ -0,0 +1,56 @@ +#!/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 Koha::BackgroundJob::BatchUpdateAuthority; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 5; + + $schema->storage->txn_begin; + + # FIXME: Should be an exception + my $job_id = Koha::BackgroundJob::BatchUpdateAuthority->new->enqueue(); + is( $job_id, undef, 'Nothing enqueued if missing params' ); + + # FIXME: Should be an exception + $job_id = Koha::BackgroundJob::BatchUpdateAuthority->new->enqueue( { record_ids => undef } ); + is( $job_id, undef, "Nothing enqueued if missing 'mmtid' param" ); + + my $record_ids = [ 1, 2 ]; + + $job_id = Koha::BackgroundJob::BatchUpdateAuthority->new->enqueue( { record_ids => $record_ids, mmtid => 'thing' } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblio.t b/t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblio.t new file mode 100755 index 0000000000..9a21b3b2ed --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblio.t @@ -0,0 +1,56 @@ +#!/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 Koha::BackgroundJob::BatchUpdateBiblio; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 5; + + $schema->storage->txn_begin; + + # FIXME: Should be an exception + my $job_id = Koha::BackgroundJob::BatchUpdateBiblio->new->enqueue(); + is( $job_id, undef, 'Nothing enqueued if missing params' ); + + # FIXME: Should be an exception + $job_id = Koha::BackgroundJob::BatchUpdateBiblio->new->enqueue( { record_ids => undef } ); + is( $job_id, undef, "Nothing enqueued if missing 'mmtid' param" ); + + my $record_ids = [ 1, 2 ]; + + $job_id = Koha::BackgroundJob::BatchUpdateBiblio->new->enqueue( { record_ids => $record_ids, mmtid => 'thing' } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.t b/t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.t new file mode 100755 index 0000000000..17e948ae9b --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.t @@ -0,0 +1,56 @@ +#!/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 Test::Exception; + +use Koha::Database; +use Koha::BackgroundJobs; +use Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 5; + + $schema->storage->txn_begin; + + my $biblio_ids = [ 1, 2 ]; + + throws_ok + { Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue->new->enqueue() } + 'Koha::Exceptions::MissingParameter', + "Exception thrown if 'biblio_ids' param is missing"; + + like( "$@", qr/Missing biblio_ids parameter is mandatory/, 'Expected exception message' ); + + my $job_id = Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue->new->enqueue( { biblio_ids => $biblio_ids } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$biblio_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'default', 'BatchUpdateItem should use the default queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/BatchUpdateItem.t b/t/db_dependent/Koha/BackgroundJob/BatchUpdateItem.t new file mode 100755 index 0000000000..83b38b05d7 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/BatchUpdateItem.t @@ -0,0 +1,48 @@ +#!/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 Koha::BackgroundJob::BatchUpdateItem; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $record_ids = [ 1, 2 ]; + + my $job_id = Koha::BackgroundJob::BatchUpdateItem->new->enqueue( { record_ids => $record_ids } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/CreateEHoldingsFromBiblios.t b/t/db_dependent/Koha/BackgroundJob/CreateEHoldingsFromBiblios.t new file mode 100755 index 0000000000..36d64d8688 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/CreateEHoldingsFromBiblios.t @@ -0,0 +1,56 @@ +#!/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 Koha::BackgroundJob::CreateEHoldingsFromBiblios; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 5; + + $schema->storage->txn_begin; + + # FIXME: Should be an exception + my $job_id = Koha::BackgroundJob::CreateEHoldingsFromBiblios->new->enqueue(); + is( $job_id, undef, 'Nothing enqueued if missing params' ); + + # FIXME: Should be an exception + $job_id = Koha::BackgroundJob::CreateEHoldingsFromBiblios->new->enqueue( { record_ids => undef } ); + is( $job_id, undef, "Nothing enqueued if missing 'package_id' param" ); + + my $record_ids = [ 1, 2 ]; + + $job_id = Koha::BackgroundJob::CreateEHoldingsFromBiblios->new->enqueue( { record_ids => $record_ids, package_id => 'thing' } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, scalar @{$record_ids}, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/MARCImportCommitBatch.t b/t/db_dependent/Koha/BackgroundJob/MARCImportCommitBatch.t new file mode 100755 index 0000000000..04651adc58 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/MARCImportCommitBatch.t @@ -0,0 +1,51 @@ +#!/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 Koha::BackgroundJob::MARCImportCommitBatch; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $import_batch = $builder->build_object({ class => 'Koha::ImportBatches' }); + # Add two records + $builder->build_object({ class => 'Koha::Import::Records', value => { import_batch_id => $import_batch->id } }); + $builder->build_object({ class => 'Koha::Import::Records', value => { import_batch_id => $import_batch->id } }); + + my $job_id = Koha::BackgroundJob::MARCImportCommitBatch->new->enqueue( { import_batch_id => $import_batch->id } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, 2, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/MARCImportRevertBatch.t b/t/db_dependent/Koha/BackgroundJob/MARCImportRevertBatch.t new file mode 100755 index 0000000000..e77d2d4cae --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/MARCImportRevertBatch.t @@ -0,0 +1,51 @@ +#!/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 Koha::BackgroundJob::MARCImportRevertBatch; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $import_batch = $builder->build_object({ class => 'Koha::ImportBatches' }); + # Add two records + $builder->build_object({ class => 'Koha::Import::Records', value => { import_batch_id => $import_batch->id } }); + $builder->build_object({ class => 'Koha::Import::Records', value => { import_batch_id => $import_batch->id } }); + + my $job_id = Koha::BackgroundJob::MARCImportRevertBatch->new->enqueue( { import_batch_id => $import_batch->id } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, 2, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/StageMARCForImport.t b/t/db_dependent/Koha/BackgroundJob/StageMARCForImport.t new file mode 100755 index 0000000000..51a23973f2 --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/StageMARCForImport.t @@ -0,0 +1,46 @@ +#!/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 Koha::BackgroundJob::StageMARCForImport; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 3; + + $schema->storage->txn_begin; + + my $job_id = Koha::BackgroundJob::StageMARCForImport->new->enqueue(); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, 0, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'long_tasks', 'BatchUpdateItem should use the long_tasks queue' ); + + $schema->storage->txn_rollback; +}; diff --git a/t/db_dependent/Koha/BackgroundJob/UpdateElasticIndex.t b/t/db_dependent/Koha/BackgroundJob/UpdateElasticIndex.t new file mode 100755 index 0000000000..ee8fd389ec --- /dev/null +++ b/t/db_dependent/Koha/BackgroundJob/UpdateElasticIndex.t @@ -0,0 +1,56 @@ +#!/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 Koha::BackgroundJob::UpdateElasticIndex; + +use t::lib::Mocks; +use t::lib::TestBuilder; + +my $schema = Koha::Database->new->schema; +my $builder = t::lib::TestBuilder->new; + +subtest 'enqueue() tests' => sub { + + plan tests => 5; + + $schema->storage->txn_begin; + + # FIXME: Should be an exception + my $job_id = Koha::BackgroundJob::UpdateElasticIndex->new->enqueue(); + is( $job_id, undef, 'Nothing enqueued if missing params' ); + + # FIXME: Should be an exception + $job_id = Koha::BackgroundJob::UpdateElasticIndex->new->enqueue( { record_ids => undef } ); + is( $job_id, undef, "Nothing enqueued if missing 'record_server' param" ); + + my $record_ids = [ 1, 2 ]; + + $job_id = Koha::BackgroundJob::UpdateElasticIndex->new->enqueue( { record_ids => $record_ids, record_server => 'thing' } ); + my $job = Koha::BackgroundJobs->find($job_id)->_derived_class; + + is( $job->size, 1, 'Size is correct' ); + is( $job->status, 'new', 'Initial status set correctly' ); + is( $job->queue, 'default', 'BatchUpdateItem should use the default queue' ); + + $schema->storage->txn_rollback; +}; -- 2.39.2