When sending json search query "Schellingstr 86, Hamburg" with address
| accept-language |
| de |
- Then address of result 0 is
+ Then address of result 0 contains
| type | value |
| house_number | 86 |
| road | Schellingstraße |
- | suburb | Eilbek |
| postcode | 22089 |
| city | Hamburg |
| country | Deutschland |
When sending json search query "Schellingstr 73, Hamburg" with address
| accept-language |
| de |
- Then address of result 0 is
+ Then address of result 0 contains
| type | value |
| house_number | 73 |
| road | Schellingstraße |
- | suburb | Eilbek |
| postcode | 22089 |
| city | Hamburg |
| country | Deutschland |
else:
assert_in(attr, addr_parts)
-@then(u'address of result (?P<lid>\d+) is')
-def check_address(context, lid):
+@then(u'address of result (?P<lid>\d+) (?P<complete>is|contains)')
+def check_address(context, lid, complete):
context.execute_steps("then more than %s results are returned" % lid)
addr_parts = dict(context.response.result[int(lid)]['address'])
"Bad address value for %s" % line['type'])
del addr_parts[line['type']]
- eq_(0, len(addr_parts), "Additional address parts found: %s" % str(addr_parts))
+ if complete == 'is':
+ eq_(0, len(addr_parts), "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):