Lines 599-662
subtest 'test_allow_additional_materials_checkout' => sub {
Link Here
|
599 |
|
599 |
|
600 |
plan tests => 4; |
600 |
plan tests => 4; |
601 |
|
601 |
|
602 |
my $builder = t::lib::TestBuilder->new(); |
602 |
my $builder = t::lib::TestBuilder->new(); |
603 |
my $branchcode = $builder->build({ source => 'Branch' })->{branchcode}; |
603 |
my $branchcode = $builder->build( { source => 'Branch' } )->{branchcode}; |
604 |
my $branchcode2 = $builder->build({ source => 'Branch' })->{branchcode}; |
604 |
my $branchcode2 = $builder->build( { source => 'Branch' } )->{branchcode}; |
605 |
my ( $response, $findpatron ); |
605 |
my ( $response, $findpatron ); |
606 |
my $mocks = create_mocks( \$response, \$findpatron, \$branchcode ); |
606 |
my $mocks = create_mocks( \$response, \$findpatron, \$branchcode ); |
607 |
|
607 |
|
608 |
# create some data |
608 |
# create some data |
609 |
my $patron1 = $builder->build({ |
609 |
my $patron1 = $builder->build( |
610 |
source => 'Borrower', |
610 |
{ |
611 |
value => { |
611 |
source => 'Borrower', |
612 |
password => hash_password( PATRON_PW ), |
612 |
value => { |
613 |
}, |
613 |
password => hash_password(PATRON_PW), |
614 |
}); |
614 |
}, |
615 |
my $card1 = $patron1->{cardnumber}; |
615 |
} |
616 |
my $sip_patron1 = C4::SIP::ILS::Patron->new( $card1 ); |
616 |
); |
|
|
617 |
my $card1 = $patron1->{cardnumber}; |
618 |
my $sip_patron1 = C4::SIP::ILS::Patron->new($card1); |
617 |
$findpatron = $sip_patron1; |
619 |
$findpatron = $sip_patron1; |
618 |
my $item_object = $builder->build_sample_item({ |
620 |
my $item_object = $builder->build_sample_item( |
619 |
damaged => 0, |
621 |
{ |
620 |
withdrawn => 0, |
622 |
damaged => 0, |
621 |
itemlost => 0, |
623 |
withdrawn => 0, |
622 |
restricted => 0, |
624 |
itemlost => 0, |
623 |
homebranch => $branchcode, |
625 |
restricted => 0, |
624 |
holdingbranch => $branchcode, |
626 |
homebranch => $branchcode, |
625 |
materials => "This is a materials note", |
627 |
holdingbranch => $branchcode, |
626 |
}); |
628 |
materials => "This is a materials note", |
|
|
629 |
} |
630 |
); |
627 |
|
631 |
|
628 |
my $mockILS = $mocks->{ils}; |
632 |
my $mockILS = $mocks->{ils}; |
629 |
my $server = { ils => $mockILS, account => {} }; |
633 |
my $server = { ils => $mockILS, account => {} }; |
630 |
$mockILS->mock( 'institution', sub { $branchcode; } ); |
634 |
$mockILS->mock( 'institution', sub { $branchcode; } ); |
631 |
$mockILS->mock( 'supports', sub { return; } ); |
635 |
$mockILS->mock( 'supports', sub { return; } ); |
632 |
$mockILS->mock( 'checkout', sub { |
636 |
$mockILS->mock( |
633 |
shift; |
637 |
'checkout', |
634 |
return C4::SIP::ILS->checkout(@_); |
638 |
sub { |
635 |
}); |
639 |
shift; |
|
|
640 |
return C4::SIP::ILS->checkout(@_); |
641 |
} |
642 |
); |
636 |
my $today = dt_from_string; |
643 |
my $today = dt_from_string; |
637 |
t::lib::Mocks::mock_userenv({ branchcode => $branchcode, flags => 1 }); |
644 |
t::lib::Mocks::mock_userenv( { branchcode => $branchcode, flags => 1 } ); |
638 |
t::lib::Mocks::mock_preference( 'CircConfirmItemParts', '1' ); |
645 |
t::lib::Mocks::mock_preference( 'CircConfirmItemParts', '1' ); |
639 |
|
646 |
|
640 |
my $siprequest = CHECKOUT . 'YN' . siprequestdate($today) . |
647 |
my $siprequest = |
641 |
siprequestdate( $today->clone->add( days => 1) ) . |
648 |
CHECKOUT . 'YN' |
642 |
FID_INST_ID . $branchcode . '|'. |
649 |
. siprequestdate($today) |
643 |
FID_PATRON_ID . $sip_patron1->id . '|' . |
650 |
. siprequestdate( $today->clone->add( days => 1 ) ) |
644 |
FID_ITEM_ID . $item_object->barcode . '|' . |
651 |
. FID_INST_ID |
645 |
FID_TERMINAL_PWD . 'ignored' . '|'; |
652 |
. $branchcode . '|' |
|
|
653 |
. FID_PATRON_ID |
654 |
. $sip_patron1->id . '|' |
655 |
. FID_ITEM_ID |
656 |
. $item_object->barcode . '|' |
657 |
. FID_TERMINAL_PWD |
658 |
. 'ignored' . '|'; |
646 |
undef $response; |
659 |
undef $response; |
647 |
|
660 |
|
648 |
my $msg = C4::SIP::Sip::MsgType->new( $siprequest, 0 ); |
661 |
my $msg = C4::SIP::Sip::MsgType->new( $siprequest, 0 ); |
649 |
$server->{account}->{allow_additional_materials_checkout} = 0; |
662 |
$server->{account}->{allow_additional_materials_checkout} = 0; |
650 |
$msg->handle_checkout( $server ); |
663 |
$msg->handle_checkout($server); |
651 |
my $respcode = substr( $response, 0, 2 ); |
664 |
my $respcode = substr( $response, 0, 2 ); |
652 |
check_field( $respcode, $response, FID_SCREEN_MSG, 'Item must be checked out at a circulation desk', 'Check screen msg', 'equals' ); |
665 |
check_field( |
653 |
is( Koha::Checkouts->search({ itemnumber => $item_object->id })->count, 0, "Item was not checked out (allow_additional_materials_checkout disabled)"); |
666 |
$respcode, $response, FID_SCREEN_MSG, 'Item must be checked out at a circulation desk', |
|
|
667 |
'Check screen msg', 'equals' |
668 |
); |
669 |
is( |
670 |
Koha::Checkouts->search( { itemnumber => $item_object->id } )->count, 0, |
671 |
"Item was not checked out (allow_additional_materials_checkout disabled)" |
672 |
); |
654 |
|
673 |
|
655 |
$server->{account}->{allow_additional_materials_checkout} = 1; |
674 |
$server->{account}->{allow_additional_materials_checkout} = 1; |
656 |
$msg->handle_checkout( $server ); |
675 |
$msg->handle_checkout($server); |
657 |
$respcode = substr( $response, 0, 2 ); |
676 |
$respcode = substr( $response, 0, 2 ); |
658 |
check_field( $respcode, $response, FID_SCREEN_MSG, 'Item has additional materials: This is a materials note', 'Check screen msg', 'equals' ); |
677 |
check_field( |
659 |
is( Koha::Checkouts->search({ itemnumber => $item_object->id })->count, 1, "Item was checked out (allow_additional_materials_checkout enabled"); |
678 |
$respcode, $response, FID_SCREEN_MSG, 'Item has additional materials: This is a materials note', |
|
|
679 |
'Check screen msg', 'equals' |
680 |
); |
681 |
is( |
682 |
Koha::Checkouts->search( { itemnumber => $item_object->id } )->count, 1, |
683 |
"Item was checked out (allow_additional_materials_checkout enabled" |
684 |
); |
660 |
}; |
685 |
}; |
661 |
|
686 |
|
662 |
# Here is room for some more subtests |
687 |
# Here is room for some more subtests |
663 |
- |
|
|