7b9b36bd2e
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
67 lines
1.8 KiB
Perl
67 lines
1.8 KiB
Perl
#!/usr/bin/perl
|
|
# checkin: test Checkin Response
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Clone qw(clone);
|
|
|
|
use Sip::Constants qw(:all);
|
|
|
|
use SIPtest qw($datepat $textpat $instid $user_barcode
|
|
$item_barcode $item_title);
|
|
|
|
my $checkin_test_template = {
|
|
id => 'Checkin: Item is checked out',
|
|
msg => "09N20060102 08423620060113 084235APUnder the bed|AO$instid|AB$item_barcode|ACterminal password|",
|
|
pat => qr/^101YNN$datepat/o,
|
|
fields => [
|
|
$SIPtest::field_specs{(FID_INST_ID)},
|
|
$SIPtest::field_specs{(FID_SCREEN_MSG)},
|
|
$SIPtest::field_specs{(FID_PRINT_LINE)},
|
|
{ field => FID_PATRON_ID,
|
|
pat => qr/^$user_barcode$/o,
|
|
required => 1, },
|
|
{ field => FID_ITEM_ID,
|
|
pat => qr/^$item_barcode$/o,
|
|
required => 1, },
|
|
{ field => FID_PERM_LOCN,
|
|
pat => $textpat,
|
|
required => 1, },
|
|
{ field => FID_TITLE_ID,
|
|
pat => qr/^$item_title\s*$/o,
|
|
required => 1, }, # not required by the spec.
|
|
],};
|
|
|
|
my $checkout_template = {
|
|
id => 'Checkin: prep: check out item',
|
|
msg => "11YN20060329 203000 AO$instid|AA$user_barcode|AB$item_barcode|AC|",
|
|
pat => qr/^121NNY$datepat/o,
|
|
fields => [],
|
|
};
|
|
|
|
my @tests = (
|
|
$SIPtest::login_test,
|
|
$SIPtest::sc_status_test,
|
|
$checkout_template,
|
|
$checkin_test_template,
|
|
);
|
|
|
|
my $test;
|
|
|
|
# Checkin item that's not checked out. Basically, this
|
|
# is identical to the first case, except the header says that
|
|
# the ILS didn't check the item in, and there's no patron id.
|
|
$test = clone($checkin_test_template);
|
|
$test->{id} = 'Checkin: Item not checked out';
|
|
$test->{pat} = qr/^100YNN$datepat/o;
|
|
$test->{fields} = [grep $_->{field} ne FID_PATRON_ID, @{$test->{fields}}];
|
|
|
|
push @tests, $test;
|
|
|
|
#
|
|
# Still need tests for magnetic media
|
|
#
|
|
|
|
SIPtest::run_sip_tests(@tests);
|
|
|
|
1;
|