Bug 16849: Move IsDebarred to Koha::Patron->is_debarred
[koha.git] / t / db_dependent / Contract.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2014  Biblibre SARL
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use C4::Context;
23 use C4::Bookseller;
24 use Koha::DateUtils;
25
26 use DateTime::Duration;
27
28 use Test::More tests => 43;
29
30 BEGIN {
31     use_ok('C4::Contract');
32 }
33
34 my $dbh = C4::Context->dbh;
35 $dbh->{AutoCommit} = 0;
36 $dbh->{RaiseError} = 1;
37
38 $dbh->do(q|DELETE FROM aqbasket|);
39 $dbh->do(q|DELETE FROM aqcontract|);
40 $dbh->do(q|DELETE FROM aqbooksellers|);
41
42
43 my $bookseller_id1 = C4::Bookseller::AddBookseller( { name => 'My first bookseller' } );
44 isnt( $bookseller_id1, undef, 'AddBookseller does not return undef' );
45 my $bookseller_id2 = C4::Bookseller::AddBookseller( { name => 'My second bookseller' } );
46 isnt( $bookseller_id2, undef, 'AddBookseller does not return undef' );
47 my $contracts = GetContracts();
48 is( @$contracts, 0, 'GetContracts returns the correct number of contracts' );
49 my $contract = GetContract();
50 is( $contract, undef, 'GetContract without argument returns undef' );
51
52
53 my $my_contract1 = {
54     contractstartdate   => '2014-06-01',
55     contractenddate     => '2014-06-30',
56     contractname        => 'My contract name',
57     contractdescription => 'My contract description',
58     booksellerid        => $bookseller_id1,
59 };
60 my $my_contract_id1 = AddContract();
61 is( $my_contract_id1, undef, 'AddContract without argument returns undef' );
62 $my_contract_id1 = AddContract($my_contract1);
63 isnt( $my_contract_id1, undef, 'AddContract does not return undef' );
64
65 $contracts = GetContracts();
66 is( @$contracts, 1, 'AddContract adds a contract' );
67
68 $contract = GetContract();
69 is( $contract, undef, 'GetContract without argument returns undef' );
70 $contract = GetContract( { contractnumber => $my_contract_id1 } );
71 is( $contract->{contractstartdate}, $my_contract1->{contractstartdate}, 'AddContract stores the contract start date correctly.' );
72 is( $contract->{contractenddate}, $my_contract1->{contractenddate}, 'AddContract stores the contract end date correctly.' );
73 is( $contract->{contractname}, $my_contract1->{contractname}, 'AddContract stores the contract name correctly.' );
74 is( $contract->{contractdescription}, $my_contract1->{contractdescription}, 'AddContract stores the contract description correctly.' );
75 is( $contract->{booksellerid}, $my_contract1->{booksellerid}, 'AddContract stores the bookseller id correctly.' );
76
77 my $now = dt_from_string;
78 my $three_more_days = $now + DateTime::Duration->new( days => 3 );
79
80 $my_contract1 = {
81     contractstartdate   => $now->ymd,
82     contractenddate     => $three_more_days->ymd,
83     contractname        => 'My modified contract name',
84     contractdescription => 'My modified contract description',
85     booksellerid        => $bookseller_id2,
86 };
87 my $mod_status = ModContract($my_contract1);
88 is( $mod_status, undef, 'ModContract without the contract number returns 0E0' );
89
90 $my_contract1->{contractnumber} = $my_contract_id1;
91 $mod_status = ModContract($my_contract1);
92 is( $mod_status, 1, 'ModContract returns true' );
93 $contracts = GetContracts();
94 is( @$contracts, 1, 'ModContract does not modify the number of contracts' );
95 $contract = GetContract( { contractnumber => $my_contract_id1 } );
96 is( $contract->{contractstartdate}, $my_contract1->{contractstartdate}, 'ModContract updates the contract start date correctly.' );
97 is( $contract->{contractenddate}, $my_contract1->{contractenddate}, 'ModContract updates the contract end date correctly.' );
98 is( $contract->{contractname}, $my_contract1->{contractname}, 'ModContract updates the contract name correctly.' );
99 is( $contract->{contractdescription}, $my_contract1->{contractdescription}, 'ModContract updates the contract description correctly.' );
100 is( $contract->{booksellerid}, $my_contract1->{booksellerid}, 'ModContract updates the bookseller id correctly.' );
101
102
103 my $my_contract2 = {
104     contractstartdate   => '2013-08-05',
105     contractenddate     => '2013-09-25',
106     contractname        => 'My other contract name',
107     contractdescription => 'My other description contract name',
108     booksellerid        => $bookseller_id1,
109 };
110 my $my_contract_id2 = AddContract($my_contract2);
111 $contracts = GetContracts( { booksellerid => $bookseller_id1 } );
112 is( @$contracts, 1, 'GetContracts returns the correct number of contracts' );
113 $contracts = GetContracts({
114     activeonly => 1
115 });
116 is( @$contracts, 1, 'GetContracts with active only returns only current contracts' );
117 $contracts = GetContracts( { booksellerid => $bookseller_id2 } );
118 is( @$contracts, 1, 'GetContracts returns the correct number of contracts' );
119 $contracts = GetContracts();
120 is( @$contracts, 2, 'GetContracts returns the correct number of contracts' );
121
122 is( $contracts->[0]->{contractnumber}, $my_contract_id1, 'GetContracts returns the contract number correctly' );
123 is( $contracts->[0]->{contractstartdate}, $my_contract1->{contractstartdate}, 'GetContracts returns the contract start date correctly.' );
124 is( $contracts->[0]->{contractenddate}, $my_contract1->{contractenddate}, 'GetContracts returns the contract end date correctly.' );
125 is( $contracts->[0]->{contractname}, $my_contract1->{contractname}, 'GetContracts returns the contract name correctly.' );
126 is( $contracts->[0]->{contractdescription}, $my_contract1->{contractdescription}, 'GetContracts returns the contract description correctly.' );
127 is( $contracts->[0]->{booksellerid}, $my_contract1->{booksellerid}, 'GetContracts returns the bookseller id correctly.' );
128
129 is( $contracts->[1]->{contractnumber}, $my_contract_id2, 'GetContracts returns the contract number correctly' );
130 is( $contracts->[1]->{contractstartdate}, $my_contract2->{contractstartdate}, 'GetContracts returns the contract start date correctly.' );
131 is( $contracts->[1]->{contractenddate}, $my_contract2->{contractenddate}, 'GetContracts returns the contract end date correctly.' );
132 is( $contracts->[1]->{contractname}, $my_contract2->{contractname}, 'GetContracts returns the contract name correctly.' );
133 is( $contracts->[1]->{contractdescription}, $my_contract2->{contractdescription}, 'GetContracts returns the contract description correctly.' );
134 is( $contracts->[1]->{booksellerid}, $my_contract2->{booksellerid}, 'GetContracts returns the bookseller id correctly.' );
135
136
137 my $del_status = DelContract();
138 is( $del_status, undef, 'DelContract without contract number returns undef' );
139
140 $del_status = DelContract( { contractnumber => $my_contract_id1  } );
141 is( $del_status, 1, 'DelContract returns true' );
142 $contracts = GetContracts();
143 is( @$contracts, 1, 'DelContract deletes a contract' );
144
145 $del_status = DelContract( { contractnumber => $my_contract_id2 } );
146 is( $del_status, 1, 'DelContract returns true' );
147 $contracts = GetContracts();
148 is( @$contracts, 0, 'DelContract deletes a contract' );
149
150 $dbh->rollback;