Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_urlencode(self):
# See GH #72.
encoded_params = _client.urlencode_params([("address", "=Sydney ~")])
self.assertEqual("address=%3DSydney+~", encoded_params)
def test_urlencode(self):
# See GH #72.
encoded_params = _client.urlencode_params([("address", "=Sydney ~")])
self.assertEqual("address=%3DSydney+~", encoded_params)
async def test_url_signed(aresponses, enterprise_client, credentials):
address = 'Test St.'
params = {
'address': address,
'client': credentials['client_id']
}
path = '?'.join(['/maps/api/geocode/json',
urlencode_params(params.items())])
expected_signature = sign_hmac(credentials['client_secret'], path)
aresponses.add(
'maps.googleapis.com',
path + '&signature={}'.format(expected_signature),
'get',
aresponses.Response(
body='{"status": "OK", "results": ["foo"]}',
status=web.HTTPOk.status_code,
content_type='application/json',
),
match_querystring=True,
)
resp = await enterprise_client.geocode(address)
assert resp == ['foo']