[Zope-Checkins] CVS: Zope2 - testUnTextIndex.py:1.1.4.3
Chris McDonough
chrism@digicool.com
Thu, 22 Mar 2001 13:34:08 -0500 (EST)
Update of /cvs-repository/Zope2/lib/python/SearchIndex/tests
In directory korak:/home/chrism/sandboxes/2_3Branch/lib/python/SearchIndex/tests
Modified Files:
Tag: zope-2_3-branch
testUnTextIndex.py
Log Message:
Added test for textindex_operator query.
--- Updated File testUnTextIndex.py in package Zope2 --
--- testUnTextIndex.py 2001/03/22 18:25:44 1.1.4.2
+++ testUnTextIndex.py 2001/03/22 18:34:08 1.1.4.3
@@ -331,6 +331,24 @@
r=list(r[0].keys())
assert r == [0, 6], r
+ def checkTextIndexOperatorQuery(self):
+ "Check a query with 'textindex_operator' in the request"
+ index=self.dbopen()
+ index._lexicon = SearchIndex.GlobbingLexicon.GlobbingLexicon()
+
+ for i in range(len(self.sample_texts)):
+ self.doc.text=self.sample_texts[i]
+ index.index_object(i, self.doc)
+ get_transaction().commit()
+
+ self.dbclose()
+
+ index=self.dbopen()
+
+ r = index._apply_index({'text':'time men','textindex_operator':'and'})
+ r=list(r[0].keys())
+ assert r == [0], r
+
def test_suite():
return unittest.makeSuite(Tests, 'check')