]> git.openstreetmap.org Git - nominatim.git/blobdiff - tests/steps/api_result.py
add mention of required Tiger files for test database
[nominatim.git] / tests / steps / api_result.py
index 5e1bcc90e09ee0b8ae82e101939f8a3fcc4c4917..2644d4a20c7489589ab5045d01c4c44fc06a67eb 100644 (file)
@@ -211,6 +211,15 @@ def api_result_contains(step):
                         m = re.match("%s$" % (v,), curres[k])
                         assert_is_not_none(m, msg="field %s does not match: %s$ != %s." % (k, v, curres[k]))
 
+@step(u'results contain valid boundingboxes$')
+def api_result_address_contains(step):
+    step.given('the result is valid')
+    for curres in world.results:
+        bb = curres['boundingbox']
+        if world.response_format == 'json':
+            bb = ','.join(bb)
+        m = re.match('^(-?\d+\.\d+),(-?\d+\.\d+),(-?\d+\.\d+),(-?\d+\.\d+)$', bb)
+        assert_is_not_none(m, msg="invalid boundingbox: %s." % (curres['boundingbox']))
 
 @step(u'result addresses contain$')
 def api_result_address_contains(step):