fix tests

This commit is contained in:
John Krauss 2016-04-28 13:28:38 -04:00
parent d5e67b9fe1
commit cdf70ea545

View File

@ -32,7 +32,7 @@ Done.
-- should give back a table like obs_{hex hash} -- should give back a table like obs_{hex hash}
SELECT SELECT
cdb_observatory._OBS_GeomTable( cdb_observatory._OBS_GeomTable(
CDB_LatLng(40.7128,-74.0059), ST_SetSRID(ST_Point(-74.0059, 40.7128), 4326),
'"us.census.tiger".census_tract' '"us.census.tiger".census_tract'
); );
_obs_geomtable _obs_geomtable
@ -44,7 +44,7 @@ SELECT
-- should give back null -- should give back null
SELECT SELECT
cdb_observatory._OBS_GeomTable( cdb_observatory._OBS_GeomTable(
CDB_LatLng(40.7128,-74.0059), ST_SetSRID(ST_Point(-74.0059, 40.7128), 4326),
'"us.census.tiger".nonexistant_id' -- not in catalog '"us.census.tiger".nonexistant_id' -- not in catalog
); );
_obs_geomtable _obs_geomtable
@ -55,7 +55,7 @@ SELECT
-- future test: give back nulls when geometry doesn't intersect -- future test: give back nulls when geometry doesn't intersect
-- SELECT -- SELECT
-- cdb_observatory._OBS_GeomTable( -- cdb_observatory._OBS_GeomTable(
-- CDB_LatLng(0,0), -- should give back null since it's in the ocean? -- ST_SetSRID(ST_Point(0,0)), -- should give back null since it's in the ocean?
-- '"us.census.tiger".census_tract' -- '"us.census.tiger".census_tract'
-- ); -- );
-- OBS_GetColumnData -- OBS_GetColumnData
@ -69,7 +69,7 @@ SELECT
array_agg(a) expected from cdb_observatory._OBS_GetColumnData( array_agg(a) expected from cdb_observatory._OBS_GetColumnData(
'"us.census.tiger".census_tract', '"us.census.tiger".census_tract',
Array['"us.census.tiger".census_tract_geoid', '"us.census.acs".B01001001'], Array['"us.census.tiger".census_tract_geoid', '"us.census.acs".B01001001'],
'2009 - 2013') a '2009 - 2013') a
) )
select (expected)[1]::text = '{"colname":"geoid","tablename":"obs_d34555209878e8c4b37cf0b2b3d072ff129ec470","aggregate":null,"name":"US Census Tract Geoids","type":"Text","description":""}' as test_get_obs_column_with_geoid_and_census_1, select (expected)[1]::text = '{"colname":"geoid","tablename":"obs_d34555209878e8c4b37cf0b2b3d072ff129ec470","aggregate":null,"name":"US Census Tract Geoids","type":"Text","description":""}' as test_get_obs_column_with_geoid_and_census_1,
(expected)[2]::text = '{"colname":"geoid","tablename":"obs_ab038198aaab3f3cb055758638ee4de28ad70146","aggregate":null,"name":"US Census Tract Geoids","type":"Text","description":""}' as test_get_obs_column_with_geoid_and_census_2 (expected)[2]::text = '{"colname":"geoid","tablename":"obs_ab038198aaab3f3cb055758638ee4de28ad70146","aggregate":null,"name":"US Census Tract Geoids","type":"Text","description":""}' as test_get_obs_column_with_geoid_and_census_2
@ -85,7 +85,7 @@ SELECT
array_agg(a) expected from cdb_observatory._OBS_GetColumnData( array_agg(a) expected from cdb_observatory._OBS_GetColumnData(
'"us.census.tiger".census_tract', '"us.census.tiger".census_tract',
Array['"us.census.tiger".baloney'], Array['"us.census.tiger".baloney'],
'2009 - 2013') a '2009 - 2013') a
) )
select expected is null as OBS_GetColumnData_missing_measure select expected is null as OBS_GetColumnData_missing_measure
from result; from result;