dataservices-api/client/test/expected/20_admin1_test.out

64 lines
2.4 KiB
Plaintext
Raw Normal View History

\set VERBOSITY terse
2016-02-09 17:50:45 +08:00
-- Add to the search path the schema
SET search_path TO public,cartodb,cdb_dataservices_client;
-- Mock the server functions
2018-09-10 18:54:37 +08:00
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_geocode_admin1_polygon(username text, orgname text, admin1_name text)
2016-02-09 17:50:45 +08:00
RETURNS Geometry AS $$
BEGIN
2018-09-10 18:54:37 +08:00
RAISE NOTICE 'cdb_dataservices_server.cdb_geocode_admin1_polygon invoked with params (%, %, %)', username, orgname, admin1_name;
2016-02-09 17:50:45 +08:00
RETURN NULL;
END;
$$ LANGUAGE 'plpgsql';
2018-09-10 18:54:37 +08:00
CREATE OR REPLACE FUNCTION cdb_dataservices_server.cdb_geocode_admin1_polygon(username text, orgname text, admin1_name text, country_name text)
2016-02-09 17:50:45 +08:00
RETURNS Geometry AS $$
BEGIN
2018-09-10 18:54:37 +08:00
RAISE NOTICE 'cdb_dataservices_server.cdb_geocode_admin1_polygon invoked with params (%, %, %, %)', username, orgname, admin1_name, country_name;
2016-02-09 17:50:45 +08:00
RETURN NULL;
END;
$$ LANGUAGE 'plpgsql';
2018-09-06 22:40:05 +08:00
-- -- Exercise the public and the proxied function
-- No permissions granted
2016-02-09 17:50:45 +08:00
SELECT cdb_geocode_admin1_polygon('California');
2018-09-06 22:40:05 +08:00
ERROR: Geocoding is not allowed
SELECT cdb_geocode_admin1_polygon('California', 'United States');
ERROR: Geocoding is not allowed
-- Grant other permissions but geocoding
2018-09-10 19:40:15 +08:00
SELECT CDB_Conf_SetConf('api_keys_postgres', '{"permissions": ["routing", "isolines"]}');
2018-09-06 22:40:05 +08:00
cdb_conf_setconf
------------------
(1 row)
SELECT cdb_geocode_admin1_polygon('California');
ERROR: Geocoding is not allowed
SELECT cdb_geocode_admin1_polygon('California', 'United States');
ERROR: Geocoding is not allowed
-- Grant geocoding permissions
2018-09-10 19:40:15 +08:00
SELECT CDB_Conf_SetConf('api_keys_postgres', '{"permissions": ["geocoding"]}');
2018-09-06 22:40:05 +08:00
cdb_conf_setconf
------------------
(1 row)
SELECT cdb_geocode_admin1_polygon('California');
2018-09-10 19:40:15 +08:00
NOTICE: cdb_dataservices_client._cdb_geocode_admin1_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_dataservices_server.cdb_geocode_admin1_polygon invoked with params (test_user, <NULL>, California)
2016-02-09 17:50:45 +08:00
cdb_geocode_admin1_polygon
----------------------------
(1 row)
SELECT cdb_geocode_admin1_polygon('California', 'United States');
2018-09-10 19:40:15 +08:00
NOTICE: cdb_dataservices_client._cdb_geocode_admin1_polygon(4): [contrib_regression] REMOTE NOTICE: cdb_dataservices_server.cdb_geocode_admin1_polygon invoked with params (test_user, <NULL>, California, United States)
2016-02-09 17:50:45 +08:00
cdb_geocode_admin1_polygon
----------------------------
(1 row)
2018-09-06 22:40:05 +08:00
-- Remove permissions
SELECT CDB_Conf_RemoveConf('api_keys_postgres');
cdb_conf_removeconf
---------------------
(1 row)