remove unused search methods
[wolnelektury.git] / src / search / tests / index.py
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.
4 #
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
9 import tempfile
10 from catalogue.models import Book
11 from search.index import Index, Search
12 import catalogue
13 import opds
14
15
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):
20     def setUp(self):
21         WLTestCase.setUp(self)
22
23         index = Index()
24         self.search = Search()
25         index.delete_query(self.search.index.query(uid="*"))
26         index.index.commit()
27
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))
32
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
37     #     for b in books:
38     #         b.book_id == self.book.id
39     #     a = SearchResult.aggregate(books)
40     #     # just one fragment hit.
41     #     assert len(a[0].hits) == 1