Bug 26621: Adjust .mailmap to reduce the number of invalid authors
[koha.git] / t / db_dependent / rollingloans.t
blob605bde4f38ffb7d1691dad9e6df001873f444baf
1 #!/usr/bin/perl
3 use Modern::Perl;
4 use C4::Context;
5 use C4::Circulation;
6 use C4::Members;
7 use C4::Items;
8 use Koha::DateUtils;
9 use Koha::Libraries;
10 use Koha::Patrons;
11 use t::lib::TestBuilder;
12 use t::lib::Mocks qw(mock_preference);
14 use Test::More tests => 8;
16 my $schema = Koha::Database->new->schema;
17 $schema->storage->txn_begin;
19 my $builder = t::lib::TestBuilder->new;
20 $builder->build({ source => 'Branch', value => { branchcode => 'CPL' } })
21 unless Koha::Libraries->find('CPL');
23 t::lib::Mocks::mock_userenv({ branchcode => 'CPL' });
25 t::lib::Mocks::mock_preference('BlockReturnOfWithdrawnItems',0);
26 my $test_patron = '23529001223651';
27 my $test_item_fic = '502326000402';
28 my $test_item_24 = '502326000404';
29 my $test_item_48 = '502326000403';
31 my $borrower1 = $builder->build_object({ class => 'Koha::Patrons', value => { cardnumber => $test_patron } });
32 my $item1 = $builder->build_sample_item(
34 barcode => $test_item_fic,
37 my $item2 = $builder->build_sample_item(
39 barcode => $test_item_24,
42 my $item3 = $builder->build_sample_item(
44 barcode => $test_item_48,
48 SKIP: {
49 skip 'Missing test borrower or item, skipping tests', 8
50 unless ( defined $borrower1 && defined $item1 );
52 for my $item_barcode ( $test_item_fic, $test_item_24, $test_item_48 ) {
53 my $duedate = try_issue( $test_patron, $item_barcode );
54 isa_ok( $duedate, 'DateTime' );
55 if ( $item_barcode eq $test_item_fic ) {
56 is( $duedate->hour(), 23, "daily loan hours = 23" );
57 is( $duedate->minute(), 59, "daily loan mins = 59" );
59 my $ret_ok = try_return($item_barcode);
60 is( $ret_ok, 1, 'Return succeeded' );
64 sub try_issue {
65 my ($cardnumber, $item ) = @_;
66 my $issuedate = '2011-05-16';
67 my $patron = Koha::Patrons->find( { cardnumber => $cardnumber } );
68 my ($issuingimpossible,$needsconfirmation) = CanBookBeIssued( $patron, $item );
69 my $issue = AddIssue($patron->unblessed, $item, undef, 0, $issuedate);
70 return dt_from_string( $issue->date_due );
73 sub try_return {
74 my $barcode = shift;
75 my ($ret, $messages, $iteminformation, $borrower) = AddReturn($barcode);
76 return $ret;