Jonathan Druart
08c03af2ae
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
216 lines
6.8 KiB
Perl
Executable file
216 lines
6.8 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2012 C & P Bibliography Services
|
|
# Copyright 2017 Koha Development Team
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use utf8;
|
|
use Test::More; #See plan tests => \d+ below
|
|
use Test::WWW::Mechanize;
|
|
use XML::Simple;
|
|
use JSON;
|
|
use File::Basename;
|
|
use File::Spec;
|
|
use POSIX;
|
|
|
|
my $testdir = File::Spec->rel2abs( dirname(__FILE__) );
|
|
|
|
my $koha_conf = $ENV{KOHA_CONF};
|
|
my $xml = XMLin($koha_conf);
|
|
|
|
use C4::Context;
|
|
my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21';
|
|
|
|
my $file =
|
|
$marcflavour eq 'UNIMARC'
|
|
? "$testdir/data/unimarcrecord.mrc"
|
|
: "$testdir/data/marc21record.mrc";
|
|
|
|
my $user = $ENV{KOHA_USER} || $xml->{config}->{user};
|
|
my $password = $ENV{KOHA_PASS} || $xml->{config}->{pass};
|
|
my $intranet = $ENV{KOHA_INTRANET_URL};
|
|
|
|
if (not defined $intranet) {
|
|
plan skip_all =>
|
|
"You must set the environment variable KOHA_INTRANET_URL to ".
|
|
"point this test to your staff interface. If you do not have ".
|
|
"KOHA_CONF set, you must also set KOHA_USER and KOHA_PASS for ".
|
|
"your username and password";
|
|
}
|
|
else {
|
|
plan tests => 26;
|
|
}
|
|
|
|
$intranet =~ s#/$##;
|
|
|
|
my $agent = Test::WWW::Mechanize->new( autocheck => 1 );
|
|
my $jsonresponse;
|
|
|
|
$agent->get_ok( "$intranet/cgi-bin/koha/mainpage.pl", 'connect to intranet' );
|
|
$agent->form_name('loginform');
|
|
$agent->field( 'password', $password );
|
|
$agent->field( 'userid', $user );
|
|
$agent->field( 'branch', '' );
|
|
$agent->click_ok( '', 'login to staff interface' );
|
|
|
|
$agent->get_ok( "$intranet/cgi-bin/koha/mainpage.pl", 'load main page' );
|
|
|
|
$agent->follow_link_ok( { url_regex => qr/tools-home/i }, 'open tools module' );
|
|
$agent->follow_link_ok( { text => 'Stage MARC records for import' },
|
|
'go to stage MARC' );
|
|
|
|
$agent->post(
|
|
"$intranet/cgi-bin/koha/tools/upload-file.pl?temp=1",
|
|
[ 'fileToUpload' => [$file], ],
|
|
'Content_Type' => 'form-data',
|
|
);
|
|
ok( $agent->success, 'uploaded file' );
|
|
|
|
$jsonresponse = decode_json $agent->content();
|
|
is( $jsonresponse->{'status'}, 'done', 'upload succeeded' );
|
|
my $fileid = $jsonresponse->{'fileid'};
|
|
|
|
$agent->get_ok( "$intranet/cgi-bin/koha/tools/stage-marc-import.pl",
|
|
'reopen stage MARC page' );
|
|
$agent->submit_form_ok(
|
|
{
|
|
form_number => 5,
|
|
fields => {
|
|
'uploadedfileid' => $fileid,
|
|
'nomatch_action' => 'create_new',
|
|
'overlay_action' => 'replace',
|
|
'item_action' => 'always_add',
|
|
'matcher' => '',
|
|
'comments' => '',
|
|
'encoding' => 'UTF-8',
|
|
'parse_items' => '1',
|
|
'runinbackground' => '1',
|
|
'record_type' => 'biblio'
|
|
}
|
|
},
|
|
'stage MARC'
|
|
);
|
|
|
|
$jsonresponse = decode_json $agent->content();
|
|
my $jobID = $jsonresponse->{'jobID'};
|
|
ok( $jobID, 'have job ID' );
|
|
|
|
my $completed = 0;
|
|
|
|
# if we haven't completed the batch in two minutes, it's not happening
|
|
for my $counter ( 1 .. 24 ) {
|
|
$agent->get(
|
|
"$intranet/cgi-bin/koha/tools/background-job-progress.pl?jobID=$jobID"
|
|
); # get job progress
|
|
$jsonresponse = decode_json $agent->content();
|
|
if ( $jsonresponse->{'job_status'} eq 'completed' ) {
|
|
$completed = 1;
|
|
last;
|
|
}
|
|
warn(
|
|
(
|
|
$jsonresponse->{'job_size'}
|
|
? floor(
|
|
100 * $jsonresponse->{'progress'} / $jsonresponse->{'job_size'}
|
|
)
|
|
: '100'
|
|
)
|
|
. "% completed"
|
|
);
|
|
sleep 5;
|
|
}
|
|
is( $jsonresponse->{'job_status'}, 'completed', 'job was completed' );
|
|
|
|
$agent->get_ok(
|
|
"$intranet/cgi-bin/koha/tools/stage-marc-import.pl",
|
|
'reopen stage MARC page at end of upload'
|
|
);
|
|
$agent->submit_form_ok(
|
|
{
|
|
form_number => 5,
|
|
fields => {
|
|
'uploadedfileid' => $fileid,
|
|
'nomatch_action' => 'create_new',
|
|
'overlay_action' => 'replace',
|
|
'item_action' => 'always_add',
|
|
'matcher' => '1',
|
|
'comments' => '',
|
|
'encoding' => 'UTF-8',
|
|
'parse_items' => '1',
|
|
'runinbackground' => '1',
|
|
'completedJobID' => $jobID,
|
|
'record_type' => 'biblio'
|
|
}
|
|
},
|
|
'stage MARC'
|
|
);
|
|
|
|
$agent->follow_link_ok( { text => 'Manage staged records' }, 'view batch' );
|
|
|
|
my $bookdescription;
|
|
if ( $marcflavour eq 'UNIMARC' ) {
|
|
$bookdescription = 'Jeffrey Esakov et Tom Weiss';
|
|
}
|
|
else {
|
|
$bookdescription = 'Data structures';
|
|
}
|
|
|
|
# Save the staged records URI for later use
|
|
my $staged_records_uri = $agent->uri;
|
|
|
|
my $import_batch_id = ( split( '=', $staged_records_uri->as_string ) )[-1];
|
|
# Get datatable for the batch id
|
|
$agent->get_ok(
|
|
"$intranet/cgi-bin/koha/tools/batch_records_ajax.pl?import_batch_id=$import_batch_id",
|
|
'get the datatable for the new batch id'
|
|
);
|
|
$jsonresponse = decode_json $agent->content;
|
|
like( $jsonresponse->{ aaData }[0]->{ citation }, qr/$bookdescription/, 'found book' );
|
|
is( $jsonresponse->{ aaData }[0]->{ status }, 'staged', 'record marked as staged' );
|
|
is( $jsonresponse->{ aaData }[0]->{ overlay_status }, 'no_match', 'record has no matches' );
|
|
|
|
# Back to the manage staged records page
|
|
$agent->get($staged_records_uri);
|
|
$agent->form_number(6);
|
|
$agent->field( 'framework', '' );
|
|
$agent->click_ok( 'mainformsubmit', "imported records into catalog" );
|
|
|
|
$agent->get("$intranet/cgi-bin/koha/tools/batch_records_ajax.pl?import_batch_id=$import_batch_id");
|
|
$jsonresponse = decode_json $agent->content;
|
|
is( $jsonresponse->{ aaData }[0]->{ status }, 'imported', 'record marked as imported' );
|
|
|
|
my $biblionumber = $jsonresponse->{aaData}[0]->{matched};
|
|
|
|
$agent->get_ok(
|
|
"$intranet/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber",
|
|
'getting imported bib' );
|
|
$agent->content_contains( 'Details for ' . $bookdescription,
|
|
'bib is imported' );
|
|
|
|
$agent->get($staged_records_uri);
|
|
$agent->form_number(5);
|
|
$agent->click_ok( 'mainformsubmit', "revert import" );
|
|
$agent->get_ok(
|
|
"$intranet/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber",
|
|
'getting reverted bib' );
|
|
$agent->content_contains( 'The record you requested does not exist',
|
|
'bib is gone' );
|
|
|
|
$agent->get("$intranet/cgi-bin/koha/tools/batch_records_ajax.pl?import_batch_id=$import_batch_id");
|
|
$jsonresponse = decode_json $agent->content;
|
|
is( $jsonresponse->{ aaData }[0]->{ status }, 'reverted', 'record marked as reverted' );
|
|
|