2016-05-13 04:36:05 +08:00
|
|
|
from nose.tools import assert_equal, assert_is_not_none
|
2016-05-13 02:21:31 +08:00
|
|
|
from nose_parameterized import parameterized
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import requests
|
|
|
|
|
|
|
|
HOSTNAME = os.environ['OBS_HOSTNAME']
|
|
|
|
API_KEY = os.environ['OBS_API_KEY']
|
|
|
|
|
|
|
|
def query(q, **options):
|
|
|
|
'''
|
|
|
|
Query the account. Returned is the response, wrapped by the requests
|
|
|
|
library.
|
|
|
|
'''
|
|
|
|
url = 'https://{hostname}/api/v2/sql'.format(hostname=HOSTNAME)
|
|
|
|
params = options.copy()
|
|
|
|
params['q'] = re.sub(r'\s+', ' ', q)
|
|
|
|
params['api_key'] = API_KEY
|
|
|
|
return requests.get(url, params=params)
|
|
|
|
|
|
|
|
MEASURE_COLUMNS = [(r['id'], ) for r in query('''
|
|
|
|
SELECT id FROM observatory.obs_column
|
|
|
|
WHERE type ILIKE 'numeric'
|
|
|
|
AND weight > 0
|
|
|
|
''').json()['rows']]
|
|
|
|
|
|
|
|
CATEGORY_COLUMNS = [(r['id'], ) for r in query('''
|
|
|
|
SELECT id FROM observatory.obs_column
|
|
|
|
WHERE type ILIKE 'text'
|
|
|
|
AND weight > 0
|
|
|
|
''').json()['rows']]
|
|
|
|
|
|
|
|
BOUNDARY_COLUMNS = [(r['id'], ) for r in query('''
|
|
|
|
SELECT id FROM observatory.obs_column
|
|
|
|
WHERE type ILIKE 'geometry'
|
|
|
|
AND weight > 0
|
|
|
|
''').json()['rows']]
|
|
|
|
|
2016-05-13 04:23:00 +08:00
|
|
|
def default_point(column_id):
|
|
|
|
'''
|
|
|
|
Returns default test point for the column_id.
|
|
|
|
'''
|
2016-05-16 23:28:27 +08:00
|
|
|
if column_id == 'whosonfirst.wof_disputed_geom':
|
|
|
|
return 'CDB_LatLng(33.78, 76.57)'
|
|
|
|
elif column_id == 'whosonfirst.wof_marinearea_geom':
|
|
|
|
return 'CDB_LatLng(43.33, -68.47)'
|
|
|
|
elif column_id in ('us.census.tiger.school_district_elementary',
|
|
|
|
'us.census.tiger.school_district_secondary'):
|
|
|
|
return 'CDB_LatLng(40.7025, -73.7067)'
|
|
|
|
elif column_id.startswith('es.ine'):
|
2016-05-13 04:23:00 +08:00
|
|
|
return 'CDB_LatLng(40.39, -3.7)'
|
|
|
|
elif column_id.startswith('us.zillow'):
|
2016-05-16 23:28:27 +08:00
|
|
|
return 'CDB_LatLng(28.3305906291771, -81.3544048197256)'
|
2016-05-13 04:23:00 +08:00
|
|
|
else:
|
|
|
|
return 'CDB_LatLng(40.7, -73.9)'
|
|
|
|
|
2016-05-13 02:21:31 +08:00
|
|
|
|
|
|
|
@parameterized(MEASURE_COLUMNS)
|
|
|
|
def test_measure_points(column_id):
|
|
|
|
resp = query('''
|
2016-05-13 04:23:00 +08:00
|
|
|
SELECT * FROM cdb_observatory.OBS_GetMeasure({point}, '{column_id}')
|
|
|
|
'''.format(column_id=column_id, point=default_point(column_id)))
|
2016-05-13 02:21:31 +08:00
|
|
|
assert_equal(resp.status_code, 200)
|
2016-05-13 04:36:05 +08:00
|
|
|
rows = resp.json()['rows']
|
|
|
|
assert_equal(1, len(rows))
|
|
|
|
assert_is_not_none(rows[0].values()[0])
|
2016-05-13 02:21:31 +08:00
|
|
|
|
|
|
|
@parameterized(CATEGORY_COLUMNS)
|
|
|
|
def test_category_points(column_id):
|
|
|
|
resp = query('''
|
2016-05-13 04:23:00 +08:00
|
|
|
SELECT * FROM cdb_observatory.OBS_GetCategory({point}, '{column_id}')
|
|
|
|
'''.format(column_id=column_id, point=default_point(column_id)))
|
2016-05-13 02:21:31 +08:00
|
|
|
assert_equal(resp.status_code, 200)
|
2016-05-13 04:36:05 +08:00
|
|
|
rows = resp.json()['rows']
|
|
|
|
assert_equal(1, len(rows))
|
|
|
|
assert_is_not_none(rows[0].values()[0])
|
2016-05-13 02:21:31 +08:00
|
|
|
|
|
|
|
@parameterized(BOUNDARY_COLUMNS)
|
|
|
|
def test_boundary_points(column_id):
|
|
|
|
resp = query('''
|
2016-05-13 04:23:00 +08:00
|
|
|
SELECT * FROM cdb_observatory.OBS_GetBoundary({point}, '{column_id}')
|
|
|
|
'''.format(column_id=column_id, point=default_point(column_id)))
|
2016-05-13 02:21:31 +08:00
|
|
|
assert_equal(resp.status_code, 200)
|
2016-05-13 04:36:05 +08:00
|
|
|
rows = resp.json()['rows']
|
|
|
|
assert_equal(1, len(rows))
|
|
|
|
assert_is_not_none(rows[0].values()[0])
|