X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/124258c72bb9e69e6336de195f3a3b3e74509b95..38d1b1c2437dae93c0a981a26579908b26ef969b:/apps/search/tests/index.py?ds=sidebyside
diff --git a/apps/search/tests/index.py b/apps/search/tests/index.py
index 5b37cf05a..ef253e4c1 100644
--- a/apps/search/tests/index.py
+++ b/apps/search/tests/index.py
@@ -1,6 +1,9 @@
+# -*- coding: utf-8 -*-
+
from __future__ import with_statement
-from search import Index, Search, IndexStore
+from django.conf import settings
+from search import Index, Search, IndexStore, JVM, SearchResult
from catalogue import models
from catalogue.test_utils import WLTestCase
from lucene import PolishAnalyzer, Version
@@ -8,27 +11,68 @@ from lucene import PolishAnalyzer, Version
from os import path
-
-
class BookSearchTests(WLTestCase):
def setUp(self):
+ JVM.attachCurrentThread()
WLTestCase.setUp(self)
+ settings.NO_SEARCH_INDEX = False
+ settings.SEARCH_INDEX = path.join(settings.MEDIA_ROOT, 'search')
txt = path.join(path.dirname(__file__), 'files/fraszka-do-anusie.xml')
self.book = models.Book.from_xml_file(txt)
- search = Index() #PolishAnalyzer(Version.LUCENE_34))
- with search:
- search.index_book(self.book)
- print "index: %s" % search
-
- def test_search(self):
- search = Search()
- bks,_= search.search("wolne")
- self.assertEqual(len(bks), 1)
- self.assertEqual(bks[0].id, 1)
-
- bks,_= search.search("technical_editors: sutkowska")
- self.assertEqual(len(bks), 1)
- self.assertEqual(bks[0].id, 1)
-
+ index = Index()
+ index.open()
+ try:
+ index.index_book(self.book)
+ except:
+ index.close()
+
+ self.search = Search()
+
+ def test_search_perfect_book_author(self):
+ books = self.search.search_perfect_book("sÄp szarzyÅski")
+ assert len(books) == 1
+ assert books[0].book_id == self.book.id
+
+ def test_search_perfect_book_title(self):
+ books = self.search.search_perfect_book("fraszka anusie")
+ assert len(books) == 1
+ assert books[0].book_id == self.book.id
+
+ def test_search_perfect_parts(self):
+ books = self.search.search_perfect_parts("Jakoż hamowaÄ")
+ assert len(books) == 2
+ for b in books:
+ b.book_id == self.book.id
+ a = SearchResult.aggregate(books)
+ # just one fragment hit.
+ assert len(filter(lambda x: x[1], a[0].hits)) == 1
+ print a[0].process_hits()
+
+ def test_search_perfect_author_title(self):
+ books = self.search.search_perfect_book("szarzyÅski anusie")
+ assert books == []
+
+ books = self.search.search_book("szarzyÅski anusie")
+ assert len(books) == 1
+
+ books = self.search.search_book("szarzyÅski fraszka")
+ assert len(books) == 1
+
+ def test_search_everywhere(self):
+ books = self.search.search_everywhere("szarzyÅski kochanek")
+ print 'szarzyÅski kochanek %s' % [b.hits for b in books]
+
+ books = self.search.search_everywhere("szarzyÅski narcyz")
+ print 'szarzyÅski narcyz %s' % [b.hits for b in books]
+
+ books = self.search.search_everywhere("anusie narcyz")
+ print 'anusie narcyz %s' % [b.hits for b in books]
+
+ # theme content cross
+ books = self.search.search_everywhere("wzrok boginie")
+ print 'wzrok boginie %s' % [b.hits for b in books]
+
+ books = self.search.search_everywhere("anusie pÅynÄÅy zdroje")
+ print 'anusie pÅynÄÅy zdroje %s' % [b.hits for b in books]