Line 0
Link Here
|
0 |
- |
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 utf8; |
21 |
use Test::More; |
22 |
use Test::WWW::Mechanize; |
23 |
use Data::Dumper; |
24 |
use XML::Simple; |
25 |
use JSON; |
26 |
use File::Basename; |
27 |
use File::Path; |
28 |
use File::Spec; |
29 |
use File::Temp qw/ tempdir /; |
30 |
use POSIX; |
31 |
use Encode; |
32 |
|
33 |
use C4::Context; |
34 |
|
35 |
my $testdir = File::Spec->rel2abs( dirname(__FILE__) ); |
36 |
# global variables that will be used when forking |
37 |
our $zebra_pid; |
38 |
our $indexer_pid; |
39 |
our $datadir = tempdir();; |
40 |
|
41 |
my $koha_conf = $ENV{KOHA_CONF}; |
42 |
my $xml = XMLin($koha_conf); |
43 |
|
44 |
my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21'; |
45 |
|
46 |
# For the purpose of this test, we can reasonably take MARC21 and NORMARC to be the same |
47 |
my $file = |
48 |
$marcflavour eq 'UNIMARC' |
49 |
? "$testdir/data/unimarcutf8record.mrc" |
50 |
: "$testdir/data/marc21utf8record.mrc"; |
51 |
|
52 |
my $user = $ENV{KOHA_USER} || $xml->{config}->{user}; |
53 |
my $password = $ENV{KOHA_PASS} || $xml->{config}->{pass}; |
54 |
my $intranet = $ENV{KOHA_INTRANET_URL}; |
55 |
my $opac = $ENV{KOHA_OPAC_URL}; |
56 |
|
57 |
# launch the zebra process |
58 |
launch_zebra( $datadir, $koha_conf ); |
59 |
if ( not defined $zebra_pid ) { |
60 |
plan skip_all => "Tests skip. Error starting Zebra Server to do those tests\n"; |
61 |
} |
62 |
# launch the zebra process |
63 |
launch_indexer( ); |
64 |
if ( not defined $indexer_pid ) { |
65 |
plan skip_all => "Tests skip. Error starting the indexer daemon to do those tests\n"; |
66 |
} |
67 |
# test KOHA_INTRANET_URL is set |
68 |
if ( not defined $intranet ) { |
69 |
plan skip_all => "Tests skip. You must set env. variable KOHA_INTRANET_URL to do tests\n"; |
70 |
} |
71 |
# test KOHA_OPAC_URL is set |
72 |
if ( not defined $opac ) { |
73 |
plan skip_all => "Tests skip. You must set env. variable KOHA_OPAC_URL to do tests\n"; |
74 |
} |
75 |
|
76 |
$intranet =~ s#/$##; |
77 |
$opac =~ s#/$##; |
78 |
|
79 |
my $agent = Test::WWW::Mechanize->new( autocheck => 1 ); |
80 |
my $jsonresponse; |
81 |
|
82 |
# -------------------------------------------------- LOAD RECORD |
83 |
|
84 |
$agent->get_ok( "$intranet/cgi-bin/koha/mainpage.pl", 'connect to intranet' ); |
85 |
$agent->form_name('loginform'); |
86 |
$agent->field( 'password', $password ); |
87 |
$agent->field( 'userid', $user ); |
88 |
$agent->field( 'branch', '' ); |
89 |
$agent->click_ok( '', 'login to staff client' ); |
90 |
|
91 |
$agent->get_ok( "$intranet/cgi-bin/koha/mainpage.pl", 'load main page' ); |
92 |
|
93 |
$agent->follow_link_ok( { url_regex => qr/tools-home/i }, 'open tools module' ); |
94 |
$agent->follow_link_ok( { text => 'Stage MARC records for import' }, |
95 |
'go to stage MARC' ); |
96 |
|
97 |
$agent->post( |
98 |
"$intranet/cgi-bin/koha/tools/upload-file.pl", |
99 |
[ 'fileToUpload' => [$file], ], |
100 |
'Content_Type' => 'form-data', |
101 |
); |
102 |
ok( $agent->success, 'uploaded file' ); |
103 |
|
104 |
$jsonresponse = decode_json $agent->content(); |
105 |
is( $jsonresponse->{'status'}, 'done', 'upload succeeded' ); |
106 |
my $fileid = $jsonresponse->{'fileid'}; |
107 |
|
108 |
$agent->get_ok( "$intranet/cgi-bin/koha/tools/stage-marc-import.pl", |
109 |
'reopen stage MARC page' ); |
110 |
$agent->submit_form_ok( |
111 |
{ |
112 |
form_number => 5, |
113 |
fields => { |
114 |
'uploadedfileid' => $fileid, |
115 |
'nomatch_action' => 'create_new', |
116 |
'overlay_action' => 'replace', |
117 |
'item_action' => 'always_add', |
118 |
'matcher' => '', |
119 |
'comments' => '', |
120 |
'encoding' => 'utf8', |
121 |
'parse_items' => '1', |
122 |
'runinbackground' => '1', |
123 |
} |
124 |
}, |
125 |
'stage MARC' |
126 |
); |
127 |
|
128 |
$jsonresponse = decode_json $agent->content(); |
129 |
my $jobID = $jsonresponse->{'jobID'}; |
130 |
ok( $jobID, 'have job ID' ); |
131 |
|
132 |
my $completed = 0; |
133 |
|
134 |
# if we haven't completed the batch in two minutes, it's not happening |
135 |
for my $counter ( 1 .. 24 ) { |
136 |
$agent->get( |
137 |
"$intranet/cgi-bin/koha/tools/background-job-progress.pl?jobID=$jobID", |
138 |
"get job progress" |
139 |
); |
140 |
$jsonresponse = decode_json $agent->content(); |
141 |
if ( $jsonresponse->{'job_status'} eq 'completed' ) { |
142 |
$completed = 1; |
143 |
last; |
144 |
} |
145 |
warn( |
146 |
( |
147 |
$jsonresponse->{'job_size'} |
148 |
? floor( |
149 |
100 * $jsonresponse->{'progress'} / $jsonresponse->{'job_size'} |
150 |
) |
151 |
: '100' |
152 |
) |
153 |
. "% completed" |
154 |
); |
155 |
sleep 5; |
156 |
} |
157 |
is( $jsonresponse->{'job_status'}, 'completed', 'job was completed' ); |
158 |
|
159 |
$agent->get_ok( |
160 |
"$intranet/cgi-bin/koha/tools/stage-marc-import.pl", |
161 |
'reopen stage MARC page at end of upload' |
162 |
); |
163 |
$agent->submit_form_ok( |
164 |
{ |
165 |
form_number => 5, |
166 |
fields => { |
167 |
'uploadedfileid' => $fileid, |
168 |
'nomatch_action' => 'create_new', |
169 |
'overlay_action' => 'replace', |
170 |
'item_action' => 'always_add', |
171 |
'matcher' => '1', |
172 |
'comments' => '', |
173 |
'encoding' => 'utf8', |
174 |
'parse_items' => '1', |
175 |
'runinbackground' => '1', |
176 |
'completedJobID' => $jobID, |
177 |
} |
178 |
}, |
179 |
'stage MARC' |
180 |
); |
181 |
|
182 |
$agent->follow_link_ok( { text => 'Manage staged records' }, 'view batch' ); |
183 |
|
184 |
|
185 |
$agent->form_number(5); |
186 |
$agent->field( 'framework', '' ); |
187 |
$agent->click_ok( 'mainformsubmit', "imported records into catalog" ); |
188 |
my $webpage = $agent->{content}; |
189 |
|
190 |
$webpage =~ /(.*<title>.*?)(\d{1,})(.*<\/title>)/sx; |
191 |
my $id_batch = $2; |
192 |
my $id_bib_number = GetBiblionumberFromImport($id_batch); |
193 |
|
194 |
# wait enough time for the indexer |
195 |
sleep 10; |
196 |
|
197 |
# --------------------------------- TEST INTRANET SEARCH |
198 |
|
199 |
$agent->get_ok( "$intranet/cgi-bin/koha/catalogue/search.pl" , "got search on intranet"); |
200 |
$agent->form_number(1); |
201 |
$agent->field('idx', 'kw'); |
202 |
$agent->field('q', 'deuteros'); |
203 |
$agent->click(); |
204 |
|
205 |
my $text = $agent->text() ; |
206 |
|
207 |
#Tests on UTF-8 |
208 |
|
209 |
ok ( ( length(Encode::encode_utf8($text)) != length($text) ) , 'UTF-8 are multi-byte. Goog') ; |
210 |
ok ($text =~ m/学協会. μμ/, 'UTF-8 chars are correctly present. Good'); |
211 |
|
212 |
|
213 |
|
214 |
#-------------------------------------------------- REVERT |
215 |
|
216 |
$agent->get_ok( "$intranet/cgi-bin/koha/tools/manage-marc-import.pl", 'view and clean batch' ); |
217 |
$agent->form_name('clean_batch_'.$id_batch); |
218 |
$agent->click(); |
219 |
$agent->get_ok( "$intranet/cgi-bin/koha/catalogue/detail.pl?biblionumber=$id_bib_number", 'biblio on intranet' ); |
220 |
$agent->get_ok( "$intranet/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&biblionumber=$id_bib_number", 'biblio deleted' ); |
221 |
|
222 |
# clean |
223 |
cleanup(); |
224 |
|
225 |
done_testing(); |
226 |
|
227 |
# function that launches the zebra daemon |
228 |
sub launch_zebra { |
229 |
|
230 |
my ( $datadir, $koha_conf ) = @_; |
231 |
|
232 |
$zebra_pid = fork(); |
233 |
if ( $zebra_pid == 0 ) { |
234 |
exec("zebrasrv -f $koha_conf -v none,request -l $datadir/zebra.log"); |
235 |
exit; |
236 |
} |
237 |
sleep( 1 ); |
238 |
} |
239 |
|
240 |
sub launch_indexer { |
241 |
|
242 |
my $rootdir = dirname(__FILE__) . '/../../../'; |
243 |
my $rebuild_zebra = "$rootdir/misc/migration_tools/rebuild_zebra.pl"; |
244 |
|
245 |
$indexer_pid = fork(); |
246 |
|
247 |
if ( $indexer_pid == 0 ) { |
248 |
exec("$rebuild_zebra -daemon -sleep 5"); |
249 |
exit; |
250 |
} |
251 |
sleep( 1 ); |
252 |
} |
253 |
|
254 |
sub cleanup { |
255 |
|
256 |
kill 9, $zebra_pid if defined $zebra_pid; |
257 |
kill 9, $indexer_pid if defined $indexer_pid; |
258 |
# Clean up the Zebra files since the child process was just shot |
259 |
rmtree $datadir; |
260 |
|
261 |
} |
262 |
|
263 |
sub GetBiblionumberFromImport{ |
264 |
my ( $batch_id) = @_; |
265 |
use C4::ImportBatch; |
266 |
my $data = C4::ImportBatch::GetImportRecordsRange($batch_id, '', '', undef, |
267 |
{ order_by => 'import_record_id', order_by_direction => 'DESC' }); |
268 |
my $biblionumber = $data->[0]->{'matched_biblionumber'}; |
269 |
|
270 |
return $biblionumber; |
271 |
} |
272 |
1; |