mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
replace nose assertions with simple asserts
This commit is contained in:
@@ -13,7 +13,8 @@ import xml.etree.ElementTree as ET
|
||||
import subprocess
|
||||
from urllib.parse import urlencode
|
||||
from collections import OrderedDict
|
||||
from nose.tools import * # for assert functions
|
||||
|
||||
from check_functions import Almost
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
@@ -69,20 +70,19 @@ class GenericResponse(object):
|
||||
if h == 'ID':
|
||||
pass
|
||||
elif h == 'osm':
|
||||
assert_equal(res['osm_type'], row[h][0])
|
||||
assert_equal(res['osm_id'], int(row[h][1:]))
|
||||
assert res['osm_type'] == row[h][0]
|
||||
assert res['osm_id'] == int(row[h][1:])
|
||||
elif h == 'centroid':
|
||||
x, y = row[h].split(' ')
|
||||
assert_almost_equal(float(y), float(res['lat']))
|
||||
assert_almost_equal(float(x), float(res['lon']))
|
||||
assert Almost(float(y)) == float(res['lat'])
|
||||
assert Almost(float(x)) == float(res['lon'])
|
||||
elif row[h].startswith("^"):
|
||||
assert_in(h, res)
|
||||
assert_is_not_none(re.fullmatch(row[h], res[h]),
|
||||
"attribute '%s': expected: '%s', got '%s'"
|
||||
% (h, row[h], res[h]))
|
||||
assert h in res
|
||||
assert re.fullmatch(row[h], res[h]) is not None, \
|
||||
"attribute '%s': expected: '%s', got '%s'" % (h, row[h], res[h])
|
||||
else:
|
||||
assert_in(h, res)
|
||||
assert_equal(str(res[h]), str(row[h]))
|
||||
assert h in res
|
||||
assert str(res[h]) == str(row[h])
|
||||
|
||||
def property_list(self, prop):
|
||||
return [ x[prop] for x in self.result ]
|
||||
@@ -124,7 +124,7 @@ class SearchResponse(GenericResponse):
|
||||
self.header = dict(et.attrib)
|
||||
|
||||
for child in et:
|
||||
assert_equal(child.tag, "place")
|
||||
assert child.tag == "place"
|
||||
self.result.append(dict(child.attrib))
|
||||
|
||||
address = {}
|
||||
@@ -186,7 +186,7 @@ class ReverseResponse(GenericResponse):
|
||||
|
||||
for child in et:
|
||||
if child.tag == 'result':
|
||||
eq_(0, len(self.result), "More than one result in reverse result")
|
||||
assert len(self.result) == 0, "More than one result in reverse result"
|
||||
self.result.append(dict(child.attrib))
|
||||
elif child.tag == 'addressparts':
|
||||
address = {}
|
||||
@@ -281,7 +281,7 @@ def query_cmd(context, query, dups):
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
(outp, err) = proc.communicate()
|
||||
|
||||
assert_equals (0, proc.returncode, "query.php failed with message: %s\noutput: %s" % (err, outp))
|
||||
assert proc.returncode == 0, "query.php failed with message: %s\noutput: %s" % (err, outp)
|
||||
logger.debug("run_nominatim_script: %s\n%s\n" % (cmd, outp.decode('utf-8').replace('\\n', '\n')))
|
||||
|
||||
context.response = SearchResponse(outp.decode('utf-8'), 'json')
|
||||
@@ -337,12 +337,11 @@ def send_api_query(endpoint, params, fmt, context):
|
||||
logger.debug("Result: \n===============================\n"
|
||||
+ outp + "\n===============================\n")
|
||||
|
||||
assert_equals(0, proc.returncode,
|
||||
assert proc.returncode == 0, \
|
||||
"%s failed with message: %s" % (
|
||||
os.path.basename(env['SCRIPT_FILENAME']),
|
||||
err))
|
||||
os.path.basename(env['SCRIPT_FILENAME']), err)
|
||||
|
||||
assert_equals(0, len(err), "Unexpected PHP error: %s" % (err))
|
||||
assert len(err) == 0, "Unexpected PHP error: %s" % (err)
|
||||
|
||||
if outp.startswith('Status: '):
|
||||
status = int(outp[8:11])
|
||||
@@ -448,49 +447,49 @@ def website_status_request(context, fmt):
|
||||
|
||||
@step(u'(?P<operator>less than|more than|exactly|at least|at most) (?P<number>\d+) results? (?:is|are) returned')
|
||||
def validate_result_number(context, operator, number):
|
||||
eq_(context.response.errorcode, 200)
|
||||
assert context.response.errorcode == 200
|
||||
numres = len(context.response.result)
|
||||
ok_(compare(operator, numres, int(number)),
|
||||
"Bad number of results: expected %s %s, got %d." % (operator, number, numres))
|
||||
assert compare(operator, numres, int(number)), \
|
||||
"Bad number of results: expected %s %s, got %d." % (operator, number, numres)
|
||||
|
||||
@then(u'a HTTP (?P<status>\d+) is returned')
|
||||
def check_http_return_status(context, status):
|
||||
eq_(context.response.errorcode, int(status))
|
||||
assert context.response.errorcode == int(status)
|
||||
|
||||
@then(u'the page contents equals "(?P<text>.+)"')
|
||||
def check_page_content_equals(context, text):
|
||||
eq_(context.response.page, text)
|
||||
assert context.response.page == text
|
||||
|
||||
@then(u'the result is valid (?P<fmt>\w+)')
|
||||
def step_impl(context, fmt):
|
||||
context.execute_steps("Then a HTTP 200 is returned")
|
||||
eq_(context.response.format, fmt)
|
||||
assert context.response.format == fmt
|
||||
|
||||
@then(u'a (?P<fmt>\w+) user error is returned')
|
||||
def check_page_error(context, fmt):
|
||||
context.execute_steps("Then a HTTP 400 is returned")
|
||||
eq_(context.response.format, fmt)
|
||||
assert context.response.format == fmt
|
||||
|
||||
if fmt == 'xml':
|
||||
assert_is_not_none(re.search(r'<error>.+</error>', context.response.page, re.DOTALL))
|
||||
assert re.search(r'<error>.+</error>', context.response.page, re.DOTALL) is not None
|
||||
else:
|
||||
assert_is_not_none(re.search(r'({"error":)', context.response.page, re.DOTALL))
|
||||
assert re.search(r'({"error":)', context.response.page, re.DOTALL) is not None
|
||||
|
||||
@then(u'result header contains')
|
||||
def check_header_attr(context):
|
||||
for line in context.table:
|
||||
assert_is_not_none(re.fullmatch(line['value'], context.response.header[line['attr']]),
|
||||
"attribute '%s': expected: '%s', got '%s'"
|
||||
% (line['attr'], line['value'],
|
||||
context.response.header[line['attr']]))
|
||||
assert re.fullmatch(line['value'], context.response.header[line['attr']]) is not None, \
|
||||
"attribute '%s': expected: '%s', got '%s'" % (
|
||||
line['attr'], line['value'],
|
||||
context.response.header[line['attr']])
|
||||
|
||||
@then(u'result header has (?P<neg>not )?attributes (?P<attrs>.*)')
|
||||
def check_header_no_attr(context, neg, attrs):
|
||||
for attr in attrs.split(','):
|
||||
if neg:
|
||||
assert_not_in(attr, context.response.header)
|
||||
assert attr not in context.response.header
|
||||
else:
|
||||
assert_in(attr, context.response.header)
|
||||
assert attr in context.response.header
|
||||
|
||||
@then(u'results contain')
|
||||
def step_impl(context):
|
||||
@@ -511,9 +510,9 @@ def validate_attributes(context, lid, neg, attrs):
|
||||
for i in idx:
|
||||
for attr in attrs.split(','):
|
||||
if neg:
|
||||
assert_not_in(attr, context.response.result[i])
|
||||
assert attr not in context.response.result[i]
|
||||
else:
|
||||
assert_in(attr, context.response.result[i])
|
||||
assert attr in context.response.result[i]
|
||||
|
||||
@then(u'result addresses contain')
|
||||
def step_impl(context):
|
||||
@@ -529,8 +528,8 @@ def step_impl(context):
|
||||
for h in context.table.headings:
|
||||
if h != 'ID':
|
||||
for p in addr_parts:
|
||||
assert_in(h, p)
|
||||
assert_equal(p[h], line[h], "Bad address value for %s" % h)
|
||||
assert h in p
|
||||
assert p[h] == line[h], "Bad address value for %s" % h
|
||||
|
||||
@then(u'address of result (?P<lid>\d+) has(?P<neg> no)? types (?P<attrs>.*)')
|
||||
def check_address(context, lid, neg, attrs):
|
||||
@@ -540,9 +539,9 @@ def check_address(context, lid, neg, attrs):
|
||||
|
||||
for attr in attrs.split(','):
|
||||
if neg:
|
||||
assert_not_in(attr, addr_parts)
|
||||
assert attr not in addr_parts
|
||||
else:
|
||||
assert_in(attr, addr_parts)
|
||||
assert attr in addr_parts
|
||||
|
||||
@then(u'address of result (?P<lid>\d+) (?P<complete>is|contains)')
|
||||
def check_address(context, lid, complete):
|
||||
@@ -551,13 +550,13 @@ def check_address(context, lid, complete):
|
||||
addr_parts = dict(context.response.result[int(lid)]['address'])
|
||||
|
||||
for line in context.table:
|
||||
assert_in(line['type'], addr_parts)
|
||||
assert_equal(addr_parts[line['type']], line['value'],
|
||||
"Bad address value for %s" % line['type'])
|
||||
assert line['type'] in addr_parts
|
||||
assert addr_parts[line['type']] == line['value'], \
|
||||
"Bad address value for %s" % line['type']
|
||||
del addr_parts[line['type']]
|
||||
|
||||
if complete == 'is':
|
||||
eq_(0, len(addr_parts), "Additional address parts found: %s" % str(addr_parts))
|
||||
assert len(addr_parts) == 0, "Additional address parts found: %s" % str(addr_parts)
|
||||
|
||||
@then(u'result (?P<lid>\d+ )?has bounding box in (?P<coords>[\d,.-]+)')
|
||||
def step_impl(context, lid, coords):
|
||||
@@ -575,10 +574,10 @@ def step_impl(context, lid, coords):
|
||||
bbox = bbox.split(',')
|
||||
bbox = [ float(x) for x in bbox ]
|
||||
|
||||
assert_greater_equal(bbox[0], coord[0])
|
||||
assert_less_equal(bbox[1], coord[1])
|
||||
assert_greater_equal(bbox[2], coord[2])
|
||||
assert_less_equal(bbox[3], coord[3])
|
||||
assert bbox[0] >= coord[0]
|
||||
assert bbox[1] <= coord[1]
|
||||
assert bbox[2] >= coord[2]
|
||||
assert bbox[3] <= coord[3]
|
||||
|
||||
@then(u'result (?P<lid>\d+ )?has centroid in (?P<coords>[\d,.-]+)')
|
||||
def step_impl(context, lid, coords):
|
||||
@@ -596,10 +595,10 @@ def step_impl(context, lid, coords):
|
||||
for lat, lon in bboxes:
|
||||
lat = float(lat)
|
||||
lon = float(lon)
|
||||
assert_greater_equal(lat, coord[0])
|
||||
assert_less_equal(lat, coord[1])
|
||||
assert_greater_equal(lon, coord[2])
|
||||
assert_less_equal(lon, coord[3])
|
||||
assert lat >= coord[0]
|
||||
assert lat <= coord[1]
|
||||
assert lon >= coord[2]
|
||||
assert lon <= coord[3]
|
||||
|
||||
@then(u'there are(?P<neg> no)? duplicates')
|
||||
def check_for_duplicates(context, neg):
|
||||
|
||||
Reference in New Issue
Block a user