Bug 25757: Add unit tests for item relation
[koha.git] / t / db_dependent / rollingloans.t
1 #!/usr/bin/perl
2
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);
13
14 use Test::More tests => 8;
15
16 my $schema = Koha::Database->new->schema;
17 $schema->storage->txn_begin;
18
19 my $builder = t::lib::TestBuilder->new;
20 $builder->build({ source => 'Branch', value => { branchcode => 'CPL' } })
21     unless Koha::Libraries->find('CPL');
22
23 t::lib::Mocks::mock_userenv({ branchcode => 'CPL' });
24
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';
30
31 my $borrower1 = $builder->build_object({ class => 'Koha::Patrons', value => { cardnumber => $test_patron } });
32 my $item1 = $builder->build_sample_item(
33     {
34         barcode => $test_item_fic,
35     }
36 );
37 my $item2 = $builder->build_sample_item(
38     {
39         barcode => $test_item_24,
40     }
41 );
42 my $item3 = $builder->build_sample_item(
43     {
44         barcode => $test_item_48,
45     }
46 );
47
48 SKIP: {
49     skip 'Missing test borrower or item, skipping tests', 8
50       unless ( defined $borrower1 && defined $item1 );
51
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" );
58         }
59         my $ret_ok = try_return($item_barcode);
60         is( $ret_ok, 1, 'Return succeeded' );
61     }
62 }
63
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 );
71 }
72
73 sub try_return {
74     my $barcode = shift;
75     my ($ret, $messages, $iteminformation, $borrower) = AddReturn($barcode);
76     return $ret;
77 }