Merge remote branch 'kc/new/bug_5327' into kcmaster

This commit is contained in:
Chris Cormack 2011-01-19 11:26:18 +13:00
commit 73f0857003
3 changed files with 43 additions and 15 deletions

View file

@ -1,14 +0,0 @@
#!/usr/bin/perl
#
# This Koha test module is a stub!
# Add more tests here!!!
use strict;
use warnings;
use Test::More tests => 1;
BEGIN {
use_ok('C4::Biblio');
}

View file

@ -6,7 +6,7 @@
use strict;
use warnings;
use Test::More tests => 9;
use Test::More tests => 10;
use MARC::Record;
BEGIN {
@ -98,6 +98,9 @@ my $test5xml=qq(\@book{,
is ($bibtex, $test5xml, "testing bibtex");
my @entity=C4::Record::_entity_encode("Björn");
is ($entity[0], "Björn", "Html umlauts");

39
t/db_dependent/Biblio.t Executable file
View file

@ -0,0 +1,39 @@
#!/usr/bin/perl
#
# This Koha test module is a stub!
# Add more tests here!!!
use strict;
use warnings;
use Test::More tests => 6;
use MARC::Record;
use C4::Biblio;
BEGIN {
use_ok('C4::Biblio');
}
my $isbn = '0590353403';
my $title = 'Foundation';
my $marc_record=MARC::Record->new;
my $field = MARC::Field->new('020','','','a' => $isbn);
$marc_record->append_fields($field);
my($biblionumber,$biblioitemnumber) = AddBiblio($marc_record,'');
my $data = &GetBiblioData($biblionumber);
is($data->{Title},undef,'Makes sure title field in biblio is empty.');
$field = MARC::Field->new('245','','','a' => $title);
$marc_record->append_fields($field);
ModBiblio($marc_record,$biblionumber,'');
$data = &GetBiblioData($biblionumber);
is($data->{title},$title,'uses ModBiblio to add a title to the previously created record and checks that its there.');
is($data->{isbn},$isbn,'Makes sure the isbn is still there after using ModBiblio.');
my $itemdata = &GetBiblioItemData($biblioitemnumber);
is($itemdata->{title},$title,'First test of GetBiblioItemData to get same result of previous two GetBiblioData tests.');
is($itemdata->{isbn},$isbn,'Second test checking it returns the correct isbn.');
# clean up after ourselves
DelBiblio($biblionumber);