X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/86d90bc46005c00f2367ad759804f528adc4c6a5..54126633f6078ebb86b53c614fcb243039e839fb:/tests/steps/api_result.py diff --git a/tests/steps/api_result.py b/tests/steps/api_result.py index d83aa83d..17d5e4eb 100644 --- a/tests/steps/api_result.py +++ b/tests/steps/api_result.py @@ -27,7 +27,7 @@ def _parse_xml(): world.results = [] # results - if page.nodeName == 'searchresults': + if page.nodeName == 'searchresults' or page.nodeName == 'lookupresults': for node in page.childNodes: if node.nodeName != "#text": assert_equals(node.nodeName, 'place', msg="Unexpected element '%s'" % node.nodeName) @@ -143,6 +143,11 @@ def api_result_header_contains(step): assert_in(line['attr'], world.result_header) m = re.match("%s$" % (line['value'],), world.result_header[line['attr']]) +@step(u'result header has no attribute (.*)') +def api_result_header_contains_not(step, attr): + step.given('the result is valid') + assert_not_in(attr, world.result_header) + @step(u'results contain$') def api_result_contains(step): step.given('at least 1 result is returned') @@ -194,7 +199,10 @@ def api_result_address_exact(step, resid): addr = world.results[resid]['address'] for line in step.hashes: assert_in(line['type'], addr) - assert_equals(line['value'], addr[line['type']]) + m = re.match("%s$" % line['value'], addr[line['type']]) + assert_is_not_none(m, msg="field %s does not match: %s$ != %s." % ( + line['type'], line['value'], addr[line['type']])) + #assert_equals(line['value'], addr[line['type']]) @step(u'address of result (\d+) does not contain (.*)') def api_result_address_details_missing(step, resid, types):