Fixed geocode street point integration tests
This commit is contained in:
parent
e4f327f890
commit
5309a6eae5
2
test/fixtures/geocoder_api_test_dataset.csv
vendored
2
test/fixtures/geocoder_api_test_dataset.csv
vendored
@ -1,3 +1,3 @@
|
|||||||
id,country,province,city,postalcode,ip,street
|
id,country,province,city,postalcode,ip,street
|
||||||
1,Spain,Castilla y León,Valladolid,47010,8.8.8.8,Calle Amor de Dios
|
1,Spain,Castilla y León,Valladolid,47010,8.8.8.8,Calle Amor de Dios
|
||||||
2,USA,New York,Manhattn,10001,8.8.8.8,NonExistentStreet
|
2,USA,New York,Manhattn,10001,8.8.8.8,135 W 30th St
|
||||||
|
|
@ -15,7 +15,7 @@ class TestStreetFunctions(TestCase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def test_if_select_with_street_point_is_ok(self):
|
def test_if_select_with_street_point_is_ok(self):
|
||||||
query = "SELECT cdb_geocode_street_point_v2_(street) " \
|
query = "SELECT cdb_geocode_street_point_v2(street) " \
|
||||||
"as geometry FROM {0} LIMIT 1&api_key={1}".format(
|
"as geometry FROM {0} LIMIT 1&api_key={1}".format(
|
||||||
self.env_variables['table_name'],
|
self.env_variables['table_name'],
|
||||||
self.env_variables['api_key'])
|
self.env_variables['api_key'])
|
||||||
@ -23,7 +23,7 @@ class TestStreetFunctions(TestCase):
|
|||||||
assert_not_equal(geometry, None)
|
assert_not_equal(geometry, None)
|
||||||
|
|
||||||
def test_if_select_with_street_without_api_key_raise_error(self):
|
def test_if_select_with_street_without_api_key_raise_error(self):
|
||||||
query = "SELECT cdb_geocode_street_point_v2_(street) " \
|
query = "SELECT cdb_geocode_street_point_v2(street) " \
|
||||||
"as geometry FROM {0} LIMIT 1".format(
|
"as geometry FROM {0} LIMIT 1".format(
|
||||||
self.env_variables['table_name'])
|
self.env_variables['table_name'])
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user