2015-12-06 21:53:54 +08:00
|
|
|
from unittest import TestCase
|
|
|
|
from nose.tools import assert_raises
|
2018-09-13 22:01:53 +08:00
|
|
|
from nose.tools import assert_not_equal, assert_true
|
2015-12-06 21:53:54 +08:00
|
|
|
from ..helpers.integration_test_helper import IntegrationTestHelper
|
|
|
|
|
|
|
|
|
|
|
|
class TestAdmin1Functions(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.env_variables = IntegrationTestHelper.get_environment_variables()
|
2016-11-07 17:33:15 +08:00
|
|
|
self.sql_api_url = "{0}://{1}.{2}/api/v1/sql".format(
|
|
|
|
self.env_variables['schema'],
|
2015-12-06 21:53:54 +08:00
|
|
|
self.env_variables['username'],
|
|
|
|
self.env_variables['host'],
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_if_select_with_admin1_without_country_is_ok(self):
|
|
|
|
query = "SELECT cdb_geocode_admin1_polygon(province) as geometry " \
|
|
|
|
"FROM {0} LIMIT 1&api_key={1}".format(
|
2018-09-13 22:01:53 +08:00
|
|
|
self.env_variables['table_name'],
|
|
|
|
self.env_variables['api_key'])
|
2015-12-06 21:53:54 +08:00
|
|
|
geometry = IntegrationTestHelper.execute_query(self.sql_api_url, query)
|
2016-02-24 16:54:00 +08:00
|
|
|
assert_not_equal(geometry['geometry'], None)
|
2015-12-06 21:53:54 +08:00
|
|
|
|
|
|
|
def test_if_select_with_admin1_with_country_is_ok(self):
|
|
|
|
query = "SELECT cdb_geocode_admin1_polygon(province,country)" \
|
|
|
|
"as geometry FROM {0} LIMIT 1&api_key={1}".format(
|
2018-09-13 22:01:53 +08:00
|
|
|
self.env_variables['table_name'],
|
|
|
|
self.env_variables['api_key'])
|
2015-12-06 21:53:54 +08:00
|
|
|
geometry = IntegrationTestHelper.execute_query(self.sql_api_url, query)
|
2016-02-24 16:54:00 +08:00
|
|
|
assert_not_equal(geometry['geometry'], None)
|
2015-12-06 21:53:54 +08:00
|
|
|
|
|
|
|
def test_if_select_with_admin1_without_api_key_raise_error(self):
|
|
|
|
query = "SELECT cdb_geocode_admin1_polygon(province) as geometry " \
|
|
|
|
"FROM {0} LIMIT 1".format(
|
2018-09-13 22:01:53 +08:00
|
|
|
self.env_variables['table_name'])
|
2015-12-06 21:53:54 +08:00
|
|
|
try:
|
|
|
|
IntegrationTestHelper.execute_query(self.sql_api_url, query)
|
|
|
|
except Exception as e:
|
2018-09-13 22:01:53 +08:00
|
|
|
assert_true(e.message[0] in ["Geocoding permission denied", "function cdb_geocode_admin1_polygon(text) does not exist"])
|