Line 0
Link Here
|
0 |
- |
1 |
#!/usr/bin/perl |
|
|
2 |
# |
3 |
# This file is part of Koha. |
4 |
# |
5 |
# Koha is free software; you can redistribute it and/or modify it |
6 |
# under the terms of the GNU General Public License as published by |
7 |
# the Free Software Foundation; either version 3 of the License, or |
8 |
# (at your option) any later version. |
9 |
# |
10 |
# Koha is distributed in the hope that it will be useful, but |
11 |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
# GNU General Public License for more details. |
14 |
# |
15 |
# You should have received a copy of the GNU General Public License |
16 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
17 |
|
18 |
use Modern::Perl; |
19 |
|
20 |
use Test::More tests => 16; |
21 |
|
22 |
use Koha::Database; |
23 |
use Koha::SearchFields; |
24 |
use Koha::SearchMarcMaps; |
25 |
|
26 |
use_ok('Koha::SearchEngine::Elasticsearch'); |
27 |
|
28 |
my $schema = Koha::Database->new->schema; |
29 |
|
30 |
$schema->storage->txn_begin; |
31 |
|
32 |
Koha::SearchFields->search->delete; |
33 |
Koha::SearchMarcMaps->search->delete; |
34 |
$schema->resultset('SearchMarcToField')->search->delete; |
35 |
|
36 |
|
37 |
|
38 |
my $search_field = Koha::SearchFields->find_or_create( |
39 |
{ |
40 |
name => 'title', |
41 |
label => 'Title', |
42 |
type => 'string', |
43 |
weight => 17 |
44 |
|
45 |
}, |
46 |
{ key => 'name' } ); |
47 |
|
48 |
my $marc_field = Koha::SearchMarcMaps->find_or_create( |
49 |
{ |
50 |
index_name => 'biblios', |
51 |
marc_type => 'marc21', |
52 |
marc_field => '247' |
53 |
} ); |
54 |
|
55 |
$search_field->add_to_search_marc_maps($marc_field, |
56 |
{ |
57 |
facet => 0, |
58 |
suggestible => 0, |
59 |
sort => undef |
60 |
} ); |
61 |
|
62 |
$marc_field = Koha::SearchMarcMaps->find_or_create( |
63 |
{ |
64 |
index_name => 'biblios', |
65 |
marc_type => 'marc21', |
66 |
marc_field => '212' |
67 |
} ); |
68 |
|
69 |
$search_field->add_to_search_marc_maps($marc_field, |
70 |
{ |
71 |
facet => 0, |
72 |
suggestible => 0, |
73 |
sort => undef |
74 |
} ); |
75 |
|
76 |
$marc_field = Koha::SearchMarcMaps->find_or_create( |
77 |
{ |
78 |
index_name => 'biblios', |
79 |
marc_type => 'unimarc', |
80 |
marc_field => '200a' |
81 |
} ); |
82 |
|
83 |
$search_field->add_to_search_marc_maps($marc_field, |
84 |
{ |
85 |
facet => 0, |
86 |
suggestible => 1, |
87 |
sort => undef |
88 |
} ); |
89 |
|
90 |
my $mappings = Koha::SearchEngine::Elasticsearch::raw_elasticsearch_mappings(); |
91 |
|
92 |
is( $mappings->{biblios}{title}{type}, 'string', 'Title is of type string'); |
93 |
is( $mappings->{biblios}{title}{label}, 'Title', 'title has label Title'); |
94 |
is( $mappings->{biblios}{title}{facet_order}, undef, 'Facet order is undef'); |
95 |
|
96 |
is(scalar(@{ $mappings->{biblios}{title}{mappings} }), 3, 'Title has 3 mappings'); |
97 |
|
98 |
my $f247_map = $mappings->{biblios}{title}{mappings}[0]; |
99 |
is( $f247_map->{marc_field}, 247, 'First mapping is on field 247'); |
100 |
is( $f247_map->{marc_type}, 'marc21', 'First mapping is for marc21'); |
101 |
is( $f247_map->{facet}, '', 'First mapping facet is empty'); |
102 |
is( $f247_map->{suggestible}, '', 'First mapping is not suggestible'); |
103 |
is( $f247_map->{sort}, undef, 'First mapping is not sortable'); |
104 |
|
105 |
my $f212_map = $mappings->{biblios}{title}{mappings}[1]; |
106 |
is( $f212_map->{marc_field}, 212, 'Second mapping is on field 247'); |
107 |
is( $f212_map->{marc_type}, 'marc21', 'Second mapping is for marc21'); |
108 |
is( $f212_map->{facet}, '', 'Second mapping facet is empty'); |
109 |
is( $f212_map->{suggestible}, '', 'Second mapping is not suggestible'); |
110 |
is( $f212_map->{sort}, undef, 'Second mapping is not sortable'); |
111 |
|
112 |
$mappings = Koha::SearchEngine::Elasticsearch::raw_elasticsearch_mappings('unimarc'); |
113 |
|
114 |
is(scalar(@{ $mappings->{biblios}{title}{mappings} }), 1, 'Title has 1 mappings'); |
115 |
|
116 |
$schema->storage->txn_rollback; |