1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 from unittest import skipIf
6 from django.conf import settings
7 from django.test.utils import override_settings
8 from catalogue.test_utils import WLTestCase, get_fixture
10 from catalogue.models import Book
11 from search.index import Index, Search
16 @override_settings(SEARCH_INDEX=tempfile.mkdtemp(prefix='djangotest_search_'))
17 @skipIf(getattr(settings, 'NO_SEARCH_INDEX', False),
18 u'Requires search server and NO_SEARCH_INDEX=False.')
19 class BookSearchTests(WLTestCase):
21 WLTestCase.setUp(self)
24 self.search = Search()
25 index.delete_query(self.search.index.query(uid="*"))
28 self.do_doktora = Book.from_xml_file(
29 get_fixture('do-doktora.xml', opds))
30 self.do_anusie = Book.from_xml_file(
31 get_fixture('fraszka-do-anusie.xml', catalogue))
33 # TODO: Add slop option to sunburnt
34 # def test_search_perfect_parts(self):
35 # books = self.search.search_phrase(u"Jakoż hamować")
36 # assert len(books) == 2
38 # b.book_id == self.book.id
39 # a = SearchResult.aggregate(books)
40 # # just one fragment hit.
41 # assert len(a[0].hits) == 1