Jonathan Druart
f1f9c6dc74
.pm must not have -x .t must have -x .pl must have -x Test plan: Apply only the first patch, run the tests and confirm that the failures make sense Apply this patch and confirm that the test now returns green Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
41 lines
1.5 KiB
Perl
Executable file
41 lines
1.5 KiB
Perl
Executable file
use Modern::Perl;
|
|
|
|
use Test::More tests => 1;
|
|
use t::lib::Mocks;
|
|
use t::lib::TestBuilder;
|
|
|
|
use C4::Items;
|
|
use Koha::Database;
|
|
|
|
my $schema = Koha::Database->new->schema;
|
|
$schema->storage->txn_begin;
|
|
|
|
subtest 'GetHostItemsInfo' => sub {
|
|
plan tests => 3;
|
|
|
|
my $builder = t::lib::TestBuilder->new;
|
|
my $bib1 = $builder->build_sample_biblio;
|
|
my $itm1 = $builder->build_sample_item({ biblionumber => $bib1->biblionumber });
|
|
my $itm2 = $builder->build_sample_item({ biblionumber => $bib1->biblionumber });
|
|
my $marc = MARC::Record->new;
|
|
$marc->append_fields(
|
|
MARC::Field->new( '461', '', '', 0 => $bib1->biblionumber, 9 => $itm1->itemnumber ),
|
|
MARC::Field->new( '773', '', '', 0 => $bib1->biblionumber, 9 => $itm1->itemnumber ),
|
|
MARC::Field->new( '773', '', '', 0 => $bib1->biblionumber, 9 => $itm2->itemnumber ),
|
|
);
|
|
|
|
t::lib::Mocks::mock_preference('marcflavour', 'MARC21');
|
|
t::lib::Mocks::mock_preference('EasyAnalyticalRecords', 0);
|
|
my @a = C4::Items::GetHostItemsInfo( $marc );
|
|
is( @a, 0, 'GetHostItemsInfo returns empty list when pref is disabled' );
|
|
|
|
t::lib::Mocks::mock_preference('EasyAnalyticalRecords', 1);
|
|
@a = C4::Items::GetHostItemsInfo( $marc );
|
|
is( @a, 2, 'GetHostItemsInfo returns two items for MARC21' );
|
|
|
|
t::lib::Mocks::mock_preference('marcflavour', 'UNIMARC');
|
|
@a = C4::Items::GetHostItemsInfo( $marc );
|
|
is( @a, 1, 'GetHostItemsInfo returns one item for UNIMARC' );
|
|
};
|
|
|
|
$schema->storage->txn_rollback;
|