From: Nick Clemens Date: Mon, 27 Mar 2023 10:58:43 +0000 (+0000) Subject: Bug 29234: Unit test X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=80f5b3351123225b93ab9b85a30b0428790234bf;hp=075ef09f48b66df7766c22e1c9ecf1d3cf7a039a;p=koha-ffzg.git Bug 29234: Unit test This patch adds a test that a pending stock rotation transfer is initiated on checkin, as well as updating the defaults for creating transfer objects To test: prove -v t/db_dependent/Circulation.t Signed-off-by: Tomas Cohen Arazi --- diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index ba4c34f5c4..1bbefe78a4 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -18,7 +18,7 @@ use Modern::Perl; use utf8; -use Test::More tests => 65; +use Test::More tests => 66; use Test::Exception; use Test::MockModule; use Test::Deep qw( cmp_deeply ); @@ -5818,6 +5818,31 @@ subtest 'Tests for BlockReturnOfWithdrawnItems' => sub { [ 0, { NotIssued => $item->barcode, withdrawn => 1 }, undef, {} ], "Item returned as withdrawn, no other messages"); }; +subtest 'Tests for transfer not in transit' => sub { + + plan tests => 2; + + + # These tests are to ensure a 'pending' transfer, generated by + # stock rotation, will be advanced when checked in + + my $item = $builder->build_sample_item(); + my $transfer = $builder->build_object({ class => 'Koha::Item::Transfers', value => { + itemnumber => $item->id, + reason => 'StockrotationRepatriation', + datesent => undef, + frombranch => $item->homebranch, + }}); + my @return = AddReturn( $item->barcode, $item->homebranch, 0, undef ); + is_deeply( + \@return, + [ 0, { WasTransfered => $transfer->tobranch, TransferTrigger => 'StockrotationRepatriation', NotIssued => $item->barcode }, undef, {} ], "Item is reported to have been transferred"); + + $transfer->discard_changes; + ok( $transfer->datesent, 'The datesent field is populated, i.e. transfer is initiated'); + +}; + $schema->storage->txn_rollback; C4::Context->clear_syspref_cache(); $branches = Koha::Libraries->search(); diff --git a/t/lib/TestBuilder.pm b/t/lib/TestBuilder.pm index 8f8d79699a..59137b143e 100644 --- a/t/lib/TestBuilder.pm +++ b/t/lib/TestBuilder.pm @@ -590,6 +590,18 @@ sub _gen_default_values { materials => undef, more_subfields_xml => undef, }, + Branchtransfer => { + daterequested => dt_from_string(), + datesent => dt_from_string(), + datearrived => undef, + datecancelled => undef, + reason => undef, + withdrawn => 0, + restricted => 0, + damaged => 0, + materials => undef, + more_subfields_xml => undef, + }, Category => { enrolmentfee => 0, reservefee => 0,