Bug 26903: Unit tests
authorNick Clemens <nick@bywatersolutions.com>
Fri, 13 Nov 2020 16:33:12 +0000 (16:33 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 17 Nov 2020 10:51:25 +0000 (11:51 +0100)
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
t/db_dependent/Koha/SearchEngine/Elasticsearch/Indexer.t

index 546f926..42e9266 100755 (executable)
 
 use Modern::Perl;
 
-use Test::More tests => 2;
+use Test::More tests => 3;
 use Test::MockModule;
+use Test::Warn;
 use t::lib::Mocks;
+use t::lib::TestBuilder;
 
 use MARC::Record;
 
@@ -35,9 +37,12 @@ SKIP: {
 
     eval { Koha::SearchEngine::Elasticsearch->get_elasticsearch_params; };
 
-    skip 'Elasticsearch configuration not available', 1
+    skip 'Elasticsearch configuration not available', 2
         if $@;
 
+my $builder = t::lib::TestBuilder->new;
+my $biblio = $builder->build_sample_biblio; # create biblio before we start mocking to avoid trouble indexing on creation
+
 subtest 'create_index() tests' => sub {
     plan tests => 6;
     my $se = Test::MockModule->new( 'Koha::SearchEngine::Elasticsearch' );
@@ -81,4 +86,28 @@ subtest 'create_index() tests' => sub {
     );
 };
 
+subtest 'index_records() tests' => sub {
+    plan tests => 2;
+    my $mock_index = Test::MockModule->new("Koha::SearchEngine::Elasticsearch::Indexer");
+    $mock_index->mock( update_index => sub {
+        my ($self, $record_ids, $records) = @_;
+        warn $record_ids->[0] . $records->[0]->as_usmarc;
+    });
+
+    my $indexer = Koha::SearchEngine::Elasticsearch::Indexer->new({ 'index' => 'authorities' });
+
+    my $marc_record = MARC::Record->new();
+    $marc_record->append_fields(
+        MARC::Field->new('001', '1234567'),
+        MARC::Field->new('100', '', '', 'a' => 'Rosenstock, Jeff'),
+    );
+    warning_is{ $indexer->index_records([42],'specialUpdate','authorityserver',[$marc_record]); } "42".$marc_record->as_usmarc,
+        "When passing record and ids to index_records they are correctly passed through to update_index";
+
+    $indexer = Koha::SearchEngine::Elasticsearch::Indexer->new({ 'index' => 'biblios' });
+    $marc_record = C4::Biblio::GetMarcBiblio({ biblionumber => $biblio->biblionumber, embed_items  => 1 });
+    warning_is{ $indexer->index_records([$biblio->biblionumber],'specialUpdate','biblioserver'); } $biblio->biblionumber.$marc_record->as_usmarc,
+        "When passing id only to index_records the marc record is fetched and passed through to update_index";
+};
+
 }