1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*
* Copyright (C) 2021 Maneesh P M <manu.pm55@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
* NON-INFRINGEMENT. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#define ZIM_PRIVATE
#include <zim/archive.h>
#include <zim/search.h>
#include <zim/search_iterator.h>
#include <zim/error.h>
#include "tools.h"
#include "gtest/gtest.h"
namespace {
using zim::unittests::TempZimArchive;
TEST(search_iterator, uninitialized) {
zim::SearchResultSet::iterator it;
ASSERT_EQ(it.getTitle(), "");
ASSERT_EQ(it.getPath(), "");
ASSERT_EQ(it.getSnippet(), "");
ASSERT_EQ(it.getScore(), 0);
ASSERT_EQ(it.getFileIndex(), 0);
ASSERT_EQ(it.getWordCount(), -1);
ASSERT_EQ(it.getSize(), -1);
ASSERT_THROW(it.getZimId(), std::runtime_error);
ASSERT_THROW(*it, std::runtime_error);
ASSERT_THROW(it.operator->(), std::runtime_error);
}
TEST(search_iterator, end) {
TempZimArchive tza("testZim");
zim::Archive archive = tza.createZimFromContent({
{"article 1", "item a"}
});
zim::Searcher searcher(archive);
zim::Query query("item");
auto search = searcher.search(query);
auto result = search.getResults(0, archive.getEntryCount());
auto it = result.end();
ASSERT_THROW(it.getTitle(), std::runtime_error);
ASSERT_THROW(it.getPath(), std::runtime_error);
ASSERT_EQ(it.getSnippet(), "");
// ASSERT_EQ(it.getScore(), 0); Unspecified, may be 0 or 1. To fix.
ASSERT_EQ(it.getFileIndex(), 0);
ASSERT_THROW(it.getWordCount(), std::runtime_error);
ASSERT_EQ(it.getSize(), -1);
ASSERT_THROW(*it, std::runtime_error);
ASSERT_THROW(it.operator->(), std::runtime_error);
}
TEST(search_iterator, copy) {
TempZimArchive tza("testZim");
zim::Archive archive = tza.createZimFromContent({
{"article 1", "item a"}
});
zim::Searcher searcher(archive);
zim::Query query(std::string("item"));
auto search = searcher.search(query);
auto result = search.getResults(0, archive.getEntryCount());
auto it = result.begin();
auto it2 = it;
ASSERT_EQ(it.getTitle(), it2.getTitle());
it = result.end();
it2 = it;
ASSERT_EQ(it, it2);
ASSERT_THROW(it.getTitle(), std::runtime_error);
ASSERT_THROW(it2.getTitle(), std::runtime_error);
}
TEST(search_iterator, functions) {
TempZimArchive tza("testZim");
zim::Archive archive = tza.createZimFromContent({
{"item a", "item item item"},
{"Item B", "item item 2"},
{"iTem ć", "item number 3"} // forcing an order using wdf
});
zim::Searcher searcher(archive);
zim::Query query("item");
auto search = searcher.search(query);
auto result = search.getResults(0, archive.getEntryCount());
auto it = result.begin();
// Test functions
ASSERT_EQ(it.getTitle(), "item a");
ASSERT_EQ(it.getPath(), "dummyPathitem a");
ASSERT_EQ(it.getScore(), 100);
ASSERT_EQ(it.getFileIndex(), 0);
ASSERT_EQ(it.getZimId(), archive.getUuid());
ASSERT_EQ(it.getWordCount(), 3);
ASSERT_EQ(it.getSize(), -1); // Unimplemented
// Check getTitle for accents/cased text
it++;
ASSERT_EQ(it.getTitle(), "Item B");
it++;
ASSERT_EQ(it.getTitle(), "iTem ć");
}
TEST(search_iterator, iteration) {
TempZimArchive tza("testZim");
zim::Archive archive = tza.createZimFromContent({
{"article 1", "item"},
{"article 2", "another item in article 2"} // different wdf
});
zim::Searcher searcher(archive);
auto search = searcher.search(std::string("item"));
auto result = search.getResults(0, archive.getEntryCount());
auto it = result.begin();
ASSERT_EQ(it.getTitle(), result.begin().getTitle());
ASSERT_EQ(it.getTitle(), "article 1");
it++;
ASSERT_EQ(it.getTitle(), "article 2");
ASSERT_TRUE(it != result.begin());
it--;
ASSERT_EQ(it.getTitle(), "article 1");
ASSERT_TRUE(result.begin() == it);
it++; it++;
ASSERT_TRUE(it == result.end());
}
} // anonymous namespace
|