- 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]
+ assert books[0].id == self.do_anusie.id
+
+ # TODO: Add slop option to sunburnt
+ # def test_search_perfect_parts(self):
+ # books = self.search.search_phrase(u"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(a[0].hits) == 1