Bug 27724: Add unit test
[koha.git] / t / db_dependent / Koha / SearchEngine / Elasticsearch / ExportConfig.t
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 => 19;
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         staff_client => 0,
45         opac         => 1,
46         mandatory    => 1
47     },
48     { key => 'name' } );
49
50 my $marc_field = Koha::SearchMarcMaps->find_or_create(
51     {
52         index_name => 'biblios',
53         marc_type => 'marc21',
54         marc_field => '247'
55     } );
56
57 $search_field->add_to_search_marc_maps($marc_field,
58     {
59         facet => 0,
60         suggestible => 0,
61         sort => undef
62     } );
63
64 $marc_field = Koha::SearchMarcMaps->find_or_create(
65     {
66         index_name => 'biblios',
67         marc_type => 'marc21',
68         marc_field => '212'
69     } );
70
71 $search_field->add_to_search_marc_maps($marc_field,
72     {
73         facet => 0,
74         suggestible => 0,
75         sort => undef
76     } );
77
78 $marc_field = Koha::SearchMarcMaps->find_or_create(
79     {
80         index_name => 'biblios',
81         marc_type => 'unimarc',
82         marc_field => '200a'
83     } );
84
85 $search_field->add_to_search_marc_maps($marc_field,
86     {
87         facet => 0,
88         suggestible => 1,
89         sort => undef
90     } );
91
92 my $mappings = Koha::SearchEngine::Elasticsearch::raw_elasticsearch_mappings();
93
94 is( $mappings->{biblios}{title}{type}, 'string', 'Title is of type string');
95 is( $mappings->{biblios}{title}{label}, 'Title', 'title has label Title');
96 is( $mappings->{biblios}{title}{facet_order}, undef, 'Facet order is undef');
97 is( $mappings->{biblios}{title}{opac}, 1, 'title is opac searchable');
98 is( $mappings->{biblios}{title}{staff_client}, 0, 'title is not staff searchable');
99 is( $mappings->{biblios}{title}{mandatory}, 1, 'title is mandatory');
100
101 is(scalar(@{ $mappings->{biblios}{title}{mappings} }), 3, 'Title has 3 mappings');
102
103 my $f212_map = $mappings->{biblios}{title}{mappings}[0];
104 is( $f212_map->{marc_field}, 212, 'First mapping is on field 212');
105 is( $f212_map->{marc_type}, 'marc21', 'First mapping is for marc21');
106 is( $f212_map->{facet}, '', 'First mapping facet is empty');
107 is( $f212_map->{suggestible}, '', 'First mapping is not suggestible');
108 is( $f212_map->{sort}, undef, 'First mapping is not sortable');
109
110 my $f247_map = $mappings->{biblios}{title}{mappings}[1];
111 is( $f247_map->{marc_field}, 247, 'Second mapping is on field 247');
112 is( $f247_map->{marc_type}, 'marc21', 'Second mapping is for marc21');
113 is( $f247_map->{facet}, '', 'Second mapping facet is empty');
114 is( $f247_map->{suggestible}, '', 'Second mapping is not suggestible');
115 is( $f247_map->{sort}, undef, 'Second mapping is not sortable');
116
117 $mappings = Koha::SearchEngine::Elasticsearch::raw_elasticsearch_mappings('unimarc');
118
119 is(scalar(@{ $mappings->{biblios}{title}{mappings} }), 1, 'Title has 1 mappings');
120
121 $schema->storage->txn_rollback;