f90baff19703e032677928d6cd81579518eaa243
[srvgit] / t / db_dependent / XSLT.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use MARC::Record;
21 use Test::More tests => 4;
22 use Test::Warn;
23 use t::lib::TestBuilder;
24 use t::lib::Mocks;
25
26 use Koha::ItemTypes;
27
28 BEGIN {
29     use_ok('C4::XSLT');
30 }
31
32 my $schema  = Koha::Database->new->schema;
33 my $builder = t::lib::TestBuilder->new;
34
35 $schema->storage->txn_begin;
36
37 subtest 'transformMARCXML4XSLT tests' => sub {
38     plan tests => 1;
39     my $mock_xslt =  Test::MockModule->new("C4::XSLT");
40     $mock_xslt->mock( getAuthorisedValues4MARCSubfields => sub { return { 942 => { 'n' => 1 } } } );
41     $mock_xslt->mock( GetAuthorisedValueDesc => sub { warn "called"; });
42     my $record = MARC::Record->new();
43     my $suppress_field = MARC::Field->new( 942, ' ', ' ', n => '1' );
44     $record->append_fields($suppress_field);
45     warning_is { C4::XSLT::transformMARCXML4XSLT( 3,$record ) } undef, "942n auth value not translated";
46 };
47
48 subtest 'buildKohaItemsNamespace status tests' => sub {
49     plan tests => 14;
50
51     t::lib::Mocks::mock_preference('Reference_NFL_Statuses', '1|2');
52
53     my $itype = $builder->build_object({ class => 'Koha::ItemTypes' });
54     my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes' });
55     my $item  = $builder->build_sample_item({ itype => $itype->itemtype });
56     $item->biblioitem->itemtype($itemtype->itemtype)->store;
57
58     my $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
59     like($xml,qr{<status>available</status>},"Item is available when no other status applied");
60
61     # notforloan
62     {
63         t::lib::Mocks::mock_preference('item-level_itypes', 0);
64         $item->notforloan(0)->store;
65         Koha::ItemTypes->find($item->itype)->notforloan(0)->store;
66         Koha::ItemTypes->find($item->biblioitem->itemtype)->notforloan(1)->store;
67         $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
68         like($xml,qr{<status>reference</status>},"reference if positive itype notforloan value");
69
70         t::lib::Mocks::mock_preference('item-level_itypes', 1);
71         Koha::ItemTypes->find($item->itype)->notforloan(1)->store;
72         Koha::ItemTypes->find($item->biblioitem->itemtype)->notforloan(0)->store;
73         $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
74         like($xml,qr{<status>reference</status>},"reference if positive itemtype notforloan value");
75         Koha::ItemTypes->find($item->itype)->notforloan(0)->store;
76
77         my $substatus = Koha::AuthorisedValues->search({ category => 'NOT_LOAN', authorised_value => -1 })->next->lib;
78         $item->notforloan(-1)->store;
79         $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
80         like($xml,qr{<status>reallynotforloan</status>},"reallynotforloan if negative notforloan value");
81         like($xml,qr{<substatus>$substatus</substatus>},"substatus set if negative notforloan value");
82
83         $item->notforloan(1)->store;
84         $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
85         like($xml,qr{<status>reference</status>},"reference if positive notforloan value");
86
87         # But now make status notforloan==1 count under Not available
88         t::lib::Mocks::mock_preference('Reference_NFL_Statuses', '2');
89         $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
90         like($xml,qr{<status>reallynotforloan</status>},"reallynotforloan when we change Reference_NFL_Statuses");
91         t::lib::Mocks::mock_preference('Reference_NFL_Statuses', '1|2');
92     }
93
94     $item->onloan('2001-01-01')->store;
95     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
96     like($xml,qr{<status>Checked out</status>},"Checked out status takes precedence over Not for loan");
97
98     $item->withdrawn(1)->store;
99     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
100     like($xml,qr{<status>Withdrawn</status>},"Withdrawn status takes precedence over Checked out");
101
102     $item->itemlost(1)->store;
103     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
104     like($xml,qr{<status>Lost</status>},"Lost status takes precedence over Withdrawn");
105
106     $item->damaged(1)->store;
107     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
108     like($xml,qr{<status>Damaged</status>},"Damaged status takes precedence over Lost");
109
110     $builder->build({ source => "Branchtransfer", value => {
111         itemnumber  => $item->itemnumber,
112         datearrived => undef,
113         datecancelled => undef,
114         }
115     });
116     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
117     like($xml,qr{<status>In transit</status>},"In-transit status takes precedence over Damaged");
118
119     my $hold = $builder->build_object({ class => 'Koha::Holds', value => {
120         biblionumber => $item->biblionumber,
121         itemnumber   => $item->itemnumber,
122         found        => 'W',
123         priority     => 0,
124         }
125     });
126     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
127     like($xml,qr{<status>Waiting</status>},"Waiting status takes precedence over In transit");
128
129     $builder->build({ source => "TmpHoldsqueue", value => {
130         itemnumber => $item->itemnumber
131         }
132     });
133     $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
134     like($xml,qr{<status>Pending hold</status>},"Pending status takes precedence over all");
135
136
137 };
138
139 $schema->storage->txn_rollback;
140
141 subtest 'buildKohaItemsNamespace() including/omitting items tests' => sub {
142
143     plan tests => 20;
144
145     $schema->storage->txn_begin;
146
147     my $biblio = $builder->build_sample_biblio;
148
149     # Have two known libraries for testing purposes
150     my $library_1 = $builder->build_object({ class => 'Koha::Libraries' });
151     my $library_2 = $builder->build_object({ class => 'Koha::Libraries' });
152     my $library_3 = $builder->build_object({ class => 'Koha::Libraries' });
153
154     my $item_1 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber, library => $library_1->id });
155     my $item_2 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber, library => $library_2->id });
156     my $item_3 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber, library => $library_3->id });
157
158     my $items_rs = $biblio->items->search({ "me.itemnumber" => { '!=' => $item_3->itemnumber } });
159
160     ## Test passing items_rs only
161     my $xml = C4::XSLT::buildKohaItemsNamespace( $biblio->biblionumber, undef, $items_rs );
162
163     my $library_1_name = $library_1->branchname;
164     my $library_2_name = $library_2->branchname;
165     my $library_3_name = $library_3->branchname;
166
167     like(   $xml, qr{<homebranch>$library_1_name</homebranch>}, '$item_1 present in the XML' );
168     like(   $xml, qr{<homebranch>$library_2_name</homebranch>}, '$item_2 present in the XML' );
169     unlike( $xml, qr{<homebranch>$library_3_name</homebranch>}, '$item_3 not present in the XML' );
170     ## Test passing one item in hidden_items and items_rs
171     $xml = C4::XSLT::buildKohaItemsNamespace( $biblio->biblionumber, [ $item_1->itemnumber ], $items_rs->reset );
172
173     unlike( $xml, qr{<homebranch>$library_1_name</homebranch>}, '$item_1 not present in the XML' );
174     like(   $xml, qr{<homebranch>$library_2_name</homebranch>}, '$item_2 present in the XML' );
175     unlike( $xml, qr{<homebranch>$library_3_name</homebranch>}, '$item_3 not present in the XML' );
176
177     ## Test passing both items in hidden_items and items_rs
178     $xml = C4::XSLT::buildKohaItemsNamespace( $biblio->biblionumber, [ $item_1->itemnumber, $item_2->itemnumber ], $items_rs->reset );
179
180     unlike( $xml, qr{<homebranch>$library_1_name</homebranch>}, '$item_1 not present in the XML' );
181     unlike( $xml, qr{<homebranch>$library_2_name</homebranch>}, '$item_2 not present in the XML' );
182     unlike( $xml, qr{<homebranch>$library_3_name</homebranch>}, '$item_3 not present in the XML' );
183     is( $xml, '<items xmlns="http://www.koha-community.org/items"></items>', 'Empty XML' );
184
185     ## Test passing both items in hidden_items and no items_rs
186     $xml = C4::XSLT::buildKohaItemsNamespace( $biblio->biblionumber, [ $item_1->itemnumber, $item_2->itemnumber, $item_3->itemnumber ] );
187
188     unlike( $xml, qr{<homebranch>$library_1_name</homebranch>}, '$item_1 not present in the XML' );
189     unlike( $xml, qr{<homebranch>$library_2_name</homebranch>}, '$item_2 not present in the XML' );
190     unlike( $xml, qr{<homebranch>$library_3_name</homebranch>}, '$item_3 not present in the XML' );
191     is( $xml, '<items xmlns="http://www.koha-community.org/items"></items>', 'Empty XML' );
192
193     ## Test passing one item in hidden_items and items_rs
194     $xml = C4::XSLT::buildKohaItemsNamespace( $biblio->biblionumber, [ $item_1->itemnumber ] );
195
196     unlike( $xml, qr{<homebranch>$library_1_name</homebranch>}, '$item_1 not present in the XML' );
197     like(   $xml, qr{<homebranch>$library_2_name</homebranch>}, '$item_2 present in the XML' );
198     like(   $xml, qr{<homebranch>$library_3_name</homebranch>}, '$item_3 present in the XML' );
199
200     ## Test not passing any param
201     $xml = C4::XSLT::buildKohaItemsNamespace( $biblio->biblionumber );
202
203     like( $xml, qr{<homebranch>$library_1_name</homebranch>}, '$item_1 present in the XML' );
204     like( $xml, qr{<homebranch>$library_2_name</homebranch>}, '$item_2 present in the XML' );
205     like( $xml, qr{<homebranch>$library_3_name</homebranch>}, '$item_3 present in the XML' );
206
207     $schema->storage->txn_rollback;
208 };