[Zope-Checkins] CVS: Zope/lib/python/Products/ZCatalog/tests - testCatalog.py:1.26

Andreas Jung andreas at andreas-jung.com
Thu Jan 8 02:44:32 EST 2004


Update of /cvs-repository/Zope/lib/python/Products/ZCatalog/tests
In directory cvs.zope.org:/tmp/cvs-serv25306

Modified Files:
	testCatalog.py 
Log Message:
using record-style parameters for queries


=== Zope/lib/python/Products/ZCatalog/tests/testCatalog.py 1.25 => 1.26 ===
--- Zope/lib/python/Products/ZCatalog/tests/testCatalog.py:1.25	Tue Nov 18 08:17:11 2003
+++ Zope/lib/python/Products/ZCatalog/tests/testCatalog.py	Thu Jan  8 02:44:32 2004
@@ -373,20 +373,20 @@
             self.assertEqual(a[x].data_record_score_, 1)
 
     def testKeywordIndexWithMinRange(self):
-        a = self._catalog(att3='att', att3_usage='range:min')
+        a = self._catalog(att3={'query': 'att', 'range': 'min'})
         self.assertEqual(len(a), self.upper)
 
     def testKeywordIndexWithMaxRange(self):
-        a = self._catalog(att3='att35', att3_usage='range:max')
+        a = self._catalog(att3={'query': 'att35', 'range': ':max'})
         self.assertEqual(len(a), self.upper)
 
     def testKeywordIndexWithMinMaxRangeCorrectSyntax(self):
-        a = self._catalog(att3=['att', 'att35'], att3_usage='range:min:max')
+        a = self._catalog(att3={'query': ['att', 'att35'], 'range': 'min:max'})
         self.assertEqual(len(a), self.upper)
 
     def testKeywordIndexWithMinMaxRangeWrongSyntax(self):
         # checkKeywordIndex with min/max range wrong syntax.
-        a = self._catalog(att3=['att'], att3_usage='range:min:max')
+        a = self._catalog(att3={'query': ['att'], 'range': 'min:max'})
         self.assert_(len(a) != self.upper)
 
     def testCombinedTextandKeywordQuery(self):
@@ -463,13 +463,11 @@
 
     def testRangeSearch(self):
         for i in range(10000):
-
             m = random.randrange(0,20000)
             n = m + 1000
 
             for r  in self._catalog.searchResults(
-                { "number" : (m,n) ,
-                  "length_usage" : "range:min:max" } ):
+                 number= {'query': (m,n) , 'range' : 'min:max' } ):
                 size = r.number
                 self.assert_(m<=size and size<=n,
                              "%d vs [%d,%d]" % (r.number,m,n))




More information about the Zope-Checkins mailing list