Lines 19-25
Link Here
|
19 |
|
19 |
|
20 |
use Modern::Perl; |
20 |
use Modern::Perl; |
21 |
|
21 |
|
22 |
use Test::More tests => 9; |
22 |
use Test::More tests => 10; |
23 |
use Test::Exception; |
23 |
use Test::Exception; |
24 |
|
24 |
|
25 |
use C4::Biblio; |
25 |
use C4::Biblio; |
Lines 29-34
use Koha::Items;
Link Here
|
29 |
use Koha::Database; |
29 |
use Koha::Database; |
30 |
use Koha::DateUtils; |
30 |
use Koha::DateUtils; |
31 |
use Koha::Old::Items; |
31 |
use Koha::Old::Items; |
|
|
32 |
use Koha::AuthorisedValueCategories; |
33 |
use Koha::AuthorisedValues; |
32 |
|
34 |
|
33 |
use List::MoreUtils qw(all); |
35 |
use List::MoreUtils qw(all); |
34 |
|
36 |
|
Lines 795-797
subtest 'get_transfers' => sub {
Link Here
|
795 |
|
797 |
|
796 |
$schema->storage->txn_rollback; |
798 |
$schema->storage->txn_rollback; |
797 |
}; |
799 |
}; |
798 |
- |
800 |
|
|
|
801 |
subtest '_fetch_authorised_values' => sub { |
802 |
plan tests => 1; |
803 |
|
804 |
$schema->storage->txn_begin; |
805 |
|
806 |
# Delete all Authorised Values of 'Countries' category |
807 |
Koha::AuthorisedValues->search({category => 'Countries'})->delete; |
808 |
Koha::AuthorisedValueCategories->search({category_name => 'Countries'})->delete; |
809 |
|
810 |
# Create 'Countries' category and authorised value |
811 |
my $cat = $builder->build_object({ class => 'Koha::AuthorisedValueCategories'}); |
812 |
my $country = $builder->build_object({ class => 'Koha::AuthorisedValues', value => { category => $cat->category_name } }); |
813 |
|
814 |
# Create a new biblio framework |
815 |
my $fw = $builder->build_object({ class => 'Koha::BiblioFrameworks' }); |
816 |
|
817 |
# Add a Marc subfield with kohafield setted to 'items.itemnote' |
818 |
$builder->build_object({class => 'Koha::MarcSubfieldStructures', value => {frameworkcode => $fw->frameworkcode, authorised_value => $cat->category_name, kohafield => 'items.itemnotes'}}); |
819 |
|
820 |
# Create biblio and item |
821 |
my $biblio = $builder->build_sample_biblio({frameworkcode => $fw->frameworkcode}); |
822 |
my $item = $builder->build_sample_item({biblionumber => $biblio->biblionumber, itemnotes => $country->authorised_value}); |
823 |
|
824 |
# Fetch authorised values |
825 |
my $avs = $item->_fetch_authorised_values(); |
826 |
|
827 |
is($avs->{itemnotes}->{lib}, $country->lib, 'Fetched auhtorised value is ok'); |
828 |
|
829 |
$schema->storage->txn_rollback; |
830 |
}; |